/* ============================================================

   ============================================================ */
:root {
    --gold: #f2ca2c;
    --gold-dark: #d4a800;
    --gold-light: #fef7e0;
    --gold-glow: rgba(242, 202, 44, 0.20);
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6b6b80;
    --border-light: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(242, 202, 44, 0.25);
    --white: #ffffff;
    --green: #4ade80;
    --red: #f87171;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


.cookie-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(10, 10, 15, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .cookie-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .cookie-modal {
            max-width: 680px;
            width: 100%;
            background: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: 32px;
            padding: 48px 40px 40px;
            text-align: center;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
            transform: scale(0.92) translateY(20px);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                        opacity 0.5s ease;
            opacity: 0;
        }
        .cookie-overlay.active .cookie-modal {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .cookie-modal .icon {
            font-size: 56px;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .cookie-modal h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .cookie-modal h2 .highlight {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark), #f5d76e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cookie-modal p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .cookie-modal .policy-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin: 16px 0 28px;
            flex-wrap: wrap;
        }
        .cookie-modal .policy-links a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .cookie-modal .policy-links a:hover {
            color: var(--gold-dark);
            text-decoration: underline;
        }
        .cookie-modal .policy-links a i {
            font-size: 14px;
        }
        .btn-consent {
            background: var(--gold);
            color: var(--bg-primary);
            border: none;
            padding: 16px 48px;
            border-radius: 60px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 8px 40px -8px var(--gold-glow);
            width: 100%;
            max-width: 320px;
        }
        .btn-consent:hover {
            background: var(--gold-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 16px 50px -8px var(--gold-glow);
        }
        .cookie-modal .footer-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 16px;
        }
        .cookie-modal .footer-note a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .cookie-modal .footer-note a:hover {
            color: var(--gold);
        }

/* ============================================================

   ============================================================ */
.bg-glow {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-primary);
}
.bg-glow .orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatOrb 24s infinite alternate ease-in-out;
    will-change: transform;
}
.bg-glow .orb:nth-child(1) {
    width: 700px; height: 700px;
    background: var(--gold);
    top: -20%; left: -10%;
    filter: blur(160px);
    opacity: 0.06;
}
.bg-glow .orb:nth-child(2) {
    width: 800px; height: 800px;
    background: #f5d76e;
    bottom: -25%; right: -10%;
    animation-delay: -10s;
    filter: blur(180px);
    opacity: 0.04;
}
.bg-glow .orb:nth-child(3) {
    width: 500px; height: 500px;
    background: var(--gold-dark);
    top: 50%; left: 50%;
    animation-delay: -16s;
    filter: blur(140px);
    opacity: 0.03;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.12); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ============================================================

   ============================================================ */
.navbar {
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo i { color: var(--gold); margin-right: 10px; }
.logo span { color: var(--gold); }
.logo .logo_img { height: 100px; float: left; }
.logo p { height: 100px; float: left; padding-top: 32px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    z-index: 101;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: 0.3s;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-links-wrapper {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--gold); font-weight: 600; }
.nav-links a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin-top: 2px;
    border-radius: 4px;
}
.btn-nav {
    background: var(--gold);
    color: var(--bg-primary) !important;
    padding: 10px 28px !important;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-nav:hover {
    background: var(--gold-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -8px var(--gold-glow);
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hamburger { display: flex; }
    .nav-links-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.35s ease;
        opacity: 0;
        padding: 0 16px;
        border-radius: 0 0 24px 24px;
        justify-content: center;
    }
    .nav-links-wrapper.open {
        max-height: 600px;
        opacity: 1;
        padding: 24px 16px 32px;
    }
    .nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }
    .nav-links a {
        font-size: 17px;
        padding: 10px 0;
        text-align: center;
        white-space: normal;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links a:last-of-type { border-bottom: none; }
    .nav-links a.active::after { margin: 2px auto 0; width: 40px; }
    .btn-nav {
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }
}
@media (min-width: 769px) {
    .nav-links-wrapper {
        display: flex !important;
        max-height: none !important;
        opacity: 1 !important;
        position: relative !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        overflow: visible !important;
        width: auto !important;
    }
    .nav-links { flex-direction: row !important; gap: 32px !important; align-items: center !important; }
    .nav-links a { text-align: left !important; border-bottom: none !important; padding: 0 !important; font-size: 15px !important; }
    .btn-nav { width: auto !important; margin-top: 0 !important; }
    .hamburger { display: none !important; }
}

/* ============================================================
   ============================================================ */
.hero {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border-light);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 520px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-badges span {
    background: rgba(242, 202, 44, 0.10);
    border: 1px solid rgba(242, 202, 44, 0.20);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
.hero-badges span i { color: var(--gold); margin-right: 6px; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 40px -8px var(--gold-glow);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px -8px var(--gold-glow);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 14px 36px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 8px 30px -8px var(--gold-glow);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.hero-stats .stat-item .number {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
}
.hero-stats .stat-item .number .gold { color: var(--gold); }
.hero-stats .stat-item .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    height: 380px;
    background: url('../IMAGES/pc3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
    border: 1px solid var(--border-light);
}
.hero-image1 {background: url('../IMAGES/pc1.jpg') center/cover no-repeat;}
.hero-image2 {background: url('../IMAGES/pc2.jpg') center/cover no-repeat;}
.hero-image3 {background: url('../IMAGES/pc4.jpg') center/cover no-repeat;}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-image .content {
    position: relative;
    z-index: 2;
    max-width: 85%;
}
.hero-image .content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    color: #fff;
}
.hero-image .content p {
    font-size: 15px;
    opacity: 0.85;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    margin-bottom: 8px;
    color: #d0d0e0;
}
.hero-image .flag-row {
    display: flex;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #d0d0e0;
}
.hero-image .flag-row i { color: var(--gold); margin-right: 6px; }

.trust-bar {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 16px; }
.trust-item .badge {
    background: var(--gold);
    color: var(--bg-primary);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

/* ============================================================
   ============================================================ */
.hero-simple {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border-light);
}
.hero-simple .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hero-simple .hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
}
.hero-simple .hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-simple .hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero-simple .hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.hero-simple .hero-meta i {
    color: var(--gold);
    margin-right: 6px;
}

/* ============================================================
   ============================================================ */
.hero-text-left {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--border-light);
}
.hero-text-left .hero-content {
    max-width: 800px;
}
.hero-text-left .hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
}
.hero-text-left .hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text-left .hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 680px;
}
.hero-text-left .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.hero-text-left .hero-meta i {
    color: var(--gold);
    margin-right: 6px;
}

/* ============================================================
   ============================================================ */
.hero-thanks {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.hero-thanks .icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 24px;
    animation: popIn 0.6s ease;
}
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.hero-thanks h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.hero-thanks h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-thanks p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 8px;
    line-height: 1.8;
}
.hero-thanks .ref {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}
.hero-thanks .ref strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}
.section-header h2 i { color: var(--gold); margin-right: 8px; }
.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 10px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   ============================================================ */
.actions-section {
    padding: 60px 0 80px;
}
.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.action-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
}
.action-card .icon {
    font-size: 36px;
    color: var(--gold);
}
.action-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.action-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.action-card .arrow {
    color: var(--gold);
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================================
   ============================================================ */
.services-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    transition: 0.4s;
    text-align: center;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px -20px rgba(242, 202, 44, 0.10);
}
.service-card .icon {
    font-size: 34px;
    color: var(--gold);
    background: rgba(242, 202, 44, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 16px;
    transition: 0.3s;
}
.service-card:hover .icon {
    background: rgba(242, 202, 44, 0.16);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}
.service-card .learn-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.service-card .learn-link i { transition: 0.3s; }
.service-card .learn-link:hover i { transform: translateX(6px); }

/* ============================================================
   ============================================================ */
.services-main {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}
.service-detail:last-child { border-bottom: none; padding-bottom: 0; }
.service-detail .info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-detail .info h3 i { color: var(--gold); margin-right: 10px; }
.service-detail .info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.service-detail .info ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.service-detail .info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}
.service-detail .info ul li:last-child { border-bottom: none; }
.service-detail .info ul li i {
    color: var(--gold);
    width: 20px;
}
.service-detail .stats-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}
.service-detail .stats-box:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
}
.service-detail .stats-box .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.service-detail .stats-box .stat-row:last-child { border-bottom: none; }
.service-detail .stats-box .stat-row .label {
    color: var(--text-muted);
    font-size: 14px;
}
.service-detail .stats-box .stat-row .value {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}
.service-detail .stats-box .stat-row .value .gold { color: var(--gold); }

/* ============================================================
   ============================================================ */
.solutions-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    transition: 0.4s;
    text-align: left;
    backdrop-filter: blur(8px);
}
.solution-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px -20px rgba(242, 202, 44, 0.08);
}
.solution-card .icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}
.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.solution-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.solution-card ul {
    list-style: none;
    padding: 0;
}
.solution-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.solution-card ul li:last-child { border-bottom: none; }
.solution-card ul li i { color: var(--gold); width: 18px; }

/* ============================================================
   ============================================================ */
.solutions-grid-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.solutions-grid-section .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.solutions-grid-section .solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 28px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.solutions-grid-section .solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: 0.4s;
}
.solutions-grid-section .solution-card:hover::before { opacity: 1; }
.solutions-grid-section .solution-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
}
.solutions-grid-section .solution-card .icon {
    font-size: 36px;
    color: var(--gold);
    background: rgba(242, 202, 44, 0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.solutions-grid-section .solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.solutions-grid-section .solution-card .desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    flex: 1;
}
.solutions-grid-section .solution-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.solutions-grid-section .solution-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
}
.solutions-grid-section .solution-card ul li:last-child { border-bottom: none; }
.solutions-grid-section .solution-card ul li i {
    color: var(--gold);
    width: 18px;
    flex-shrink: 0;
}
.solutions-grid-section .solution-card .stats-row {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}
.solutions-grid-section .solution-card .stats-row .stat-item .number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.solutions-grid-section .solution-card .stats-row .stat-item .number .gold { color: var(--gold); }
.solutions-grid-section .solution-card .stats-row .stat-item .label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   ============================================================ */
.why-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: 0.4s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
}
.why-card .icon {
    font-size: 38px;
    color: var(--gold);
    background: rgba(242, 202, 44, 0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 16px;
}
.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   ============================================================ */
.why-solutions-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.why-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.why-solution-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.why-solution-card .icon {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 12px;
}
.why-solution-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.why-solution-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   ============================================================ */
.process-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-step {
    text-align: center;
    padding: 24px 16px;
}
.process-step .step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   ============================================================ */
.story-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.story-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.story-text h3 i { color: var(--gold); margin-right: 10px; }
.story-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-image-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}
.story-image-box:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.story-image-box .icon-big {
    font-size: 72px;
    color: var(--gold);
    margin-bottom: 16px;
}
.story-image-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.story-image-box p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================
   ============================================================ */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}
.stat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.stat-card .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}
.stat-card .number .gold { color: var(--gold); }
.stat-card .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================================
   ============================================================ */
.mv-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 32px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.mv-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.mv-card .icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}
.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.mv-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================================
   ============================================================ */
.values-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: 0.4s;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-6px);
}
.value-card .icon {
    font-size: 38px;
    color: var(--gold);
    background: rgba(242, 202, 44, 0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 16px;
    transition: 0.3s;
}
.value-card:hover .icon {
    background: rgba(242, 202, 44, 0.16);
    transform: scale(1.05);
}
.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.value-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================================
   ============================================================ */
.team-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.team-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.team-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary);
}
.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.team-card .role {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}
.team-card .bio {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
}

/* ============================================================
   ============================================================ */
.timeline-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
    border-left: 2px solid var(--gold);
}
.timeline-item {
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--gold-glow);
    z-index: 2;
}
.timeline-item .year {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}
.timeline-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 4px 0 6px;
}
.timeline-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   ============================================================ */
.location-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.location-info {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}
.location-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.location-info h3 i { color: var(--gold); margin-right: 10px; }
.location-info .address {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin: 12px 0 20px;
}
.location-info .address i {
    color: var(--gold);
    width: 24px;
    margin-right: 6px;
}
.location-info .contact-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}
.location-info .contact-row a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
.location-info .contact-row a:hover { color: var(--gold-dark); }
.location-map {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.location-map .map-icon {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 16px;
}
.location-map p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   ============================================================ */
.contact-info-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.contact-info-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.contact-info-card .icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
}
.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.contact-info-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
.contact-info-card a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.contact-info-card a:hover { color: var(--gold-dark); }

/* ============================================================
   ============================================================ */
.form-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
}
.form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-box h3 i { color: var(--gold); margin-right: 10px; }
.form-box p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.btn-submit {
    background: var(--gold);
    color: var(--bg-primary);
    border: none;
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.btn-submit:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -8px var(--gold-glow);
}

.location-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 24px;
    transition: 0.3s;
}
.location-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
}
.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.location-card h4 i { color: var(--gold); margin-right: 8px; }
.location-card .address {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}
.location-card .address i {
    color: var(--gold);
    width: 20px;
    margin-right: 6px;
}
.location-card .hours {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

/* ============================================================
   ============================================================ */
.offices-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.office-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.4s;
}
.office-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.office-card .icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}
.office-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.office-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 4px;
}

/* ============================================================
   ============================================================ */
.faq-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item:hover {
    border-color: var(--border-gold);
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
    color: var(--gold);
    transition: 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ============================================================
   ============================================================ */
.privacy-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    margin-bottom: 28px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}
.privacy-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.privacy-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.privacy-card h2 i {
    color: var(--gold);
    font-size: 26px;
}
.privacy-card p,
.privacy-card li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}
.privacy-card ul,
.privacy-card ol {
    padding-left: 24px;
    margin: 8px 0 12px;
}
.privacy-card ul li,
.privacy-card ol li {
    margin-bottom: 8px;
}
.privacy-card strong {
    color: var(--text-primary);
}
.privacy-card .highlight-box {
    background: rgba(242, 202, 44, 0.06);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0 8px;
}
.privacy-card .highlight-box p {
    margin: 0;
    font-size: 15px;
}
.privacy-card a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.privacy-card a:hover {
    color: var(--gold-dark);
}

/* ============================================================
   ============================================================ */
.cookie-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.cookie-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    margin-bottom: 28px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}
.cookie-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.cookie-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cookie-card h2 i {
    color: var(--gold);
    font-size: 26px;
}
.cookie-card p,
.cookie-card li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}
.cookie-card ul,
.cookie-card ol {
    padding-left: 24px;
    margin: 8px 0 12px;
}
.cookie-card ul li,
.cookie-card ol li {
    margin-bottom: 8px;
}
.cookie-card strong {
    color: var(--text-primary);
}
.cookie-card .highlight-box {
    background: rgba(242, 202, 44, 0.06);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0 8px;
}
.cookie-card .highlight-box p {
    margin: 0;
    font-size: 15px;
}
.cookie-card a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.cookie-card a:hover {
    color: var(--gold-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 8px;
    font-size: 14px;
}
.cookie-table th {
    text-align: left;
    padding: 12px 16px;
    background: rgba(242, 202, 44, 0.06);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--border-gold);
}
.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.6;
}
.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   ============================================================ */
.disclosure-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.disclosure-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    margin-bottom: 28px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}
.disclosure-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}
.disclosure-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.disclosure-card h2 i {
    color: var(--gold);
    font-size: 26px;
}
.disclosure-card p,
.disclosure-card li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}
.disclosure-card ul,
.disclosure-card ol {
    padding-left: 24px;
    margin: 8px 0 12px;
}
.disclosure-card ul li,
.disclosure-card ol li {
    margin-bottom: 8px;
}
.disclosure-card strong {
    color: var(--text-primary);
}
.disclosure-card .highlight-box {
    background: rgba(242, 202, 44, 0.06);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0 8px;
}
.disclosure-card .highlight-box p {
    margin: 0;
    font-size: 15px;
}
.disclosure-card a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.disclosure-card a:hover {
    color: var(--gold-dark);
}

/* ============================================================
   ============================================================ */
.dashboard-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-primary);
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 40px;
}
.dashboard-chart {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}
.dashboard-chart h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dashboard-chart h4 i { color: var(--gold); }
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}
.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.bar-item .bar {
    width: 100%;
    max-width: 36px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transition: height 0.8s ease;
    min-height: 8px;
}
.bar-item .bar-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.chart-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}
.chart-footer .up { color: var(--green); }
.chart-footer .down { color: var(--red); }

.dashboard-insights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.insight-metric {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 18px 24px;
    border-left: 4px solid var(--gold);
    backdrop-filter: blur(8px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.insight-metric .metric-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}
.insight-metric .metric-value .gold { color: var(--gold); }
.insight-metric .metric-label {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 4px;
}
.insight-metric .metric-change {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-left: 8px;
}
.insight-metric .metric-change.down { color: var(--red); }

.index-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}
.index-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-section h4 i { color: var(--gold); }
.index-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.index-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
    transition: 0.3s;
}
.index-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.index-card .index-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.index-card .index-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}
.index-card .index-change {
    font-size: 14px;
    font-weight: 600;
}
.index-card .index-change.up { color: var(--green); }
.index-card .index-change.down { color: var(--red); }

.allocation-section {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.allocation-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px 28px;
}
.allocation-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.allocation-box h5 i { color: var(--gold); margin-right: 8px; }
.alloc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.alloc-item .alloc-label {
    width: 80px;
    font-size: 14px;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.alloc-item .alloc-bar-bg {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}
.alloc-item .alloc-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.alloc-item .alloc-pct {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    width: 40px;
    text-align: right;
}
.sentiment-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sentiment-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.sentiment-box h5 i { color: var(--gold); margin-right: 8px; }
.sentiment-gauge {
    display: flex;
    align-items: center;
    gap: 20px;
}
.gauge-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid var(--gold);
    border-top-color: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    transform: rotate(0deg);
}
.gauge-labels .label {
    font-size: 14px;
    color: var(--text-secondary);
}
.gauge-labels .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================================
   ============================================================ */
.partners-section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: 0.3s;
}
.partner-item:hover { opacity: 1; color: var(--text-primary); }
.partner-item i { font-size: 32px; color: var(--gold); }

/* ============================================================
   ============================================================ */
.insights-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px 22px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.insight-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px -16px rgba(242, 202, 44, 0.06);
}
.insight-card .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(242, 202, 44, 0.10);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.insight-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.insight-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.insight-card .meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}
.insight-card .meta i { color: var(--gold); }

/* ============================================================
   ============================================================ */
.testimonials-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 28px 24px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card .client .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}
.testimonial-card .client .info .name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}
.testimonial-card .client .info .role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   ============================================================ */
.success-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-light);
}
.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.success-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 24px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}
.success-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.success-card .quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
}
.success-card .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.success-card .client-info .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    flex-shrink: 0;
}
.success-card .client-info .name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}
.success-card .client-info .role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   ============================================================ */
.cta-section {
    padding: 70px 0;
    text-align: center;
}
.cta-box {
    background: linear-gradient(135deg, rgba(242, 202, 44, 0.06), rgba(212, 168, 0, 0.06));
    border: 1px solid var(--border-gold);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 4px 40px -12px rgba(242, 202, 44, 0.04);
}
.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}
.cta-box h2 i { color: var(--gold); }
.cta-box p {
    color: var(--text-secondary);
    font-size: 18px;
    margin: 16px 0 28px;
}
.cta-box .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   ============================================================ */
footer {
    padding: 40px 0 30px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col h4 i { color: var(--gold); margin-right: 6px; }
.footer-col p, .footer-col li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom .legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}
.footer-bottom .legal a:hover { color: var(--gold); }

/* ============================================================
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid-section .solutions-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .success-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .index-grid { grid-template-columns: repeat(2, 1fr); }
    .allocation-section { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hero { padding: 40px 0 30px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .hero-badges span { font-size: 12px; padding: 4px 14px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-stats .stat-item .number { font-size: 22px; }
    .hero-stats .stat-item .label { font-size: 12px; }
    .hero-image { height: 220px; padding: 20px; }
    .hero-image .content h3 { font-size: 18px; }
    .hero-image .content p { font-size: 13px; }
    .hero-image .flag-row { font-size: 12px; flex-wrap: wrap; gap: 10px; }

    .hero-simple { padding: 40px 0 30px; }
    .hero-simple .hero-content h1 { font-size: 32px; }
    .hero-simple .hero-content p { font-size: 16px; }
    .hero-simple .hero-meta { gap: 12px; font-size: 13px; flex-direction: column; align-items: center; }

    .hero-text-left { padding: 40px 0 30px; }
    .hero-text-left .hero-content h1 { font-size: 32px; }
    .hero-text-left .hero-content p { font-size: 16px; }
    .hero-text-left .hero-meta { gap: 12px; font-size: 13px; flex-direction: column; }

    .hero-thanks { padding: 60px 0 40px; }
    .hero-thanks h1 { font-size: 34px; }
    .hero-thanks .icon { font-size: 60px; }

    .actions-grid { grid-template-columns: 1fr; max-width: 100%; }

    .trust-item { font-size: 12px; }
    .trust-item .badge { font-size: 10px; padding: 1px 10px; }

    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 24px 16px; }
    .solutions-grid { grid-template-columns: 1fr; }
    .solutions-grid-section .solutions-grid { grid-template-columns: 1fr; }
    .solution-card { padding: 24px 16px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-solutions-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { padding: 16px 12px; }
    .insights-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .success-grid { grid-template-columns: 1fr; }
    .dashboard-chart { padding: 20px 16px; }
    .chart-bars { height: 120px; gap: 6px; }
    .bar-item .bar { max-width: 24px; }
    .bar-item .bar-label { font-size: 10px; }
    .chart-footer { font-size: 12px; flex-wrap: wrap; }
    .dashboard-insights { gap: 12px; }
    .insight-metric { padding: 14px 18px; }
    .insight-metric .metric-value { font-size: 22px; }
    .index-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .index-card { padding: 14px 12px; }
    .index-card .index-price { font-size: 18px; }
    .allocation-section { grid-template-columns: 1fr; gap: 20px; }
    .allocation-box, .sentiment-box { padding: 20px 16px; }
    .alloc-item .alloc-label { width: 60px; font-size: 13px; }

    .story-grid { grid-template-columns: 1fr; gap: 30px; }
    .story-text h3 { font-size: 26px; }
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .location-info { padding: 24px 20px; }
    .location-map { min-height: 200px; padding: 20px; }

    .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
    .service-detail .info h3 { font-size: 24px; }
    .service-detail .stats-box { padding: 24px 20px; }

    .solutions-grid-section .solution-card .stats-row { flex-wrap: wrap; gap: 12px; }

    .form-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .form-box { padding: 24px 16px; }
    .location-card { padding: 20px 16px; }

    .privacy-card { padding: 28px 20px; }
    .privacy-card h2 { font-size: 22px; }
    .cookie-card { padding: 28px 20px; }
    .cookie-card h2 { font-size: 22px; }
    .cookie-table { font-size: 13px; }
    .cookie-table th, .cookie-table td { padding: 8px 12px; }

    .disclosure-card { padding: 28px 20px; }
    .disclosure-card h2 { font-size: 22px; }

    .cta-box { padding: 30px 20px; }
    .cta-box h2 { font-size: 26px; }
    .cta-box p { font-size: 16px; }
    .cta-box .btn-group .btn-primary,
    .cta-box .btn-group .btn-outline { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer-bottom .legal a { margin: 0 10px; }
    .partners-grid { gap: 24px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; }
    .hero-simple .hero-content h1 { font-size: 26px; }
    .hero-text-left .hero-content h1 { font-size: 26px; }
    .hero-thanks h1 { font-size: 28px; }
    .hero-thanks .icon { font-size: 48px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stats .stat-item:last-child { grid-column: span 2; }
    .index-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-solutions-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card .number { font-size: 28px; }
    .sentiment-gauge { flex-direction: column; align-items: flex-start; }
    .form-box { padding: 20px 12px; }
    .location-card { padding: 16px 12px; }
    .privacy-card { padding: 20px 16px; }
    .privacy-card h2 { font-size: 20px; }
    .cookie-card { padding: 20px 16px; }
    .cookie-card h2 { font-size: 20px; }
    .hero-simple .hero-meta { flex-direction: column; gap: 8px; align-items: center; }
    .hero-text-left .hero-meta { flex-direction: column; gap: 8px; }
    .cookie-table { font-size: 12px; }
    .cookie-table th, .cookie-table td { padding: 6px 8px; display: block; }
    .disclosure-card { padding: 20px 16px; }
    .disclosure-card h2 { font-size: 20px; }
}