:root {
            --color-primary: #2dd4a8;
            --color-primary-dark: #1fb891;
            --color-dark: #1a1a2e;
            --color-text: #333333;
            --color-text-light: #666666;
            --color-bg: #ffffff;
            --color-bg-light: #f8f9fa;
            --color-gradient-start: #e8f5e9;
            --color-gradient-end: #b2dfdb;
            --color-footer-bg: #1a1a2e;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', -apple-system, sans-serif;
            --max-width: 1200px;
            --transition: all 0.3s ease;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background: var(--color-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            background: var(--color-dark);
            padding: 0 40px;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
            display: flex;
            align-items: center;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .nav-logo {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.3px;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .nav-social {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .nav-social a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: var(--transition);
        }

        .nav-social a:hover {
            color: var(--color-primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: #fff;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 80px 0 60px;
            background: var(--color-bg);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-heading {
            font-family: var(--font-heading);
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 700;
            line-height: 1.05;
            color: var(--color-primary);
            font-style: italic;
        }

        .hero-heading .highlight {
            color: var(--color-primary);
        }

        .hero-right h2 {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 16px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-right p {
            color: var(--color-text-light);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat h3 {
            font-size: 36px;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1;
        }

        .hero-stat span {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-text-light);
            font-weight: 600;
        }

        /* ===== CLIENTS BAR ===== */
        .clients-bar {
            padding: 50px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .clients-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .clients-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .clients-avatars {
            display: flex;
        }

        .clients-avatars img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid #fff;
            margin-left: -12px;
            object-fit: cover;
        }

        .clients-avatars img:first-child {
            margin-left: 0;
        }

        .clients-info p {
            font-size: 14px;
            color: var(--color-text-light);
            max-width: 160px;
            line-height: 1.4;
        }

        .client-logos {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .client-logo {
            font-size: 18px;
            font-weight: 600;
            color: #999;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .client-logo.smashing {
            font-weight: 700;
            font-size: 16px;
        }

        .clients-nav {
            display: flex;
            gap: 8px;
        }

        .clients-nav button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            font-size: 16px;
            color: #666;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .clients-nav button:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        /* ===== VIDEO SECTION ===== */
        .video-section {
            padding: 60px 0;
        }

        .video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16/7;
        }

        .video-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .video-wrapper:hover .video-overlay {
            background: rgba(0, 0, 0, 0.3);
        }

        .play-btn {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--color-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .play-btn svg {
            width: 24px;
            height: 24px;
            fill: #fff;
            margin-left: 4px;
        }

        .play-btn:hover {
            background: var(--color-primary);
            transform: scale(1.1);
        }

        /* ===== SERVICES ===== */
        .services {
            padding: 80px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 700;
            color: var(--color-dark);
            text-align: center;
            margin-bottom: 50px;
            font-style: italic;
            line-height: 1.3;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
        }

        .service-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            color: var(--color-primary);
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
        }

        .service-card h3 {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
            color: var(--color-dark);
        }

        .service-card p {
            font-size: 14px;
            color: var(--color-text-light);
            line-height: 1.7;
        }

        /* ===== PORTFOLIO ===== */
        .portfolio {
            padding: 80px 0;
        }

        .portfolio-header {
            display: flex;
            align-items: baseline;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .portfolio-header h2 {
            font-family: var(--font-body);
            font-size: clamp(24px, 3vw, 40px);
            font-weight: 300;
            color: var(--color-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .portfolio-header .brand {
            font-family: var(--font-heading);
            font-size: clamp(28px, 3.5vw, 48px);
            font-weight: 700;
            font-style: italic;
            color: var(--color-primary);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .portfolio-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            position: relative;
            cursor: pointer;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-item .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-item:hover .overlay {
            background: rgba(0, 0, 0, 0.2);
        }

        /* ===== CTA ===== */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 30%, #80cbc4 50%, #c8e6c9 70%, #f5f0e8 100%);
            text-align: center;
        }

        .cta h2 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 700;
            font-style: italic;
            color: var(--color-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta p {
            font-size: 15px;
            color: var(--color-text-light);
            max-width: 500px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 36px;
            border: 2px solid var(--color-dark);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-dark);
            transition: var(--transition);
        }

        .cta-btn:hover {
            background: var(--color-dark);
            color: #fff;
        }

        /* ===== TEAM ===== */
        .team {
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .team-card {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .team-card .team-img-wrapper {
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 12px;
        }

        .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover img {
            transform: scale(1.05);
        }

        .team-card h4 {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 16px;
            color: var(--color-dark);
        }

        .team-card span {
            font-size: 13px;
            color: var(--color-primary);
            font-weight: 500;
        }

        /* ===== STATS ===== */
        .stats {
            padding: 80px 0;
            background: var(--color-dark);
            position: relative;
            overflow: hidden;
        }

        .stats-bg {
            position: absolute;
            inset: 0;
            opacity: 0.15;
        }

        .stats-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item h3 {
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 700;
            color: #fff;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item h4 {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--color-footer-bg);
            padding: 60px 0 30px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--color-primary);
        }

        .footer-info {
            text-align: right;
        }

        .footer-info p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 4px;
        }

        .footer-info a {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-info a:hover {
            color: var(--color-primary);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            margin-top: 16px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            transition: var(--transition);
        }

        .footer-social a.facebook { background: #3b5998; }
        .footer-social a.twitter { background: #1da1f2; }
        .footer-social a.instagram { background: #e1306c; }
        .footer-social a.linkedin { background: #0077b5; }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

        .footer-bottom {
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-heading {
                text-align: center;
            }

            .hero-right {
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--color-dark);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-social {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 50px 0 40px;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-stat h3 {
                font-size: 28px;
            }

            .clients-bar .container {
                flex-direction: column;
                text-align: center;
            }

            .clients-info {
                flex-direction: column;
            }

            .client-logos {
                flex-wrap: wrap;
                justify-content: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-header {
                flex-direction: column;
                text-align: center;
            }

            .team-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-top {
                flex-direction: column;
            }

            .footer-info {
                text-align: left;
            }

            .footer-social {
                justify-content: flex-start;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cta {
                padding: 60px 0;
            }
        }