/* Fallback: if Google Fonts fail, use system equivalents */
        @supports not (font-family: 'Syne') {
            :root { --font-head: 'Trebuchet MS', 'Arial Black', sans-serif; }
        }
:root {
            --bg: #0a0c0b;
            --surface: #111410;
            --surface-2: #161a14;
            --border: rgba(255,255,255,0.07);
            --border-hover: rgba(197,160,40,0.3);
            --gold: #C5A028;
            --gold-light: #e0b830;
            --green: #1A3C34;
            --green-mid: #2a5a4e;
            --green-light: #3d7a6a;
            --text: #f0ede8;
            --text-muted: #7a8278;
            --text-dim: #4a504a;
            --radius: 20px;
            --radius-lg: 28px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html, body { width: 100%; max-width: 100%; scroll-behavior: smooth; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NOISE TEXTURE OVERLAY ─── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1000;
            opacity: 0.4;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 1240px;
            z-index: 999;
            background: rgba(10,12,11,0.6);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
            border-radius: 100px;
            padding: 14px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        header img { height: 64px; width: auto; }

        nav { display: flex; align-items: center; gap: 32px; }

        nav a {
            font-family: 'Syne', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: color 0.2s;
        }

        nav a:hover { color: var(--text); }

        .btn-nav {
            background: var(--gold);
            color: #000 !important;
            padding: 10px 22px;
            border-radius: 100px;
            font-weight: 700 !important;
            font-size: 13px !important;
            transition: background 0.2s, transform 0.2s !important;
        }

        .btn-nav:hover { background: var(--gold-light) !important; transform: scale(1.03); }

        /* ─── HERO ─── */
        .hero {
            min-height: unset;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,60,52,0.35) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(197,160,40,0.08) 0%, transparent 60%),
                radial-gradient(ellipse 30% 30% at 20% 70%, rgba(26,60,52,0.2) 0%, transparent 60%);
        }

        .hero-grid-lines {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border: 1px solid rgba(197,160,40,0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(197,160,40,0.06);
            margin-bottom: 32px;
            position: relative;
        }

        .hero-tag::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(36px, 5.5vw, 60px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            max-width: 800px;
            position: relative;
            margin-bottom: 28px;
            text-align: center;
            text-shadow: 0 2px 30px rgba(0,0,0,0.6);
        }

        .hero h1 .line-gold {
            background: linear-gradient(135deg, var(--gold) 0%, #f0cc50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero h1 .line-green {
            color: var(--green-light);
        }

        .hero p {
            font-size: 18px;
            font-weight: 300;
            color: var(--text-muted);
            max-width: 580px;
            line-height: 1.7;
            position: relative;
            margin-bottom: 48px;
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: #000;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 14px;
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s;
            letter-spacing: 0.01em;
        }

        .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(197,160,40,0.3); }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            color: var(--text);
            font-family: 'Syne', sans-serif;
            font-weight: 600;
            font-size: 14px;
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-dim);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--text-dim), transparent);
            animation: scrollDown 2s infinite;
        }

        @keyframes scrollDown {
            0% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
            51% { transform: scaleY(1); transform-origin: bottom; }
            100% { transform: scaleY(0); transform-origin: bottom; }
        }

        /* ─── STATS STRIP ─── */
        .stats-strip {
            padding: 0 24px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--surface);
        }

        .stat-item {
            padding: 32px 28px;
            border-right: 1px solid var(--border);
            transition: background 0.25s;
        }

        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: var(--surface-2); }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* ─── SECTION HEADERS ─── */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: var(--gold);
        }

        /* ─── BENTO GRID MAIN ─── */
        .section-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .bento-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 24px;
            padding: 0 4px;
        }

        .bento-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .bento-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 300px;
            text-align: right;
            line-height: 1.6;
        }

        /* ─── CARDS ─── */
        .card {
            background: rgba(17,20,16,0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: var(--radius-lg);
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
        }

        .card:hover { border-color: rgba(197,160,40,0.35); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,160,40,0.1), inset 0 1px 0 rgba(255,255,255,0.05); }

        .card-dark { background: var(--surface-2); }

        .card-gold {
            background: linear-gradient(135deg, #1a1500 0%, #0d0a00 100%);
            border-color: rgba(197,160,40,0.2);
        }

        .card-gold:hover { border-color: rgba(197,160,40,0.5); }

        .card-green {
            background: linear-gradient(135deg, #071a15 0%, #030f0c 100%);
            border-color: rgba(26,60,52,0.5);
        }

        .card-green:hover { border-color: rgba(61,122,106,0.5); }

        .card-accent {
            background: linear-gradient(135deg, var(--green) 0%, #0e2420 100%);
            border-color: rgba(61,122,106,0.3);
        }

        .icon-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            margin-bottom: 24px;
            font-size: 20px;
        }

        .icon-gold { background: rgba(197,160,40,0.12); color: var(--gold); border: 1px solid rgba(197,160,40,0.2); }
        .icon-green { background: rgba(26,60,52,0.5); color: var(--green-light); border: 1px solid rgba(61,122,106,0.2); }
        .icon-white { background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); }

        .card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            line-height: 1.25;
        }

        .card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .card-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 100px;
            margin-top: 20px;
        }

        .tag-gold { background: rgba(197,160,40,0.12); color: var(--gold); }
        .tag-green { background: rgba(61,122,106,0.15); color: var(--green-light); }
        .tag-white { background: rgba(255,255,255,0.07); color: var(--text-muted); }

        .checklist { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

        .checklist li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .checklist li::before {
            content: '';
            display: block;
            width: 16px;
            height: 16px;
            min-width: 16px;
            background: rgba(197,160,40,0.15);
            border: 1px solid rgba(197,160,40,0.3);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23C5A028' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-size: cover;
            margin-top: 2px;
        }

        /* ─── GRIDS ─── */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

        .col-span-2 { grid-column: span 2; }

        /* ─── DECORATIVE ELEMENTS ─── */
        .card-number {
            position: absolute;
            top: 28px;
            right: 28px;
            font-family: 'Syne', sans-serif;
            font-size: 64px;
            font-weight: 800;
            color: rgba(255,255,255,0.03);
            line-height: 1;
            letter-spacing: -0.05em;
            pointer-events: none;
        }

        .glow-dot {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .card-divider {
            height: 1px;
            background: var(--border);
            margin: 24px 0;
        }

        /* ─── TEAM ─── */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .team-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.25s;
        }

        .team-card:hover { border-color: var(--border-hover); background: var(--surface-2); }

        .team-avatar {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--green-light);
            flex-shrink: 0;
            border: 1px solid rgba(61,122,106,0.2);
        }

        .team-name {
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 3px;
        }

        .team-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ─── LAWYERS ─── */
        .lawyer-card {
            padding: 40px;
        }

        .lawyer-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(197,160,40,0.08);
            border: 1px solid rgba(197,160,40,0.2);
            border-radius: 14px;
            padding: 14px 18px;
            margin-top: 28px;
        }

        .lawyer-badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(197,160,40,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 16px;
        }

        .lawyer-badge-name {
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 700;
        }

        .lawyer-badge-title {
            font-size: 11px;
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* ─── CONTACT ─── */
        .contact-section {
            padding: 80px 24px;
        }

        .contact-inner {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 32px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact-left {
            padding: 64px;
            background: linear-gradient(135deg, var(--green) 0%, #0e2420 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-left::before {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(197,160,40,0.06);
        }

        .contact-right {
            padding: 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-h {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .contact-sub {
            font-size: 15px;
            color: rgba(240,237,232,0.6);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-links { display: flex; flex-direction: column; gap: 14px; }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            transition: all 0.3s;
            padding: 14px 16px;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 14px;
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(8px);
        }

        .contact-link:hover { color: var(--gold); border-color: rgba(197,160,40,0.35); background: rgba(197,160,40,0.06); box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(197,160,40,0.08); transform: translateX(4px); }

        .contact-link-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .director-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 16px;
            margin-top: 32px;
        }

        .director-avatar {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(197,160,40,0.15);
            border: 1px solid rgba(197,160,40,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--gold);
        }

        .director-name {
            font-family: 'Syne', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .director-title {
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* ─── FOOTER ─── */
        footer {
            border-top: 1px solid var(--border);
            padding: 32px 24px;
            text-align: center;
        }

        footer p {
            font-size: 13px;
            color: var(--text-dim);
        }

        footer span { color: var(--gold); }

        /* ─── SECTION SPACING ─── */
        .section { padding: 80px 0; }

        /* ─── LARGE NUMBER FEATURE CARD ─── */
        .big-feature {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
        }

        .big-feature-num {
            font-family: 'Syne', sans-serif;
            font-size: 80px;
            font-weight: 800;
            letter-spacing: -0.05em;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        /* ─── WIDE BANNER CARD ─── */
        .banner-card {
            background: linear-gradient(135deg, var(--green) 0%, #071510 40%, #0a0c0b 100%);
            border: 1px solid rgba(61,122,106,0.25);
            border-radius: var(--radius-lg);
            padding: 48px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 32px;
        }

        .banner-card::after {
            content: '';
            position: absolute;
            right: -100px;
            top: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(197,160,40,0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: bannerGlow 6s infinite ease-in-out;
        }

        .banner-text { flex: 1; }

        .banner-text h2 {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 12px;
        }

        .banner-text p {
            font-size: 15px;
            color: rgba(240,237,232,0.6);
            line-height: 1.6;
        }

        .banner-cta { flex-shrink: 0; }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-up { animation: fadeUp 0.7s ease forwards; }
        .delay-1 { animation-delay: 0.1s; opacity: 0; }
        .delay-2 { animation-delay: 0.2s; opacity: 0; }
        .delay-3 { animation-delay: 0.35s; opacity: 0; }
        .delay-4 { animation-delay: 0.5s; opacity: 0; }

        /* ─── HAMBURGER BUTTON ─── */
        .menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            cursor: pointer;
            gap: 5px;
            transition: background 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }

        .menu-btn:hover { background: rgba(255,255,255,0.09); border-color: rgba(197,160,40,0.3); }

        .menu-btn span {
            display: block;
            width: 18px;
            height: 1.5px;
            background: var(--text);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
            transform-origin: center;
        }

        .menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* ─── MOBILE DRAWER ─── */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 20px;
            right: 20px;
            background: rgba(10,12,11,0.97);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 12px;
            z-index: 998;
            flex-direction: column;
            gap: 4px;
            transform: translateY(-10px);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            pointer-events: none;
        }

        .mobile-nav.open {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .mobile-nav a {
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            padding: 14px 18px;
            border-radius: 12px;
            transition: background 0.2s, color 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.01em;
        }

        .mobile-nav a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

        .mobile-nav .mobile-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--border);
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .mobile-nav a:hover .mobile-dot { background: var(--gold); }

        .mobile-nav .mobile-divider {
            height: 1px;
            background: var(--border);
            margin: 4px 8px;
        }

        .mobile-nav .btn-mobile-cta {
            background: var(--gold);
            color: #000 !important;
            font-weight: 700 !important;
            justify-content: center;
            margin-top: 4px;
        }

        .mobile-nav .btn-mobile-cta:hover { background: var(--gold-light) !important; }
        .mobile-nav .btn-mobile-cta .mobile-dot { display: none; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            .grid-3 { grid-template-columns: 1fr 1fr; }
            .grid-3 .col-span-2 { grid-column: span 2; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .contact-inner { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .banner-card { flex-direction: column; }
            .bento-header { flex-direction: column; align-items: flex-start; gap: 8px; }
            .bento-subtitle { text-align: left; max-width: 100%; }
            nav { display: none; }
            .menu-btn { display: flex; }
            .mobile-nav { display: flex; }
        }

        @media (max-width: 600px) {
            .grid-3, .grid-2 { grid-template-columns: 1fr; }
            .grid-3 .col-span-2, .col-span-2 { grid-column: span 1; }
            .stats-inner { grid-template-columns: 1fr 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .contact-left, .contact-right { padding: 28px 20px; }

            /* Logo maior mobile */
            header img { height: 52px !important; }
            header { padding: 12px 18px; }

            /* Hero menor no mobile */
            .hero { padding: 120px 20px 60px; }
            .hero h1 { font-size: 28px !important; line-height: 1.15; }
            .hero p { font-size: 15px; }
            .hero-tag { font-size: 10px; }

            /* Stats menores */
            .stat-num { font-size: 28px; }
            .stat-item { padding: 20px 16px; }
            .stats-inner { grid-template-columns: 1fr 1fr; }

            /* Banner menor */
            .banner-card { padding: 28px 24px; }
            .banner-text h2 { font-size: 24px; }
            .banner-text p { font-size: 13px; }
            .btn-primary { font-size: 14px !important; padding: 14px 24px !important; }

            /* Seções padding */
            .section { padding: 48px 0; }
            .section-wrap { padding: 0 16px; }
            .bento-title { font-size: 26px; }
            .card { padding: 22px; }
            .card h3 { font-size: 18px; }
        }

        /* ─── FOOTER CLASSES ─── */
        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 28px;
        }

        .footer-nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37,211,102,0.1);
            border: 1px solid rgba(37,211,102,0.2);
            color: #25D366;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .footer-wa-btn:hover { background: rgba(37,211,102,0.18); }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-mds-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            opacity: 0.5;
            transition: opacity 0.25s;
        }

        .footer-mds-link:hover { opacity: 1; }

        @media (max-width: 700px) {
            .footer-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-nav-links {
                justify-content: center;
            }
            .footer-wa-btn {
                width: 100%;
                justify-content: center;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
            }
            .footer-mds-link {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
        }

        /* ═══════════════════════════════════════════
           PREMIUM VISUAL EFFECTS
        ═══════════════════════════════════════════ */

        /* ─── CURSOR GLOW ─── */
        .cursor-glow {
            position: fixed;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(197,160,40,0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
            mix-blend-mode: screen;
        }

        /* ─── FLOATING ORBS ─── */
        .orb {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(80px);
        }
        .orb-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(26,60,52,0.4) 0%, transparent 70%);
            top: -150px; left: -150px;
            animation: orbFloat1 25s infinite ease-in-out;
        }
        .orb-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(197,160,40,0.13) 0%, transparent 70%);
            top: 25%; right: -120px;
            animation: orbFloat2 18s infinite ease-in-out;
        }
        .orb-3 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(26,60,52,0.22) 0%, transparent 70%);
            bottom: 5%; left: 15%;
            animation: orbFloat3 30s infinite ease-in-out;
        }
        .orb-4 {
            width: 280px; height: 280px;
            background: radial-gradient(circle, rgba(197,160,40,0.09) 0%, transparent 70%);
            bottom: 25%; right: 5%;
            animation: orbFloat1 22s infinite ease-in-out;
            animation-delay: -8s;
        }

        @keyframes orbFloat1 {
            0%,100% { transform: translate(0,0) scale(1); }
            33%      { transform: translate(40px,-50px) scale(1.05); }
            66%      { transform: translate(-30px,30px) scale(0.95); }
        }
        @keyframes orbFloat2 {
            0%,100% { transform: translate(0,0) scale(1); }
            40%      { transform: translate(-50px,30px) scale(1.08); }
            70%      { transform: translate(20px,-40px) scale(0.94); }
        }
        @keyframes orbFloat3 {
            0%,100% { transform: translate(0,0) scale(1); }
            25%      { transform: translate(60px,-20px) scale(1.04); }
            75%      { transform: translate(-40px,50px) scale(0.97); }
        }

        /* ─── HERO LIGHT BEAMS ─── */
        .hero-beam {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }
        .hero-beam-1 {
            top: 0; left: 28%;
            width: 1px; height: 45%;
            background: linear-gradient(to bottom, rgba(197,160,40,0.35), transparent);
            animation: beamPulse 4s infinite ease-in-out;
        }
        .hero-beam-2 {
            top: 0; left: 58%;
            width: 1px; height: 30%;
            background: linear-gradient(to bottom, rgba(61,122,106,0.4), transparent);
            animation: beamPulse 6s infinite ease-in-out;
            animation-delay: -2s;
        }
        .hero-beam-3 {
            top: 0; right: 18%;
            width: 1px; height: 55%;
            background: linear-gradient(to bottom, rgba(197,160,40,0.18), transparent);
            animation: beamPulse 5s infinite ease-in-out;
            animation-delay: -1.5s;
        }
        @keyframes beamPulse {
            0%,100% { opacity: 0.4; transform: scaleY(1); }
            50%      { opacity: 1; transform: scaleY(1.08); }
        }

        /* ─── SCROLL REVEAL ─── */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        .reveal-left {
            opacity: 0; transform: translateX(-36px);
            transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }

        .reveal-right {
            opacity: 0; transform: translateX(36px);
            transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
        }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }

        /* stagger delays */
        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }
        .reveal-d4 { transition-delay: 0.4s; }
        .reveal-d5 { transition-delay: 0.5s; }
        .reveal-d6 { transition-delay: 0.6s; }

        /* ─── CARD LIGHT SWEEP + GLOW ─── */
        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
            z-index: 0;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
            transition: left 0.7s ease;
            z-index: 0;
            pointer-events: none;
        }
        .card:hover::before { left: 160%; }
        .card:hover::after { opacity: 1; }
        .card > * { position: relative; z-index: 1; }

        /* ─── GOLD GLOW BUTTONS ─── */
        .btn-primary { position: relative; overflow: hidden; }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            border-radius: inherit;
        }
        .btn-primary:hover::before { opacity: 1; }
        .btn-primary:hover { box-shadow: 0 0 32px rgba(197,160,40,0.45), 0 10px 28px rgba(0,0,0,0.35); }

        /* ─── BANNER ANIMATED LIGHT ─── */
        @keyframes bannerGlow {
            0%,100% { opacity: 0.5; transform: scale(1); }
            50%      { opacity: 1; transform: scale(1.15); }
        }

        /* ─── TEAM CARD ─── */
        .team-card { transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
        .team-card:hover {
            border-color: rgba(197,160,40,0.3);
            background: rgba(22,26,20,0.9);
            box-shadow: 0 14px 44px rgba(0,0,0,0.4), 0 0 0 1px rgba(197,160,40,0.08);
            transform: translateY(-4px);
        }

        /* ─── CONTACT LINK SLIDE ─── */
        .contact-link { transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
        .contact-link:hover { transform: translateX(5px); }

        /* ─── SECTION LABEL DASH ─── */
        .section-label::before { transition: width 0.4s ease; }
        .section-label:hover::before { width: 40px; }

        /* ─── STAT ITEM ─── */
        .stat-item { transition: background 0.25s; }
        .stat-item:hover .stat-num { color: var(--gold-light); text-shadow: 0 0 20px rgba(197,160,40,0.4); }

        /* ─── SCROLLBAR ─── */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: rgba(197,160,40,0.3); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(197,160,40,0.6); }

        /* ─── GLASSMORPHISM EXTRA ON CARDS ─── */
        .card-dark, .card-gold, .card-green, .card-accent {
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        /* ─── LOGO MOBILE ─── */
        @media (max-width: 600px) {
            header img { height: 52px !important; }
        }


        /* ═══════════════════════════════════════════
           PARALLAX SLIDER
        ═══════════════════════════════════════════ */
        .parallax-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            margin: 0;
        }

        .parallax-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            z-index: 0;
            transform: scale(1.08);
            transition: transform 8s ease-out;
        }
        .parallax-slide.active .slide-bg { transform: scale(1); }

        .parallax-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transform: scale(1.08);
            transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 8s ease-out;
            will-change: transform, opacity;
            
        }

        .parallax-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .parallax-slide.exit {
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 1s ease, transform 1s ease;
        }

        .parallax-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(10,12,11,0.2) 0%, rgba(10,12,11,0.05) 40%, rgba(10,12,11,0.45) 100%);
        }

        .parallax-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            text-align: center;
            padding: 0 24px 110px;
            z-index: 2;
        }

        .parallax-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border: 1px solid rgba(197,160,40,0.4);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(197,160,40,0.08);
            backdrop-filter: blur(12px);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
        }

        .parallax-slide.active .parallax-tag {
            opacity: 1;
            transform: translateY(0);
        }

        .parallax-content h2 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(32px, 5vw, 68px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: #fff;
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
            text-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 1px 8px rgba(0,0,0,0.5);
            margin-bottom: 0;
        }

        .parallax-slide.active .parallax-content h2 {
            opacity: 1;
            transform: translateY(0);
        }

        /* Controls */
        .parallax-controls {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }

        .parallax-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15);
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
        }

        .parallax-btn:hover {
            background: rgba(197,160,40,0.2);
            border-color: rgba(197,160,40,0.5);
            color: var(--gold);
            transform: scale(1.08);
        }

        .parallax-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .parallax-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .parallax-dot.active {
            background: var(--gold);
            width: 28px;
            border-radius: 4px;
            box-shadow: 0 0 12px rgba(197,160,40,0.5);
        }

        /* Progress bar */
        .parallax-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255,255,255,0.1);
            z-index: 10;
        }

        .parallax-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            width: 0%;
            transition: width linear;
            box-shadow: 0 0 8px rgba(197,160,40,0.6);
        }

        /* Parallax scroll effect on bg */
        
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            z-index: 0;
            transform: scale(1.08);
            transition: transform 8s ease-out;
        }
        .parallax-slide.active .slide-bg { transform: scale(1); }

        .parallax-slide {
            background-attachment: fixed;
        }

        @media (max-width: 768px) {
            .parallax-section { height: 100vh; min-height: 600px; margin-bottom: 0; }
            
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            z-index: 0;
            transform: scale(1.08);
            transition: transform 8s ease-out;
        }
        .parallax-slide.active .slide-bg { transform: scale(1); }

        .parallax-slide { background-attachment: scroll; }
            .parallax-content { bottom: 90px; }
            .parallax-content h2 { font-size: 26px; }
        }
