@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════
   ROOT VARIABLES
══════════════════════════════════════ */

:root {
    /* ── Colors ── */
    --color-accent:          #ffcf23;
    --color-accent-dark:     #fcc706;
    --color-gold-light:      #ffe97a;
    --color-gold-deep:       #c89b00;
    --color-silver-mid:      #d0d0d0;
    --color-silver-dark:     #7a7a7a;
    --color-dark:            #111111;
    --color-dark-2:          #333333;
    --color-dark-3:          #555555;
    --color-white:           #ffffff;

    /* ── Fonts ── */
    --font-primary:  'Plus Jakarta Sans', sans-serif;
    --font-display:  'Plus Jakarta Sans', sans-serif;

    /* ── Font Sizes — Badges & Labels ── */
    --fs-micro:      9px;     /* exp-label, ticker star, decorative */
    --fs-tiny:       10px;    /* stat-label, card-tag, footer-contact-label */
    --fs-badge:      11px;    /* hero-badge, section-badge, cta-badge, testi-label, faq-label */
    --fs-label:      11.5px;  /* section-tag, why-card-label, footer-logo-sub */

    /* ── Font Sizes — UI / Interactive ── */
    --fs-btn:        12px;    /* btn-primary, btn-ghost, btn-view-more, between-cta-btn */
    --fs-nav:        13px;    /* nav-links, tab-btn, footer-links, body-sm */
    --fs-tag:        10px;    /* card-tag on service images */

    /* ── Font Sizes — Body / Content ── */
    --fs-caption:    12.5px;  /* service-features li, faq-answer (mobile), why-checklist li */
    --fs-body-sm:    13px;    /* footer-about, footer-links, between-cta-desc, faq-cta-text */
    --fs-body:       14px;    /* hw-main-desc, why-panel-text, faq-answer p, tc-text */
    --fs-body-md:    15px;    /* hero-subtitle, about-desc, section-subtitle, hw-panel-desc */

    /* ── Font Sizes — Component Titles ── */
    --fs-card-title: 16px;    /* service-title */
    --fs-comp-title: 20px;    /* why-panel-title, hw-panel-title base */

    /* ── Font Sizes — Section Headings (fluid) ── */
    --fs-heading-sm:  clamp(26px, 3vw, 40px);   /* faq-title, testi-title */
    --fs-heading-md:  clamp(28px, 3vw, 44px);   /* about-title, why-card-title */
    --fs-heading-lg:  clamp(30px, 3.5vw, 48px); /* section-title (services) */
    --fs-heading-xl:  clamp(32px, 3.8vw, 54px); /* hero-title, hw-main-title */
    --fs-heading-cta: clamp(32px, 4.5vw, 56px); /* cta-title */

    /* ── Font Sizes — Display / Numbers ── */
    --fs-stat-hero:   22px;   /* hero stat-number */
    --fs-stat-big:    36px;   /* hw-stat-num, cta-stat-number */
    --fs-exp-num:     20px;   /* about experience badge */
    --fs-panel-num:   68px;   /* hw-panel-num large watermark */
    --fs-index-wm:    46px;   /* service-index watermark */
    --fs-tbs-num:     clamp(46px, 6vw, 76px); /* testimonials big stat */

    /* ── Font Sizes — Footer ── */
    --fs-footer-logo: 16px;   /* footer-logo-name */
    --fs-footer-body: 13px;   /* footer-about, footer-links */
    --fs-footer-copy: 12px;   /* footer copyright */

    /* ── Font Sizes — Floating CTA ── */
    --fs-float-title: clamp(17px, 2vw, 24px); /* between-cta-title */

    /* ── Spacing ── */
    --nav-height:         100px;
    --section-padding:    80px 56px;
    --border-radius-sm:   6px;
    --border-radius-md:   12px;
    --border-radius-lg:   16px;
    --border-radius-pill: 50px;

    /* ── Shadows ── */
    --shadow-gold-sm:  0 4px 18px rgba(255, 207, 35, 0.35);
    --shadow-gold-md:  0 8px 32px rgba(255, 207, 35, 0.50);
    --shadow-gold-lg:  0 8px 36px rgba(255, 207, 35, 0.60);
    --shadow-dark-sm:  0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-dark-md:  0 12px 40px rgba(0, 0, 0, 0.12);
}


/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

.faq-question span {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: var(--nav-height);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
}

.nav-logo img {
    height: 125px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    flex: 1;
    justify-content: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-dark-3);
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent-dark);
}

/* Contact Button */
.nav-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-contact {
    text-decoration: none;
    font-size: var(--fs-btn);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 11px 26px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.35);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent));
    box-shadow: 0 8px 32px rgba(255, 207, 35, 0.50);
    transform: translateY(-2px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 20px 24px 28px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
}

.mobile-menu ul li a {
    display: block;
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark-3);
    padding: 12px 8px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--color-accent-dark);
    background: rgba(255, 207, 35, 0.07);
}

.mobile-contact-btn {
    display: block;
    margin-top: 8px;
    text-align: center;
    font-size: var(--fs-btn) !important;
    font-weight: 700 !important;
    letter-spacing: 0.09em !important;
    color: var(--color-dark) !important;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)) !important;
    padding: 13px !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.35);
}

/* ── Responsive ── */
@media (max-width: 1080px) {
    nav {
        padding: 0 28px;
    }

    .nav-links {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11.5px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        height: 80px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta .btn-contact {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 80px;
    }
}

@media (max-width: 400px) {
    .nav{
        height: 80px;
    }
    .nav-logo img {
        height: 80px;
    }
}
/* ══════════════════════════════════════
   HERO SECTION — GOLD WAVE DIVIDER
══════════════════════════════════════ */

.hero {
    position: relative;
    display: flex;
    height: calc(100vh - var(--nav-height));
    min-height: 620px;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: #ffffff;
}

/* ══ RIGHT — IMAGE ══ */
.hero-right-panel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.00) 0%,
            rgba(0, 0, 0, 0.28) 100%);
}

/* Gold grid texture on image */
.hero-right-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ══ LEFT — WHITE CONTENT PANEL ══ */
.hero-left-panel {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 60px 80px 60px 64px;
    background: #ffffff;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 500px;
    width: 100%;
}

/* ══ DESKTOP WAVE ══ */
.hero-wave--desktop {
    position: absolute;
    left: calc(65% - 230px);
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: block;
}

/* ══ MOBILE WAVE — hidden on desktop ══ */
.hero-wave--mobile {
    display: none;
}

.hero-wave--desktop svg,
.hero-wave--mobile svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ══ BADGE ══ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 199, 6, 0.10);
    border: 1px solid rgba(255, 199, 6, 0.40);
    color: #a07800;
    font-size: var(--fs-badge);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    width: fit-content;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.6); }
}

/* ══ TITLE ══ */
.hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-xl);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.hero-title-accent {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══ SUBTITLE ══ */
.hero-subtitle {
    font-size: var(--fs-body-md);
    color: #555555;
    line-height: 1.78;
    max-width: 420px;
}

/* ══ STATS ══ */
.hero-stats {
    display: flex;
    align-items: center;
    background: #f9f8f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    width: fit-content;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 22px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--fs-stat-hero);
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1;
}

.stat-label {
    font-size: 9.5px;
    font-weight: 600;
    color: #888888;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* ══ BUTTONS ══ */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    text-decoration: none;
    display: inline-block;
    font-size: var(--fs-btn);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 13px 32px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe97a, #ffcf23);
    box-shadow: 0 8px 32px rgba(255, 207, 35, 0.65);
    transform: translateY(-2px);
}

.btn-ghost {
    text-decoration: none;
    display: inline-block;
    font-size: var(--fs-btn);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #111111;
    background: transparent;
    padding: 13px 32px;
    border-radius: 5px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: #fcc706;
    color: #a07800;
    background: rgba(255, 207, 35, 0.07);
}

/* ══════════════════════════════════════
   TABLET (iPad) — top/bottom like mobile
══════════════════════════════════════ */

@media (max-width: 1024px) and (min-width: 769px) {

    .hero {
        flex-direction: column;
        height: calc(100dvh - var(--nav-height));
        min-height: 600px;
        margin-top: var(--nav-height);
        overflow: hidden;
        position: relative;
        background: #ffffff;
    }

    .hero-wave--desktop { display: none; }
    .hero-wave--mobile  { display: none; }

    .hero-left-panel {
        position: relative;
        z-index: 5;
        width: 100%;
        height: 50%;
        min-height: 300px;
        padding: 32px 48px 44px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .hero-left {
        max-width: 620px;
        width: 100%;
        gap: 18px;
    }

    .hero-right-panel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-right-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-right-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 42%,
            rgba(255, 255, 255, 0.6) 52%,
            rgba(255, 255, 255, 0.0) 62%
        );
    }

    .hero-badge    { font-size: 10px; padding: 6px 14px; }
    .hero-title    { font-size: clamp(28px, 4vw, 44px); line-height: 1.12; }
    .hero-subtitle { font-size: 14px; line-height: 1.7; max-width: 100%; }

    .hero-stats   { width: fit-content; }
    .stat-item    { padding: 13px 22px; }
    .stat-number  { font-size: 22px; }
    .stat-label   { font-size: 9px; }
    .stat-divider { height: 30px; }

    .btn-primary,
    .btn-ghost { padding: 12px 28px; font-size: 12px; }
}

/* ══════════════════════════════════════
   MOBILE HERO
══════════════════════════════════════ */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        height: calc(100dvh - var(--nav-height));
        min-height: 580px;
        margin-top: var(--nav-height);
        overflow: hidden;
        position: relative;
        background: #ffffff;
    }

    /* ── Hide both waves ── */
    .hero-wave--desktop { display: none; }
    .hero-wave--mobile  { display: none; }

    /* ── White Content Panel — top 50% ── */
    .hero-left-panel {
        position: relative;
        z-index: 5;
        width: 100%;
        height: 50%;
        min-height: 280px;
        padding: 20px 20px 32px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .hero-left {
        max-width: 100%;
        width: 100%;
        gap: 12px;
    }

    /* ── Image — absolute fills full hero ── */
    .hero-right-panel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-right-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* ── Clean gradient fade ── */
    .hero-right-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 42%,
            rgba(255, 255, 255, 0.6) 52%,
            rgba(255, 255, 255, 0.0) 62%
        );
    }

    .hero-badge    { font-size: 9px; padding: 5px 12px; letter-spacing: 0.10em; }
    .hero-title    { font-size: clamp(22px, 6vw, 32px); line-height: 1.15; }
    .hero-subtitle { font-size: 13px; line-height: 1.65; max-width: 100%; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    .hero-stats   { width: 100%; border-radius: 8px; }
    .stat-item    { flex: 1; padding: 10px 6px; gap: 3px; }
    .stat-number  { font-size: 18px; }
    .stat-label   { font-size: 8px; letter-spacing: 0.07em; }
    .stat-divider { height: 24px; }

    .hero-actions { display: flex; flex-direction: row; gap: 8px; width: 100%; }

    .btn-primary,
    .btn-ghost { flex: 1; text-align: center; padding: 11px 10px; font-size: 11px; letter-spacing: 0.08em; }
}

/* ── Short phones ≤ 680px height ── */
@media (max-width: 768px) and (max-height: 680px) {

    .hero { min-height: 520px; }

    .hero-left-panel { padding: 14px 18px 26px; height: 54%; }

    .hero-right-panel::before {
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 46%,
            rgba(255, 255, 255, 0.5) 56%,
            rgba(255, 255, 255, 0.0) 65%
        );
    }

    .hero-left     { gap: 9px; }
    .hero-badge    { font-size: 8.5px; padding: 4px 10px; }
    .hero-title    { font-size: clamp(19px, 6vw, 26px); }
    .hero-subtitle { font-size: 12px; -webkit-line-clamp: 2; }
    .stat-number   { font-size: 16px; }
    .stat-item     { padding: 9px 5px; }
    .stat-label    { font-size: 7.5px; }
    .stat-divider  { height: 22px; }

    .btn-primary,
    .btn-ghost { font-size: 10.5px; padding: 10px 8px; }
}

/* ── Tall phones 812px+ height ── */
@media (max-width: 768px) and (min-height: 812px) {

    .hero-left-panel { height: 48%; padding: 24px 22px 38px; }

    .hero-right-panel::before {
        background: linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 40%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.0) 60%
        );
    }

    .hero-left     { gap: 14px; }
    .hero-title    { font-size: clamp(24px, 6vw, 34px); }
    .hero-subtitle { -webkit-line-clamp: unset; overflow: visible; font-size: 13.5px; }
    .stat-number   { font-size: 20px; }
    .stat-item     { padding: 12px 8px; }
}

/* ── Very small width ≤ 380px ── */
@media (max-width: 380px) {

    .hero-left-panel { padding: 14px 14px 28px; }
    .hero-left       { gap: 10px; }
    .hero-title      { font-size: 21px; }
    .hero-badge      { font-size: 8px; padding: 4px 10px; }
    .stat-number     { font-size: 16px; }
    .stat-item       { padding: 9px 3px; }
    .stat-label      { font-size: 7px; }

    .btn-primary,
    .btn-ghost { font-size: 10px; padding: 9px 6px; }
}

/* ── Landscape mobile ── */
@media (max-width: 1024px) and (orientation: landscape) and (max-height: 500px) {

    .hero {
        flex-direction: row;
        height: calc(100dvh - var(--nav-height));
        min-height: unset;
    }

    .hero-wave--desktop { display: block; }
    .hero-right-panel::before { display: none; }

    .hero-left-panel {
        width: 52%;
        height: 100%;
        padding: 14px 20px 14px 18px;
        align-items: center;
        justify-content: center;
    }

    .hero-left     { gap: 8px; }
    .hero-title    { font-size: clamp(16px, 3.5vw, 20px); }
    .hero-subtitle { display: none; }
    .hero-badge    { display: none; }
    .hero-stats    { width: auto; }
    .stat-item     { padding: 7px 8px; }
    .stat-number   { font-size: 14px; }
    .stat-label    { font-size: 7px; }

    .btn-primary,
    .btn-ghost { flex: unset; padding: 8px 14px; font-size: 10px; }
}
/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */

.about {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ── Left Image Block ── */
.about-images {
    position: relative;
    flex: 1;
    min-width: 0;
}

.about-img-main {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

/* Gold top-right corner accent */
.about-img-main::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    border-top: 3px solid var(--color-accent-dark);
    border-right: 3px solid var(--color-accent-dark);
    border-radius: 0 10px 0 0;
    z-index: 1;
}

/* Secondary image — bottom left overlap */
.about-img-secondary {
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 210px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 4px solid #ffffff;
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.about-exp-badge {
    position: absolute;
    top: 32px;
    left: -28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(255, 207, 35, 0.45);
    z-index: 3;
    text-align: center;
    line-height: 1.2;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}

.exp-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #333333;
    margin-top: 3px;
}

/* ── Right Content ── */
.about-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-label);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.tag-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

/* Title */
.about-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.about-title-accent {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.about-desc {
    font-size: var(--fs-body-md);
    font-weight: 400;
    color: #555555;
    line-height: 1.80;
}

/* Trust Points */
.about-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.point-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 207, 35, 0.12);
    border: 1px solid rgba(255, 199, 6, 0.30);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
    margin-top: 1px;
}

.point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.point-text strong {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.01em;
}

.point-text span {
    font-size: var(--fs-body-sm);
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1080px) {
    .about-container {
        padding: 0 32px;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .about-container {
        gap: 48px;
    }

    .about-img-main img {
        height: 380px;
    }

    .about-img-secondary {
        width: 170px;
        bottom: -24px;
        left: -20px;
    }

    .about-img-secondary img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 70px 0 80px;
    }

    .about-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 64px;
    }

    .about-images {
        width: 100%;
        padding-bottom: 36px;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-secondary {
        width: 150px;
        bottom: 0px;
        left: -12px;
    }

    .about-img-secondary img {
        height: 110px;
    }

    .about-exp-badge {
        left: auto;
        right: 16px;
        top: 16px;
        width: 84px;
        height: 84px;
    }

    .exp-number {
        font-size: 19px;
    }

    .about-content {
        gap: 20px;
    }

    .about-title {
        font-size: clamp(26px, 7vw, 36px);
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-img-main img {
        height: 240px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-exp-badge {
        width: 76px;
        height: 76px;
    }
}


/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */

.why-ticker {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    overflow: hidden;
    padding: 13px 0;
    position: relative;
    z-index: 2;
}

.why-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.why-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    white-space: nowrap;
    padding: 0 28px;
}

.why-ticker-star {
    font-style: normal;
    font-size: var(--fs-micro);
    color: #111111;
    opacity: 0.45;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */

.why-us {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 56px;
    overflow: hidden;
}

/* Background image — top 50% only */
.why-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
}

.why-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.why-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.232);
}

/* ── WHITE Floating Card ── */
.why-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 48px 48px 44px;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
    filter: drop-shadow(0px 12px 40px rgba(0, 0, 0, 0.08)) drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.05));

}

/* Decorative circle — top right — subtle gold */
.why-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.06);
    border: 1.5px solid rgba(255, 207, 35, 0.18);
    pointer-events: none;
    z-index: 0;
}

/* Decorative circle — bottom left — very soft gold */
.why-card::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.04);
    border: 1.5px solid rgba(255, 207, 35, 0.12);
    pointer-events: none;
    z-index: 0;
}

/* Extra circle — mid bottom right — lightest */
.why-card-circle {
    position: absolute;
    bottom: 50px;
    right: 90px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.03);
    border: 1px solid rgba(255, 207, 35, 0.10);
    pointer-events: none;
    z-index: 0;
}

/* All direct children above circles */
.why-card-header,
.why-tabs,
.why-panels {
    position: relative;
    z-index: 1;
}

/* ── Card Header ── */
.why-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.why-card-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-badge);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.why-label-dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent-dark);
}

.why-card-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.20;
    letter-spacing: -0.01em;
    margin: 0;
}

.why-highlight {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card-desc {
    font-size: var(--fs-body-md);
    color: #666666;
    line-height: 1.80;
    max-width: 540px;
    margin: 0;
}

/* ── Tabs ── */
.why-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.why-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 0, 0, 0.13);
    background: #f9f8f6;
    color: #666666;
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.why-tab--active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: #111111;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.40);
}

.why-tab:hover:not(.why-tab--active) {
    border-color: rgba(255, 199, 6, 0.45);
    color: var(--color-accent-dark);
    background: rgba(255, 207, 35, 0.05);
}

/* ── Panels ── */
.why-panels {
    width: 100%;
}

.why-panel {
    display: none;
}

.why-panel--active {
    display: block;
}

.why-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Panel Image */
.why-panel-img {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.why-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-panel-img:hover img {
    transform: scale(1.04);
}

/* Panel Content */
.why-panel-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-panel-title {
    font-family: var(--font-display);
    font-size: var(--fs-comp-title);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
}

.why-panel-text {
    font-size: var(--fs-body);
    color: #666666;
    line-height: 1.78;
    margin: 0;
}

/* Checklist */
.why-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #444444;
    line-height: 1.4;
}

.why-checklist li svg {
    width: 15px;
    height: 15px;
    min-width: 15px;
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1080px) {
    .why-us {
        padding: 60px 28px;
    }

    .why-card {
        padding: 40px 32px;
    }
}

@media (max-width: 968px) {
    .why-panel-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-panel-img {
        height: 220px;
    }

    .why-bg-img {
        height: 40%;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 40px 20px;
    }

    .why-card {
        padding: 28px 20px;
        gap: 22px;
        border-radius: 14px;
    }

    .why-card-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .why-card-desc {
        font-size: 13.5px;
    }

    .why-checklist {
        grid-template-columns: 1fr;
    }

    .why-tab {
        padding: 8px 16px;
        font-size: 11.5px;
    }

    .why-bg-img {
        height: 30%;
    }

    .why-panel-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .why-tabs {
        gap: 6px;
    }

    .why-tab {
        padding: 7px 13px;
        font-size: 10.5px;
    }

    .why-checklist li {
        font-size: var(--fs-caption);
    }

    .why-ticker-item {
        font-size: 12px;
        padding: 0 20px;
    }
}

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */

.services {
    padding: 100px 64px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle gold grid background texture */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ══ SECTION HEADER ══ */
.services-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 199, 6, 0.10);
    border: 1px solid rgba(255, 199, 6, 0.38);
    color: #a07800;
    font-size: var(--fs-badge);  
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    width: fit-content;
}

.section-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fcc706;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-lg);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.title-accent {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--fs-body-md);
    color: #666666;
    line-height: 1.75;
    max-width: 520px;
    text-align: center;
}

/* ══ TAB BUTTONS ══ */
.services-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 52px;
    background: #f4f3f1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 5px;
    width: fit-content;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: none;
    border-radius: 7px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #888888;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.tab-btn svg {
    transition: color 0.25s ease;
    flex-shrink: 0;
}

.tab-btn:hover {
    color: #444444;
}

.tab-btn.active {
    background: #ffffff;
    color: #0f0f0f;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.tab-btn.active svg {
    color: #c89a00;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #fcc706, #e6a800);
    border-radius: 2px;
}

/* ══ TAB PANELS ══ */
.tab-panel {
    display: none;
    position: relative;
    z-index: 1;
    animation: fadeSlideUp 0.35s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══ SERVICES GRID ══ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ══ SERVICE CARD ══ */
.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* Gold top border on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffcf23, #fcc706, #e6a800);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
}

/* ── CARD IMAGE ── */
.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.00) 30%,
        rgba(0, 0, 0, 0.50) 100%);
}

/* Tag on image */
.card-tag {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: var(--fs-tag);           /* matches hero-badge, testi-label tiny tags */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
}

/* ── CARD CONTENT ── */
.service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    position: relative;
}

/* Index watermark */
.service-index {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--font-display);
    font-size: var(--fs-index-wm);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.service-card:hover .service-index {
    color: rgba(200, 154, 0, 0.12);
}

/* Icon */
.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 199, 6, 0.10);
    border: 1px solid rgba(255, 199, 6, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a00;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: rgba(255, 199, 6, 0.18);
    border-color: rgba(255, 199, 6, 0.5);
}

/* Title */
.service-title {
    font-family: var(--font-display);
    font-size: var(--fs-card-title);
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Description */
.service-desc {
    font-size: var(--fs-body-sm);
    color: #666666;
    line-height: 1.72;
}

/* Feature List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-features li {
    font-size: var(--fs-caption);
    color: #444444;
    font-weight: 500;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fcc706;
}

/* ══ VIEW MORE BUTTON ══ */
.services-view-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: var(--fs-btn);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 14px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 207, 35, 0.40);
}

.btn-view-more:hover {
    background: linear-gradient(135deg, #ffe97a, #ffcf23);
    box-shadow: 0 8px 36px rgba(255, 207, 35, 0.60);
    transform: translateY(-2px);
    gap: 16px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1280px) {
    .services { padding: 80px 48px; }
}

@media (max-width: 1080px) {
    .services { padding: 80px 36px; }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services { padding: 64px 20px; }
    .services-header { margin-bottom: 32px; gap: 12px; }
    .services-tabs { margin-bottom: 36px; }

    .tab-btn {
        padding: 11px 20px;
        font-size: 11.5px;
        gap: 6px;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .section-subtitle { font-size: 13.5px; }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-image { height: 180px; }

    .service-card-content {
        padding: 20px;
        gap: 10px;
    }

    .service-title { font-size: 15px; }
    .service-desc  { font-size: 12.5px; }

    .services-view-more { margin-top: 32px; }

    .btn-view-more {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 11.5px;
    }
}

@media (max-width: 400px) {
    .tab-btn {
        padding: 10px 16px;
        font-size: 11px;
    }

    .tab-btn svg { display: none; }

    .service-index  { font-size: 36px; }
    .service-title  { font-size: 15px; }
    .service-features li { font-size: 12px; }
}

/* ══════════════════════════════════════
   HOW WE WORK SECTION
══════════════════════════════════════ */

.how-work {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 64px 0;
    overflow: hidden;
}

/* ── FULL BACKGROUND ── */
.hw-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hw-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Medium dark warm overlay — image shows clearly */
.hw-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 3, 0.55);
}

/* Subtle gold grid on dark */
.how-work::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* ── MAIN WRAP ── */
.hw-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

/* ══════════════════════════════════════
   LEFT SIDE
══════════════════════════════════════ */

.hw-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 120px;
}

.hw-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hw-label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #ffcf23, #fcc706);
    border-radius: 2px;
    flex-shrink: 0;
}

.hw-label-text {
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fcc706;
}

.hw-main-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-xl); /* clamp(32px, 3.8vw, 54px) — was clamp(36px, 4vw, 58px) */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.10;
    letter-spacing: -0.02em;
    margin: 0;
}

.hw-title-gold {
    background: linear-gradient(90deg, #ffcf23, #e6a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hw-main-desc {
    font-size: var(--fs-body);      /* 14px — was 14.5px */
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.78;
    margin: 0;
}

/* ── VERTICAL NAV ── */
.hw-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
}

.hw-nav-line {
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.hw-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 0;
    text-align: left;
    position: relative;
    transition: all 0.25s ease;
}

.hw-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: absolute;
    left: -17px;
}

.hw-nav-label {
    font-size: 12.5px;              /* was 13px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.40);
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.hw-nav-item.active .hw-nav-dot {
    background: #fcc706;
    border-color: #fcc706;
    box-shadow: 0 0 0 4px rgba(255, 207, 35, 0.25);
}

.hw-nav-item.active .hw-nav-label {
    color: #fcc706;
    font-weight: 700;
}

.hw-nav-item:hover .hw-nav-label {
    color: rgba(255, 255, 255, 0.80);
}

/* ══════════════════════════════════════
   RIGHT SIDE — PANELS
══════════════════════════════════════ */

.hw-right {
    position: relative;
    min-height: 500px;
}

.hw-panel {
    display: none;
    animation: hwFadeIn 0.4s ease forwards;
}

.hw-panel.active {
    display: block;
}

@keyframes hwFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hw-panel-inner {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.25),
        0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ── PANEL TOP ROW ── */
.hw-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hw-panel-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 199, 6, 0.15);
    border: 1px solid rgba(255, 199, 6, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcc706;
    transition: all 0.3s ease;
}

.hw-panel-icon svg {
    width: 28px;
    height: 28px;
}

.hw-panel-inner:hover .hw-panel-icon {
    background: rgba(255, 199, 6, 0.25);
    border-color: rgba(255, 199, 6, 0.60);
    transform: scale(1.05);
}

.hw-panel-num {
    font-family: var(--font-display);
    font-size: var(--fs-panel-num);  /* 68px — was 80px */
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1;
    letter-spacing: -3px;
    user-select: none;
}

.hw-panel-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 34px); /* was clamp(24px, 2.5vw, 36px) */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.hw-panel-desc {
    font-size: var(--fs-body-md);    /* 15px — was 15px ✓ */
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.82;
    margin: 0;
}

/* Tags */
.hw-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hw-panel-tags span {
    font-size: 11px;                 /* was 11.5px */
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(255, 207, 35, 0.40);
}

/* Panel Image */
.hw-panel-img {
    border-radius: 14px;
    overflow: hidden;
    height: 220px;
    margin-top: 4px;
}

.hw-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hw-panel-img:hover img {
    transform: scale(1.04);
}

/* ══════════════════════════════════════
   BOTTOM STATS BAR
══════════════════════════════════════ */

.hw-stats-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-top: 64px;
    background: rgba(255, 199, 6, 0.10);
    border: 1px solid rgba(255, 199, 6, 0.22);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hw-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

/* ── Num + suffix perfectly aligned ── */
.hw-stat-num-wrap {
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.hw-stat-num {
    font-family: var(--font-display);
    font-size: var(--fs-stat-big);   /* 36px — was 42px */
    font-weight: 700;
    color: #fcc706;
    line-height: 1;
    letter-spacing: -1px;
}

.hw-stat-suffix {
    font-family: var(--font-display);
    font-size: 18px;                 /* was 20px */
    font-weight: 700;
    color: #fcc706;
    line-height: 1;
}

.hw-stat-label {
    font-size: 10.5px;               /* was 11px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hw-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 199, 6, 0.20);
    flex-shrink: 0;
    align-self: center;
}

/* ══════════════════════════════════════
   RESPONSIVE — HOW WE WORK
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .how-work {
        padding: 80px 36px 0;
    }
    .hw-wrap {
        gap: 48px;
        grid-template-columns: 280px 1fr;
    }
    .hw-stats-bar {
        padding: 28px 36px;
    }
}

@media (max-width: 968px) {
    .how-work {
        padding: 72px 24px 0;
    }
    .hw-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hw-left {
        position: static;
    }
    .hw-nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
        gap: 8px;
    }
    .hw-nav-line {
        display: none;
    }
    .hw-nav-dot {
        display: none;
    }
    .hw-nav-item {
        padding: 8px 18px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.14);
    }
    .hw-nav-item.active {
        background: #fcc706;
        border-color: #fcc706;
    }
    .hw-nav-item.active .hw-nav-label {
        color: #111111;
    }
    .hw-nav-label {
        color: rgba(255, 255, 255, 0.55);
        font-size: 11.5px;           /* was 12px */
    }
    .hw-stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        border-radius: 14px 14px 0 0;
        padding: 28px 24px;
    }
    .hw-stat-divider {
        display: none;
    }
    .hw-stat-item {
        min-width: 40%;
    }
}

@media (max-width: 640px) {
    .how-work {
        padding: 60px 16px 0;
    }
    .hw-panel-inner {
        padding: 28px 22px;
    }
    .hw-panel-num {
        font-size: 50px;             /* was 56px */
    }
    .hw-panel-title {
        font-size: clamp(20px, 6vw, 28px); /* was clamp(22px, 6vw, 30px) */
    }
    .hw-panel-desc {
        font-size: 13.5px;           /* was 14px */
    }
    .hw-panel-img {
        height: 180px;
    }
    .hw-stats-bar {
        padding: 24px 16px;
        gap: 20px;
        margin-top: 40px;
    }
    .hw-stat-num {
        font-size: 30px;             /* was 32px */
    }
    .hw-stat-suffix {
        font-size: 15px;             /* was 16px */
    }
    .hw-stat-item {
        min-width: 40%;
    }
    .hw-main-desc {
        font-size: 13.5px;           /* was 14px */
    }
}

@media (max-width: 480px) {
    .how-work {
        padding: 48px 14px 0;
    }
    .hw-main-title {
        font-size: clamp(28px, 8vw, 40px); /* was clamp(30px, 8vw, 42px) */
    }
    .hw-panel-inner {
        padding: 22px 18px;
        gap: 16px;
    }
    .hw-panel-icon {
        width: 50px;
        height: 50px;
    }
    .hw-panel-icon svg {
        width: 22px;
        height: 22px;
    }
    .hw-panel-tags span {
        font-size: var(--fs-tiny);   /* 10px — was 10.5px */
        padding: 5px 12px;
    }
    .hw-stat-num {
        font-size: 26px;             /* was 28px */
    }
    .hw-stat-suffix {
        font-size: 13px;             /* was 14px */
    }
    .hw-stat-label {
        font-size: 9.5px;            /* was 10px */
    }
    .hw-stat-item {
        min-width: 45%;
    }
}

@media (max-width: 360px) {
    .how-work {
        padding: 40px 12px 0;
    }
    .hw-panel-inner {
        padding: 18px 14px;
    }
    .hw-panel-title {
        font-size: 18px;             /* was 20px */
    }
    .hw-panel-desc {
        font-size: var(--fs-caption); /* 12.5px — was 13px */
    }
    .hw-stat-num {
        font-size: 22px;             /* was 24px */
    }
    .hw-stat-suffix {
        font-size: 11px;             /* was 12px */
    }
    .hw-stat-label {
        font-size: 8.5px;            /* was 9px */
    }
    .hw-stat-item {
        min-width: 45%;
    }
}

/* ══════════════════════════════════════
   CTA BANNER SECTION
══════════════════════════════════════ */

.cta-banner {
    position: relative;
    padding: 110px 64px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ── BACKGROUND IMAGE ── */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay */
.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.221) 0%,
            rgba(20, 16, 5, 0.658) 50%,
            rgba(10, 10, 10, 0.821) 100%);
}

/* Gold grid texture over dark */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Gold radial glow — top center */
.cta-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 207, 35, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ── CONTENT ── */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* ── BADGE ── */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 199, 6, 0.12);
    border: 1px solid rgba(255, 199, 6, 0.35);
    color: #fcc706;
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
}

.cta-badge svg {
    color: #fcc706;
    flex-shrink: 0;
}

/* ── HEADLINE ── */
.cta-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-cta); /* clamp(32px, 4.5vw, 56px) — was clamp(36px, 5vw, 62px) */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.cta-title-accent {
    background: linear-gradient(90deg, #ffcf23, #fcc706, #e6a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SUBTITLE ── */
.cta-subtitle {
    font-size: var(--fs-body-md);   /* 15px — was 16px */
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.78;
    max-width: 580px;
}

/* ── TRUST BADGES ── */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;              /* was 13px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

.trust-item svg {
    color: #fcc706;
    flex-shrink: 0;
}

/* ── CTA BUTTONS ── */
.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12.5px;              /* was 13px */
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 16px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 207, 35, 0.45);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #ffe97a, #ffcf23);
    box-shadow: 0 10px 40px rgba(255, 207, 35, 0.65);
    transform: translateY(-2px);
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12.5px;              /* was 13px */
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    padding: 15px 40px;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s ease;
}

.cta-btn-ghost:hover {
    border-color: #fcc706;
    color: #fcc706;
    background: rgba(255, 207, 35, 0.07);
    transform: translateY(-2px);
}

/* ── STATS ROW ── */
.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 680px;
}

.cta-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 24px 20px;
}

.cta-stat-number {
    font-family: var(--font-display);
    font-size: 28px;                /* was 30px */
    font-weight: 700;
    color: #fcc706;
    line-height: 1;
}

.cta-stat-label {
    font-size: 10.5px;              /* was 11px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cta-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.10);
    flex-shrink: 0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .cta-banner {
        padding: 90px 40px;
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 72px 24px;
    }
    .cta-content {
        gap: 22px;
    }
    .cta-trust {
        gap: 16px;
    }
    .trust-item {
        font-size: 11.5px;          /* was 12px */
    }
    .cta-stats {
        max-width: 100%;
    }
    .cta-stat {
        padding: 18px 12px;
    }
    .cta-stat-number {
        font-size: 22px;            /* was 24px */
    }
    .cta-stat-label {
        font-size: var(--fs-tiny);  /* 10px — was 9.5px */
    }
    .cta-stat-divider {
        height: 36px;
    }
}

@media (max-width: 540px) {
    .cta-banner {
        padding: 60px 20px;
    }
    .cta-btn-primary,
    .cta-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: var(--fs-btn);   /* 12px */
    }
    .cta-actions {
        width: 100%;
    }
    .cta-trust {
        gap: 12px;
    }
    .trust-item {
        font-size: 11px;
    }
    .cta-stats {
        flex-wrap: wrap;
        border-radius: 10px;
    }
    .cta-stat {
        min-width: 45%;
        padding: 16px 10px;
    }
    .cta-stat-divider {
        display: none;
    }
    .cta-stat-number {
        font-size: 20px;            /* was 22px */
    }
}

@media (max-width: 360px) {
    .cta-title {
        font-size: clamp(26px, 8vw, 34px); /* was clamp(28px, 8vw, 36px) */
    }
    .cta-subtitle {
        font-size: var(--fs-body-sm); /* 13px — was 13.5px */
    }
    .cta-stat {
        min-width: 100%;
    }
}


/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */

.testimonials {
    background: #ffffff;
    padding: 100px 64px 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle gold grid texture */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Gold radial glow top-right */
.testimonials::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 207, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ══ TOP ROW ══ */
.testi-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 56px;
    position: relative;
    z-index: 1;
}

.testi-top-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
}

.testi-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a07800;
}

.testi-label-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fcc706;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.testi-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm); /* clamp(26px, 3vw, 40px) — was clamp(28px, 3vw, 46px) */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.testi-highlight {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testi-desc {
    font-size: var(--fs-body-md);   /* 15px — was 15px ✓ */
    color: #666666;
    line-height: 1.80;
    margin: 0;
    max-width: 480px;
}

/* ── BIG STAT ── */
.testi-big-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.tbs-number {
    font-family: var(--font-display);
    font-size: var(--fs-tbs-num);   /* clamp(46px, 6vw, 76px) — was clamp(52px, 7vw, 88px) */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1;
    letter-spacing: -3px;
}

.tbs-percent {
    color: #fcc706;
    font-size: 0.60em;
}

.tbs-label {
    font-size: 12.5px;              /* was 13px */
    font-weight: 600;
    color: #999999;
    text-align: right;
    letter-spacing: 0.04em;
}

/* ══ CONTENT PANEL ══ */
.testi-white-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.08),
        0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ══ LEFT IMAGE ══ */
.testi-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    height: 100%;
    background: #ffffff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.10),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.testi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.testi-img-wrap:hover img {
    transform: scale(1.04);
}

.testi-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.00) 0%,
            rgba(10, 10, 10, 0.60) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Floating badge on image */
.testi-img-badge {
    position: absolute;
    bottom: 16px;
    left: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    color: #111111;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    box-shadow: 0 6px 24px rgba(255, 207, 35, 0.50);
    z-index: 2;
}

.tsb-num {
    font-family: var(--font-display);
    font-size: 26px;                /* was 28px */
    font-weight: 700;
    line-height: 1;
    color: #111111;
}

.tsb-text {
    font-size: 10.5px;              /* was 11px */
    font-weight: 600;
    color: rgba(0, 0, 0, 0.60);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ══ RIGHT CARD WRAP ══ */
.testi-card-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.testi-swiper {
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.testi-swiper .swiper-wrapper {
    align-items: stretch;
}

.testi-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

/* ══ TESTIMONIAL CARD ══ */
.testi-card {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #fcc706;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Decorative gold circle */
.testi-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.05);
    border: 1px solid rgba(255, 207, 35, 0.10);
    pointer-events: none;
    z-index: 0;
}

/* ── TOP ROW ── */
.tc-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.tc-quote-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 207, 35, 0.40);
}

.tc-quote-icon svg {
    width: 20px;
    height: 20px;
}

.tc-stars {
    font-size: 16px;                /* was 17px */
    color: #fcc706;
    letter-spacing: 3px;
    line-height: 1;
}

/* ── CATEGORY ── */
.tc-category {
    display: inline-block;
    width: fit-content;
    background: rgba(255, 199, 6, 0.10);
    color: #a07800;
    font-size: 10.5px;              /* was 11px */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 199, 6, 0.28);
    position: relative;
    z-index: 1;
}

/* ── REVIEW TEXT ── */
.tc-text {
    font-size: var(--fs-body);      /* 14px — was 14.5px */
    color: #555555;
    line-height: 1.85;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* ── AUTHOR ROW ── */
.tc-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.tc-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #fcc706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.tc-author-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tc-author-info strong {
    font-size: 13.5px;              /* was 14px */
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tc-author-info span {
    font-size: 11.5px;              /* was 12px */
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── NAV BUTTONS ── */
.tc-nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.testi-prev,
.testi-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testi-prev svg,
.testi-next svg {
    width: 14px;
    height: 14px;
}

.testi-prev:hover,
.testi-next:hover {
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    border-color: #fcc706;
    color: #111111;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 207, 35, 0.50);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .testimonials {
        padding: 80px 36px 80px;
    }
}

@media (max-width: 968px) {
    .testimonials {
        padding: 80px 24px 80px;
    }
    .testi-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 40px;
    }
    .testi-big-stat {
        align-items: flex-start;
    }
    .tbs-label {
        text-align: left;
    }
    .testi-white-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testi-img-wrap {
        min-height: 260px;
        height: 260px;
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 64px 20px 64px;
    }
    .testi-card {
        padding: 24px 20px;
    }
    .tc-nav-btns {
        display: none;
    }
    .testi-img-wrap {
        min-height: 220px;
        height: 220px;
    }
    .tc-text {
        font-size: var(--fs-body-sm); /* 13px — was 13.5px */
    }
    .testi-desc {
        font-size: 13.5px;            /* was 14px */
    }
    .testi-top {
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 52px 16px 52px;
    }
    .testi-img-wrap {
        min-height: 190px;
        height: 190px;
    }
    .testi-card {
        padding: 20px 16px;
        gap: 14px;
    }
    .tc-quote-icon {
        width: 40px;
        height: 40px;
    }
    .testi-top {
        padding-bottom: 24px;
    }
    .tbs-number {
        font-size: clamp(42px, 12vw, 68px); /* was clamp(44px, 12vw, 72px) */
    }
}

@media (max-width: 360px) {
    .testi-card {
        padding: 16px 14px;
        gap: 12px;
    }
    .tc-stars {
        font-size: 13px;              /* was 14px */
    }
    .tc-text {
        font-size: var(--fs-caption); /* 12.5px — was 13px */
    }
}

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */

.faq {
    background: #ffffff;
    padding: 100px 64px;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Decorative background circles */
.faq-bg-circle {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.05);
    border: 1px solid rgba(255, 207, 35, 0.08);
    pointer-events: none;
    z-index: 0;
}

.faq-bg-circle2 {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.04);
    border: 1px solid rgba(255, 207, 35, 0.07);
    pointer-events: none;
    z-index: 0;
}

/* ── MAIN WRAP ── */
.faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   LEFT SIDE
══════════════════════════════════════ */

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 120px;
}

.faq-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a07800;
}

.faq-label-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fcc706;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.faq-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm); /* clamp(26px, 3vw, 40px) — was clamp(28px, 3vw, 44px) */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.faq-highlight {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-desc {
    font-size: var(--fs-body-md);   /* 15px — was 15px ✓ */
    color: #666666;
    line-height: 1.80;
    margin: 0;
}

/* ── CTA BOX ── */
.faq-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 18px 20px;
}

.faq-cta-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 207, 35, 0.40);
}

.faq-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-cta-text strong {
    font-size: var(--fs-body-sm);   /* 13px — was 13.5px */
    font-weight: 700;
    color: #0f0f0f;
}

.faq-cta-text span {
    font-size: 11.5px;              /* was 12px */
    color: #888888;
}

.faq-cta-btn {
    text-decoration: none;
    font-size: 11px;                /* was 11.5px */
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 10px 20px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(255, 207, 35, 0.40);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 207, 35, 0.55);
}

/* ── STATS ── */
.faq-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    overflow: hidden;
}

.faq-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 16px;
    text-align: center;
}

.faq-stat-num {
    font-family: var(--font-display);
    font-size: 24px;                /* was 26px */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1;
    letter-spacing: -0.5px;
}

.faq-stat-label {
    font-size: var(--fs-tiny);      /* 10px — was 10.5px */
    font-weight: 600;
    color: #999999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.faq-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    align-self: center;
}

/* ══════════════════════════════════════
   RIGHT SIDE — ACCORDION
══════════════════════════════════════ */

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── SINGLE ITEM ── */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── QUESTION BUTTON ── */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
}

.faq-question span {
    font-size: 15px;                /* was 15.5px */
    font-weight: 600;
    color: #0f0f0f;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.faq-item.active .faq-question span {
    color: #a07800;
}

/* Icon box */
.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    border-color: #fcc706;
    color: #111111;
    box-shadow: 0 3px 10px rgba(255, 207, 35, 0.40);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

/* ── ANSWER ── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: var(--fs-body);      /* 14px — was 14.5px */
    color: #555555;
    line-height: 1.82;
    margin: 0;
    padding-bottom: 24px;
    padding-right: 52px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .faq {
        padding: 80px 36px;
    }
    .faq-wrap {
        gap: 56px;
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 968px) {
    .faq {
        padding: 80px 24px;
    }
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .faq-left {
        position: static;
    }
    .faq-stats {
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .faq {
        padding: 64px 20px;
    }
    .faq-title {
        font-size: clamp(24px, 7vw, 34px); /* was clamp(26px, 7vw, 36px) */
    }
    .faq-desc {
        font-size: 13.5px;          /* was 14px */
    }
    .faq-question span {
        font-size: var(--fs-body);  /* 14px — was 14.5px */
    }
    .faq-answer p {
        font-size: 13.5px;          /* was 14px */
        padding-right: 0;
    }
    .faq-cta {
        flex-wrap: wrap;
        gap: 12px;
    }
    .faq-cta-btn {
        width: 100%;
        text-align: center;
    }
    .faq-stats {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 52px 16px;
    }
    .faq-question {
        padding: 20px 0;
    }
    .faq-question span {
        font-size: 13.5px;          /* was 14px */
    }
    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    .faq-stat-num {
        font-size: 20px;            /* was 22px */
    }
    .faq-stat-label {
        font-size: var(--fs-micro); /* 9px — was 9.5px */
    }
    .faq-cta-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {
    .faq {
        padding: 44px 14px;
    }
    .faq-question span {
        font-size: var(--fs-body-sm); /* 13px — was 13.5px */
    }
    .faq-answer p {
        font-size: var(--fs-caption); /* 12.5px — was 13px */
    }
}

/* =====================================
   FLOATING CTA
===================================== */

.between-cta {
    position: relative;
    z-index: 4;
    margin-top: 40px;
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.between-cta-inner {
    pointer-events: auto;
    max-width: 1200px;
    width: calc(100% - 64px);
    background: linear-gradient(135deg, #ffcf23, #ffb321);
    border-radius: 20px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.between-cta-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.between-cta-label {
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7b5300;
}

.between-cta-title {
    font-family: var(--font-display);
    font-size: var(--fs-float-title); /* clamp(17px, 2vw, 24px) — was clamp(20px, 2.3vw, 28px) */
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
}

.between-cta-highlight {
    background: linear-gradient(90deg, #c87c00, #8b4c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.between-cta-desc {
    font-size: var(--fs-body-sm);   /* 13px — was 13.5px */
    color: #5d4200;
    line-height: 1.7;
    margin: 4px 0 0;
    max-width: 520px;
}

.between-cta-right {
    flex-shrink: 0;
}

.between-cta-btn {
    text-decoration: none;
    font-size: 11.5px;              /* was 12px */
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111111;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.between-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30);
}

/* =====================================
   FOOTER
===================================== */

.footer {
    background: #0b0d10;
    color: #f5f5f5;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── Main Footer ── */
.footer-main {
    position: relative;
    z-index: 1;
    padding: 48px 64px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* ── Brand Column ── */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;                /* was 18px */
    font-weight: 700;
    color: #111111;
    box-shadow: 0 6px 16px rgba(255, 207, 35, 0.45);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: var(--fs-footer-logo); /* 16px — was 17px */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 11px;                /* was 11.5px */
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.3;
}

.footer-about {
    font-size: var(--fs-footer-body); /* 13px — was 13px ✓ */
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.75;
    margin: 0;
}

/* ── Social Buttons ── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: #ffcf23;
    border-color: #ffcf23;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 207, 35, 0.40);
}

/* ── Generic Column ── */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-heading {
    font-size: 10.5px;              /* was 11px */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Footer Links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    text-decoration: none;
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links a::before {
    content: '›';
    font-size: 14px;                /* was 15px */
    color: var(--color-accent-dark);
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffcf23;
    gap: 8px;
}

.footer-links a:hover::before {
    transform: translateX(2px);
}

/* ── Contact Column ── */
.footer-col-contact {
    gap: 14px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 207, 35, 0.12);
    border: 1px solid rgba(255, 207, 35, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcf23;
    flex-shrink: 0;
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: var(--fs-tiny);      /* 10px — was 10.5px */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
}

.footer-contact-body a {
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-body a:hover {
    color: #ffcf23;
}

.footer-contact-body span:not(.footer-contact-label) {
    font-size: var(--fs-footer-body); /* 13px — was 13.5px */
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ── Bottom Bar ── */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 64px 20px;
    margin-top: 8px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    font-size: var(--fs-footer-copy); /* 12px — was 14px */
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    line-height: 1.6;
}

.footer-powered {
    color: #ffcf23;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-powered:hover {
    color: #ffe27a;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1080px) {
    .between-cta-inner {
        width: calc(100% - 48px);
        padding: 24px 26px;
    }
    .footer-main {
        padding: 40px 36px 32px;
    }
    .footer-bottom {
        padding: 14px 36px 18px;
    }
    .footer-inner {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .between-cta {
        margin-top: 32px;
        margin-bottom: -32px;
    }
    .between-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px;
    }
    .between-cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    .footer {
        padding-top: 56px;
    }
    .footer-main {
        padding: 28px 24px 28px;
    }
    .footer-bottom {
        padding: 14px 24px 18px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .between-cta-inner {
        width: calc(100% - 32px);
        padding: 20px 18px;
    }
    .between-cta-title {
        font-size: clamp(15px, 6vw, 20px); /* was clamp(18px, 6vw, 24px) */
    }
    .between-cta-desc {
        font-size: var(--fs-caption);  /* 12.5px — was 13px */
    }
    .footer {
        padding-top: 52px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-main {
        padding: 24px 16px 24px;
    }
    .footer-bottom {
        padding: 12px 16px 16px;
    }
    .footer-copy {
        font-size: 11px;            /* was 11.5px */
    }
}


/* ══════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════ */

.stt-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: 0 6px 24px rgba(255, 207, 35, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.30s ease,
        visibility 0.30s ease,
        transform 0.30s ease,
        box-shadow 0.25s ease;
}

.stt-btn.stt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.stt-btn:hover {
    box-shadow: 0 10px 32px rgba(255, 207, 35, 0.60);
    transform: translateY(-3px);
}

@media (max-width: 560px) {
    .stt-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}


/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}