* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --dark-orange: #e85d2a;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --text-gray: #cccccc;
    
    /* Uudet modernit taustamuuttujat */
    --tausta1: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    --tausta2: 
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 0% 80%, rgba(232, 93, 42, 0.08) 0%, transparent 40%),
        linear-gradient(160deg, #000000 0%, #0d0d0d 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Liikkuvat partikkelit taustalla */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle, #ff6b35 1px, transparent 1px),
        radial-gradient(circle, #ff8c42 2px, transparent 2px),
        radial-gradient(circle, #ffaa66 1px, transparent 1px),
        radial-gradient(circle, #ff6b35 1.5px, transparent 1.5px),
        radial-gradient(circle, #ff8c42 1px, transparent 1px),
        radial-gradient(circle, #ffaa66 2px, transparent 2px);
    background-size: 
        200px 300px,
        300px 350px,
        250px 320px,
        280px 380px,
        220px 310px,
        260px 340px;
    background-position: 
        0 0,
        30% 0,
        60% 0,
        15% 0,
        45% 0,
        75% 0;
    background-repeat: repeat-y;
    filter: blur(0.8px);
    animation: 
        particleFlow 12s linear infinite, 
        particleGlow 3s ease-in-out infinite;
}

@keyframes particleFlow {
    0% {
        background-position: 
            0 0,
            30% 0,
            60% 0,
            15% 0,
            45% 0,
            75% 0;
    }
    100% {
        background-position: 
            0 -300px,
            30% -350px,
            60% -320px,
            15% -380px,
            45% -310px,
            75% -340px;
    }
}

@keyframes particleGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
}

/* Z-index fix sisällölle */
.navbar,
.hero,
.features,
.stats,
.pricing,
.projektit,
.contact-section,
.footer {
    position: relative;
    z-index: 2;
}

/* Oranssi viiva osioiden välissä */
.pricing::before,
.features::before,
.projektit::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 18px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 107, 53, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    opacity: 0.5;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.nav-menu a:hover::before {
    width: 120%;
    height: 120%;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button-nav {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: var(--primary-orange);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-link {
    display: block;
    padding: 20px 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: width 0.3s ease;
}

.mobile-menu-link:active,
.mobile-menu-link:hover {
    color: var(--primary-orange);
    padding-left: 25px;
}

.mobile-menu-link:active::before,
.mobile-menu-link:hover::before {
    width: 15px;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 968px) {
    .hamburger-menu {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Hero Background - Flat Black */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    background: #050505;
}

.hero-background::before {
    content: none;
}

.hero-background::after {
    content: none;
}

@keyframes meshRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes gradientShift {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease forwards 1s;
    opacity: 0;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero Visual - New Design */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: orbFloat 4s ease-in-out infinite, orbFadeInDesktop 1s ease forwards;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s, 0.8s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.5), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 1.3s, 1s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: 2.6s, 1.2s;
}

@keyframes orbFadeInDesktop {
    to {
        opacity: 0.6;
    }
}

/* Project Showcases */
.showcase-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.showcase-mobile {
    display: none;
}

.showcase-desktop {
    display: block;
}

.showcase-container {
    position: absolute;
    width: 320px;
    aspect-ratio: 16 / 9;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: showcaseSlideIn 0.8s ease forwards;
}

.showcase-container::-webkit-scrollbar {
    display: none;
}

.showcase-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.showcase-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-container:hover::before {
    opacity: 1;
}

.showcase-container:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.5);
    z-index: 10 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-desktop .showcase-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.showcase-desktop .showcase-container {
    backdrop-filter: none;
}

.showcase-desktop .showcase-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none;
}

.showcase-1 {
    top: 17%;
    left: 8%;
    transform: rotate(-6deg);
    animation-delay: 0.2s;
    z-index: 3;
}

.showcase-2 {
    top: 21%;
    left: 75%;
    transform: translate(-50%, -50%) rotate(1deg) scale(1.1);
    animation-delay: 0.4s;
    z-index: 5;
}

.showcase-3 {
    bottom: 15%;
    right: 10%;
    transform: rotate(5deg);
    animation-delay: 0.6s;
    z-index: 3;
}

@keyframes showcaseSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileFadeIn {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes showcaseFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* 3D Card Stack */
.card-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 450px;
    perspective: 1500px;
}

.stack-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

.stack-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.4);
}

.card-layer-1 {
    transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-layer-2 {
    transform: translateZ(-50px) rotateX(-5deg) rotateY(10deg);
    opacity: 0.8;
    z-index: 2;
    animation: cardFloat2 6s ease-in-out infinite;
}

.card-layer-3 {
    transform: translateZ(-100px) rotateX(-10deg) rotateY(15deg);
    opacity: 0.6;
    z-index: 1;
    animation: cardFloat3 6s ease-in-out infinite;
}

.card-stack:hover .card-layer-1 {
    transform: translateZ(50px) rotateX(5deg) rotateY(-5deg);
}

.card-stack:hover .card-layer-2 {
    transform: translateZ(0) rotateX(0deg) rotateY(5deg);
}

.card-stack:hover .card-layer-3 {
    transform: translateZ(-50px) rotateX(-5deg) rotateY(10deg);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stack-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    animation: iconBounce 3s ease-in-out infinite;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite, particleFadeIn 0.8s ease forwards;
}

.particle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s, 0.8s;
}

.particle-2 {
    top: 25%;
    right: 15%;
    animation-delay: 0.8s, 1s;
}

.particle-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1.6s, 1.2s;
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 2.4s, 1.4s;
}

.particle-5 {
    bottom: 30%;
    right: 35%;
    animation-delay: 3.2s, 1.6s;
}

@keyframes particleFadeIn {
    to {
        opacity: 1;
    }
}

/* Features Section */
/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.397);
}

.features .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 68px;
}

.section-title {
    font-size: 41px;
    font-weight: 800;
    margin-bottom: 17px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 40px;
    }
    
    /* Isompi väli pareittain */
    .feature-card:nth-child(2) {
        margin-bottom: 20px;
    }
    
    .feature-card:nth-child(4) {
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Stats Section */
.stats {
    padding: 68px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(213px, 1fr));
    gap: 34px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 9px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-gray);
}

/* Pricing Section */
.pricing {
    padding: 102px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 34px;
    margin-top: 51px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 26px;
    padding: 43px 34px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: scale(1.08);
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

/* Glow Effect */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

/* Top Bar Animation */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--primary-orange));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-card:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.pricing-card:hover::after {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: scale(1.15) translateY(-20px) rotateX(5deg);
    border-color: var(--primary-orange);
    box-shadow: 
        0 40px 80px rgba(255, 107, 53, 0.6),
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 0 40px rgba(255, 107, 53, 0.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.15));
}

.pricing-card:hover .pricing-button {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* Popular Card - SUPER KOROSTETTU */
.pricing-card.popular {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    border: 3px solid var(--primary-orange);
    transform: scale(1.08);
    box-shadow: 
        0 30px 60px rgba(255, 107, 53, 0.4),
        0 0 40px rgba(255, 107, 53, 0.2);
    position: relative;
    animation: popularPulse 3s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { 
        box-shadow: 
            0 30px 60px rgba(255, 107, 53, 0.4),
            0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% { 
        box-shadow: 
            0 35px 70px rgba(255, 107, 53, 0.5),
            0 0 60px rgba(255, 107, 53, 0.3);
    }
}

.pricing-card.popular:hover {
    transform: scale(1.2) translateY(-30px) rotateX(8deg);
    box-shadow: 
        0 50px 100px rgba(255, 107, 53, 0.8),
        0 0 80px rgba(255, 107, 53, 0.6),
        inset 0 0 60px rgba(255, 107, 53, 0.2);
    animation: none;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 26px;
}

.pricing-title {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 9px;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 12px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 34px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.popular .price-amount {
    font-size: 54px;
}

.price-period {
    color: var(--text-gray);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 34px;
    flex: 1;
}

.feature-item {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
    font-size: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 8px;
}

.feature-item.disabled {
    opacity: 0.4;
}

.feature-item.disabled .check-icon {
    color: var(--text-gray);
}

.pricing-card.popular .feature-item {
    font-size: 14px;
    font-weight: 500;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    text-align: center;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.popular-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    box-shadow: 0 9px 26px rgba(255, 107, 53, 0.4);
    font-size: 15px;
    padding: 17px;
}

.popular-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Projektit Section */
.projektit {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.projektit-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.projektit-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.projektit-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.projektit-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.3), transparent);
    bottom: -250px;
    right: -250px;
    animation-delay: 7s;
}

.projektit-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.3;
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1); 
        opacity: 0.4;
    }
    66% { 
        transform: translate(-50px, 50px) scale(0.9); 
        opacity: 0.25;
    }
}

.projektit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.projektit-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.projektit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.projektit-card:hover::before {
    opacity: 1;
}

.projektit-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 24px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.projektit-card:hover .projektit-card-glow {
    opacity: 0.4;
}

.projektit-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.projektit-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.projektit-card:hover .projektit-number {
    opacity: 0.8;
    transform: scale(1.1);
}

.projektit-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
}

.projektit-image-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), transparent 50%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.projektit-card:hover .projektit-image-border {
    opacity: 1;
}

.projektit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2) brightness(0.95);
}

.projektit-card:hover .projektit-image img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1.05);
}

.projektit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.92) 0%, 
        rgba(255, 140, 66, 0.88) 50%,
        rgba(232, 93, 42, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.projektit-card:hover .projektit-overlay {
    opacity: 1;
}

.projektit-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.projektit-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projektit-link:hover::before {
    opacity: 1;
}

.projektit-card:hover .projektit-link {
    transform: translateY(0) scale(1);
}

.projektit-link:hover {
    background: var(--white);
    transform: scale(1.05) !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(255, 107, 53, 0.2);
}

.link-text {
    position: relative;
    z-index: 1;
}

.link-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.projektit-link:hover .link-arrow {
    transform: translate(4px, -4px);
}

.projektit-content {
    padding: 32px;
    position: relative;
}

.projektit-header {
    margin-bottom: 16px;
}

.projektit-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.projektit-card:hover .projektit-title {
    background: linear-gradient(135deg, var(--white), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projektit-category {
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.projektit-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.projektit-card:hover .projektit-category::after {
    width: 100%;
}

.projektit-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s ease;
}

.projektit-card:hover .projektit-description {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1200px) {
    .projektit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .projektit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 60px;
    }
    
    .projektit-card {
        border-radius: 20px;
    }
    
    .projektit-number {
        font-size: 60px;
        top: 16px;
        right: 16px;
    }
    
    .projektit-content {
        padding: 24px;
    }
    
    .projektit-title {
        font-size: 24px;
    }
}

/* CTA Section */
/* Contact Section - Completely Redesigned */
.contact-section {
    padding: 120px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.397);
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

/* Modern Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.input-group {
    position: relative;
}

.modern-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.modern-textarea {
    min-height: 140px;
    resize: vertical;
}

.modern-label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

.modern-input:focus,
.modern-input:not(:placeholder-shown) {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.05);
}

.modern-input:focus ~ .modern-label,
.modern-input:not(:placeholder-shown) ~ .modern-label {
    top: -10px;
    left: 16px;
    font-size: 13px;
    color: var(--primary-orange);
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.95) 50%);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-input:focus ~ .input-border {
    width: 100%;
}

.submit-btn {
    margin-top: 8px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-methods-header {
    margin-bottom: 12px;
}

.methods-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.methods-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: inherit;
}

.method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.method-item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 140, 66, 0.25));
}

.whatsapp-method {
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-method:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.whatsapp-method::before {
    background: linear-gradient(180deg, #25D366, #20BA5A);
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(32, 186, 90, 0.15));
    color: #25D366;
}

.whatsapp-method:hover .whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(32, 186, 90, 0.25));
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.method-value {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 600;
}

.whatsapp-number {
    color: #25D366 !important;
}

.copy-icon {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.email-method .copy-icon {
    color: rgba(255, 255, 255, 0.4);
}

.email-method:hover .copy-icon {
    color: var(--primary-orange);
    opacity: 1;
    transform: translateX(0);
}

.copy-notification {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.copy-notification.show {
    opacity: 1;
}

.facebook-method {
    border-color: rgba(24, 119, 242, 0.2);
}

.facebook-method:hover {
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.facebook-method::before {
    background: linear-gradient(180deg, #1877F2, #0C63D4);
}

.facebook-icon {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(12, 99, 212, 0.15));
    color: #1877F2;
}

.facebook-method:hover .facebook-icon {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.25), rgba(12, 99, 212, 0.25));
}

.facebook-name {
    color: var(--text-primary) !important;
}

.facebook-method:hover .method-chevron {
    color: #1877F2;
}

.method-chevron {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.method-item:hover .method-chevron {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.whatsapp-method:hover .method-chevron {
    color: #25D366;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        margin-top: 40px;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
        border-radius: 24px;
    }
    
    .modern-contact-form {
        gap: 28px;
    }
    
    .modern-input {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .modern-label {
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .methods-title {
        font-size: 20px;
    }
    
    .method-item {
        padding: 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-value {
        font-size: 15px;
    }
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Footer */
.footer {
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.footer-nav,
.footer-links,
.footer-contact {
    list-style: none;
}

.footer-nav li,
.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
}

.footer-nav-link,
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px;
    font-size: 15px;
}

.footer-nav-link::before,
.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-nav-link:hover,
.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 25px;
}

.footer-nav-link:hover::before,
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--primary-orange);
    transition: stroke 0.3s ease;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 13px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal .separator {
    color: rgba(255, 107, 53, 0.3);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        padding-right: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes cardFloat1 {
    0%, 100% {
        transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateZ(20px) rotateX(5deg) rotateY(-5deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translateZ(-50px) rotateX(-5deg) rotateY(10deg);
    }
    50% {
        transform: translateZ(-30px) rotateX(-3deg) rotateY(8deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translateZ(-100px) rotateX(-10deg) rotateY(15deg);
    }
    50% {
        transform: translateZ(-80px) rotateX(-8deg) rotateY(12deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.5);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .cta-button-nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .hero-visual {
        display: block;
        height: 380px;
        margin-top: 8px;
    }
    
    .visual-container {
        height: 100%;
    }
    
    /* Hide particles on mobile */
    .particle {
        display: none;
    }
    
    /* Mobile gradient orbs - left side, appear after showcases */
    .gradient-orb {
        opacity: 0;
        animation: orbFadeIn 1s ease forwards;
        animation-delay: 3s;
    }
    
    .orb-1 {
        left: 5%;
        right: auto;
    }
    
    .orb-2 {
        left: 25%;
        right: auto;
    }
    
    .orb-3 {
        left: 15%;
        right: auto;
    }
    
    @keyframes orbFadeIn {
        to {
            opacity: 0.6;
        }
    }
    
    /* Show mobile showcases, hide desktop */
    .showcase-desktop {
        display: none !important;
    }
    
    .showcase-mobile {
        display: flex !important;
    }
    
    /* Mobile showcase layout - Abstract overlapping stack */
    .showcase-mobile.showcase-grid {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .showcase-mobile .showcase-container {
        position: absolute;
        width: 150px;
        height: 150px;
        aspect-ratio: 1 / 1;
        margin: 0;
        border-radius: 12px;
        opacity: 0;
        animation: mobileFadeIn 0.8s ease-out forwards;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .showcase-mobile .showcase-1 {
        top: 22%;
        left: 65%;
        transform: translate(-50%, 0) rotate(14deg);
        z-index: 2;
        animation-delay: 1.5s;
    }
    
    .showcase-mobile .showcase-2 {
        top: 52%;
        left: 30%;
        transform: translate(-50%, -50%) rotate(-10deg);
        z-index: 3;
        animation-delay: 2s;
    }
    
    .showcase-mobile .showcase-3 {
        top: 78%;
        left: 72%;
        transform: translate(-50%, 0) rotate(8deg);
        z-index: 1;
        animation-delay: 2.5s;
    }
    
    /* Mobile: screenshots only (no iframe rules needed) */
    .showcase-mobile .showcase-container a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

    .showcase-mobile .showcase-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        pointer-events: none;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .showcase-mobile .showcase-container {
        width: 150px;
        height: 150px;
    }
    
    .showcase-mobile .showcase-1 {
        top: 2%;
        left: 68%;
        transform: translate(-50%, 0) rotate(16deg);
    }
    
    .showcase-mobile .showcase-2 {
        top: 30%;
        left: 28%;
        transform: translate(-50%, -50%) rotate(-12deg);
    }
    
    .showcase-mobile .showcase-3 {
        top: 60%;
        left: 45%;
        transform: translate(-50%, 0) rotate(5deg);
    }
    
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary.large, .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}
