@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;
    }
}


/* ══════════════════════════════════════
   PAGE BANNER — SHARED (all pages)
══════════════════════════════════════ */

.page-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: var(--nav-height, 72px);
}

/* Background Image */
.pb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pb-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay */
.pb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.50) 0%,
        rgba(8, 8, 8, 0.70) 60%,
        rgba(8, 8, 8, 0.88) 100%
    );
}

/* Gold grid texture */
.pb-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    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;
}

/* Content */
.pb-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 36px 64px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Breadcrumb */
.pb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pb-bread-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.pb-bread-link:hover {
    color: #fcc706;
}

.pb-bread-sep {
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
}

.pb-bread-current {
    font-size: 12px;
    font-weight: 700;
    color: #fcc706;
    letter-spacing: 0.04em;
}

/* Title */
.pb-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.pb-title-gold {
    background: linear-gradient(90deg, #ffcf23, #e6a800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.pb-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    max-width: 480px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .pb-content { padding: 32px 36px 32px; }
}

@media (max-width: 768px) {
    .page-banner { min-height: 240px; }
    .pb-content { padding: 28px 24px 28px; gap: 10px; }
    .pb-title { font-size: clamp(26px, 7vw, 38px); }
    .pb-subtitle { font-size: 13.5px; }
}

@media (max-width: 540px) {
    .page-banner { min-height: 220px; }
    .pb-content { padding: 24px 16px 24px; }
    .pb-title { font-size: clamp(24px, 8vw, 32px); }
    .pb-subtitle { font-size: 13px; max-width: 100%; }
}

@media (max-width: 400px) {
    .page-banner { min-height: 200px; }
    .pb-content { padding: 20px 14px 20px; }
    .pb-title { font-size: clamp(22px, 8vw, 28px); }
}



/* ══════════════════════════════════════
   CONSTRUCTION HERO SECTION
══════════════════════════════════════ */

.cn-hero {
    position: relative;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Decorative gold glow circles */
.cn-hero-circle1 {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 207, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cn-hero-circle2 {
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 207, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dot pattern background */
.cn-hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Main Wrap ── */
.cn-hero-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── LEFT Content ── */
.cn-hero-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Label */
.cn-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cn-hero-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.cn-hero-label-text {
    font-family: var(--font-primary);
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

/* Title */
.cn-hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);    /* clamp(28px, 3.5vw, 46px) — was clamp(32px, 4vw, 52px) */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.cn-hero-gold {
    background: linear-gradient(90deg, var(--color-accent-dark), #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.cn-hero-desc {
    font-family: var(--font-primary);
    font-size: var(--fs-body-md);       /* 15px — was 15px ✓ */
    font-weight: 400;
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
}

/* Key Points */
.cn-hero-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cn-hero-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cn-point-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 3px 10px rgba(255, 207, 35, 0.35);
}

.cn-point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cn-point-text strong {
    font-family: var(--font-primary);
    font-size: 13.5px;                  /* was 14px */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.cn-point-text span {
    font-family: var(--font-primary);
    font-size: var(--fs-body-sm);       /* 13px — was 13px ✓ */
    font-weight: 400;
    color: var(--color-dark-3);
    line-height: 1.6;
}

/* CTA Buttons */
.cn-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cn-hero-btn-primary {
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 11.5px;                  /* was 12px */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 14px 34px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold-sm);
}

.cn-hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent));
    box-shadow: var(--shadow-gold-md);
    transform: translateY(-2px);
}

.cn-hero-btn-secondary {
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 11.5px;                  /* was 12px */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: transparent;
    padding: 14px 34px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.cn-hero-btn-secondary:hover {
    border-color: var(--color-accent-dark);
    color: #a07800;
    background: rgba(255, 207, 35, 0.07);
}

/* ── RIGHT Image Stack ── */
.cn-hero-right {
    position: relative;
}

/* Main Image */
.cn-hero-img-main {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
    position: relative;
}

/* Gold corner accent on main image */
.cn-hero-img-main::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 68px;
    height: 68px;
    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;
}

.cn-hero-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cn-hero-img-main:hover img {
    transform: scale(1.03);
}

/* Floating Secondary Image */
.cn-hero-img-float {
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 4px solid #ffffff;
    z-index: 2;
}

.cn-hero-img-float img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cn-hero-img-float:hover img {
    transform: scale(1.05);
}

/* Floating Experience Badge */
.cn-hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 32px rgba(255, 207, 35, 0.40);
    z-index: 2;
}

.cn-hero-badge-num {
    font-family: var(--font-display);
    font-size: 28px;                    /* was 30px */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.cn-hero-badge-text {
    font-family: var(--font-primary);
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Floating Projects Card */
.cn-hero-projects-card {
    position: absolute;
    bottom: 50px;
    right: -24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 207, 35, 0.25);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.cn-hero-projects-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
}

.cn-hero-projects-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cn-hero-projects-num {
    font-family: var(--font-display);
    font-size: 19px;                    /* was 20px */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.cn-hero-projects-label {
    font-family: var(--font-primary);
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 600;
    color: var(--color-dark-3);
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .cn-hero-wrap { padding: 0 36px; gap: 52px; }
    .cn-hero-img-main img { height: 400px; }
}

@media (max-width: 860px) {
    .cn-hero-wrap { padding: 0 24px; gap: 40px; }
    .cn-hero-img-main img { height: 360px; }
    .cn-hero-img-float { width: 160px; left: -20px; bottom: -24px; }
    .cn-hero-badge { right: -10px; padding: 13px 16px; }
    .cn-hero-projects-card { right: -10px; }
}

@media (max-width: 768px) {
    .cn-hero {
        padding: 80px 0 100px;
        min-height: auto;
    }
    .cn-hero-wrap {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 0 20px;
    }
    .cn-hero-left { gap: 22px; }
    .cn-hero-title {
        font-size: clamp(26px, 7vw, 38px); /* was clamp(28px, 7vw, 40px) */
    }
    .cn-hero-right { margin-bottom: 40px; }
    .cn-hero-img-main img { height: 320px; }
    .cn-hero-img-float {
        width: 140px;
        bottom: -20px;
        left: -16px;
    }
    .cn-hero-img-float img { height: 100px; }
    .cn-hero-badge { top: 16px; right: 12px; }
    .cn-hero-projects-card { right: 12px; bottom: 40px; }
    .cn-hero-ctas { flex-direction: column; }
    .cn-hero-btn-primary,
    .cn-hero-btn-secondary {
        text-align: center;
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .cn-hero { padding: 60px 0 80px; }
    .cn-hero-wrap { padding: 0 16px; }
    .cn-hero-img-main img { height: 280px; }
    .cn-hero-img-float { width: 120px; }
    .cn-hero-badge { padding: 11px 13px; top: 12px; right: 10px; }
    .cn-hero-badge-num { font-size: 22px; }    /* was 24px */
    .cn-hero-badge-text { font-size: var(--fs-micro); } /* 9px — was 10px */
    .cn-hero-projects-card { bottom: 32px; right: 10px; padding: 10px 14px; }
    .cn-hero-projects-num { font-size: 16px; } /* was 17px */
}
/* ══════════════════════════════════════
   WHY CHOOSE OUR CONSTRUCTION
   Bento Grid Layout
══════════════════════════════════════ */

.wcc-section {
    background: #ffffff;
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
}

.wcc-section::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;
}

/* ══════════════════════════════════════
   HEADER — FIXED LAYOUT
══════════════════════════════════════ */

.wcc-header {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← was 1fr 1.2fr 1fr — caused title to wrap */
    align-items: end;
    gap: 48px;
}

.wcc-label {
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: 1 / -1;
}

.wcc-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.wcc-label-text {
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.wcc-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm); /* clamp(26px, 3vw, 40px) — was clamp(30px, 4vw, 50px) */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    grid-column: 1;                  /* stays in left column */
}

.wcc-title-gold {
    background: linear-gradient(90deg, var(--color-accent-dark), #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcc-subtitle {
    font-size: var(--fs-body-md);   /* 15px — was 15px ✓ */
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
    max-width: 460px;
    grid-column: 2;                  /* sits in right column alongside title */
    align-self: end;
}

/* ══════════════════════════════════════
   BENTO GRID
══════════════════════════════════════ */

.wcc-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
}

/* ══════════════════════════════════════
   GRID PLACEMENT
══════════════════════════════════════ */

.wcc-card--large {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 480px;
}

.wcc-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.wcc-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.wcc-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.wcc-card--wide        { grid-column: 1 / 3; grid-row: 3; }
.wcc-card--cmda        { grid-column: 3;     grid-row: 3; }

/* ══════════════════════════════════════
   BASE CARD
══════════════════════════════════════ */

.wcc-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
}

.wcc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

/* ══════════════════════════════════════
   CARD THEMES
══════════════════════════════════════ */

.wcc-card--dark {
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.wcc-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wcc-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.wcc-card--dark:hover .wcc-card-bg img {
    opacity: 0.5;
    transform: scale(1.04);
}

.wcc-card-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 100%
    );
}

.wcc-card--light {
    background: #f8f7f4;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.wcc-card--cta {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.wcc-card--dark2 {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

/* ══════════════════════════════════════
   CARD CONTENT
══════════════════════════════════════ */

.wcc-card-content {
    position: relative;
    z-index: 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

/* ══════════════════════════════════════
   ICONS
══════════════════════════════════════ */

.wcc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcc-icon--gold {
    background: rgba(255, 207, 35, 0.18);
    border: 1px solid rgba(255, 207, 35, 0.35);
    color: #ffcf23;
}

.wcc-icon--dark {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-dark);
    box-shadow: 0 4px 14px rgba(255, 207, 35, 0.35);
}

/* ══════════════════════════════════════
   TITLES
══════════════════════════════════════ */

.wcc-card-title {
    font-family: var(--font-display);
    font-size: var(--fs-card-title);    /* clamp(17px, 1.8vw, 22px) — was clamp(20px, 2.2vw, 26px) */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0;
}

.wcc-card--dark .wcc-card-title {
    color: #ffffff;
}

.wcc-card-title--dark { color: var(--color-dark); }

/* ══════════════════════════════════════
   DESCRIPTIONS
══════════════════════════════════════ */

.wcc-card-desc {
    font-size: var(--fs-body);          /* 14px — was 14px ✓ */
    color: var(--color-dark-3);
    line-height: 1.75;
    margin: 0;
}

.wcc-card--dark .wcc-card-desc {
    color: rgba(255, 255, 255, 0.80);
}

.wcc-card-desc--dark  { color: var(--color-dark-3); }
.wcc-card-desc--muted { color: var(--color-dark-3); }

/* ══════════════════════════════════════
   TAGS
══════════════════════════════════════ */

.wcc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.wcc-card-tags span {
    font-size: var(--fs-tiny);          /* 10px — was 10.5px */
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 4px 12px;
    border-radius: 50px;
}

/* ══════════════════════════════════════
   PROGRESS BARS
══════════════════════════════════════ */

.wcc-progress-wrap {
    padding: 0 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.wcc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;                  /* was 12px */
    font-weight: 600;
    color: var(--color-dark-3);
    margin-bottom: 4px;
}

.wcc-progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.wcc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 6px;
    transform-origin: left;
    transform: scaleX(0);
    animation: wccProgressGrow 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wccProgressGrow {
    to { transform: scaleX(1); }
}

/* ══════════════════════════════════════
   PRICING PILLS
══════════════════════════════════════ */

.wcc-pricing-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 36px 32px;
    margin-top: auto;
}

.wcc-pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;                  /* was 12px */
    font-weight: 600;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 7px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.wcc-pricing-pill svg {
    color: var(--color-accent-dark);
    flex-shrink: 0;
}

.wcc-pricing-pill:hover {
    border-color: var(--color-accent-dark);
    background: rgba(255, 207, 35, 0.08);
}

/* ══════════════════════════════════════
   FREE SITE VISIT — CTA LINK
══════════════════════════════════════ */

.wcc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: var(--fs-body-sm);       /* 13px — was 13px ✓ */
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 199, 6, 0.40);
    width: fit-content;
    transition: all 0.25s ease;
}

.wcc-cta-link:hover {
    color: #a07800;
    border-bottom-color: #a07800;
    gap: 12px;
}

/* ══════════════════════════════════════
   CMDA BADGES
══════════════════════════════════════ */

.wcc-cmda-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.wcc-cmda-badges span {
    font-size: var(--fs-tiny);          /* 10px — was 10.5px */
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 4px 12px;
    border-radius: 50px;
}

/* ══════════════════════════════════════
   TEAM GRID
══════════════════════════════════════ */

.wcc-team-grid {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 36px;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wcc-team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.wcc-team-num {
    font-family: var(--font-display);
    font-size: 22px;                    /* was 24px */
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1;
}

.wcc-team-role {
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 600;
    color: var(--color-dark-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.wcc-team-divider {
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.10);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════ */

.wcc-bottom-cta {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 48px auto 0;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .wcc-section { padding: 80px 36px; }
    .wcc-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 860px) {
    .wcc-section { padding: 80px 24px; }
    .wcc-grid { grid-template-columns: 1fr 1fr; }

    .wcc-card--large       { grid-column: 1 / 3; grid-row: auto; min-height: 340px; }
    .wcc-card:nth-child(2) { grid-column: 1;     grid-row: auto; }
    .wcc-card:nth-child(3) { grid-column: 2;     grid-row: auto; }
    .wcc-card:nth-child(4) { grid-column: 1 / 3; grid-row: auto; }
    .wcc-card--wide        { grid-column: 1 / 3; grid-row: auto; }
    .wcc-card--cmda        { grid-column: 1 / 3; grid-row: auto; }

    .wcc-header   { grid-template-columns: 1fr; }
    .wcc-subtitle { grid-column: 1; max-width: 100%; }
    .wcc-title    { font-size: clamp(24px, 5vw, 34px); }
}

@media (max-width: 600px) {
    .wcc-section { padding: 64px 16px; }
    .wcc-grid    { grid-template-columns: 1fr; gap: 14px; }

    .wcc-card--large,
    .wcc-card:nth-child(2),
    .wcc-card:nth-child(3),
    .wcc-card:nth-child(4),
    .wcc-card--wide,
    .wcc-card--cmda {
        grid-column: 1;
        grid-row: auto;
    }

    .wcc-card--large   { min-height: 300px; }
    .wcc-card-content  { padding: 24px; }
    .wcc-progress-wrap,
    .wcc-pricing-pills { padding: 0 24px 24px; }
    .wcc-team-grid     { padding: 20px 24px; }
    .wcc-bottom-cta    { flex-direction: column; align-items: stretch; }
    .wcc-bottom-cta a  { text-align: center; }
}

@media (max-width: 400px) {
    .wcc-section      { padding: 52px 14px; }
    .wcc-card-content { padding: 20px; }
    .wcc-card-title   { font-size: 18px; }   /* was 20px */
    .wcc-card-desc    { font-size: var(--fs-body-sm); } /* 13px — was 13px ✓ */
    .wcc-team-num     { font-size: 18px; }   /* was 20px */
    .wcc-team-role    { font-size: var(--fs-micro); }   /* 9px — was 10px */
}

/* ══════════════════════════════════════
   OUR CONSTRUCTION SERVICES
   4-Column Single Row
══════════════════════════════════════ */

.cs-section {
    background: #f4f3f0;
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
}

.cs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.cs-header {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.cs-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.cs-label-text {
    font-size: var(--fs-badge);         /* 11px */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.cs-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm);    /* clamp(26px, 3vw, 40px) */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
}

.cs-title-gold {
    background: linear-gradient(90deg, var(--color-accent-dark), #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-header-right {
    max-width: 400px;
}

.cs-desc {
    font-size: var(--fs-body-md);       /* 15px */
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
    text-align: right;
}

/* ══════════════════════════════════════
   GRID — 4 cards, 1 row
══════════════════════════════════════ */

.cs-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* ← the only layout change */
    gap: 24px;
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */

.cs-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;

    /* ← these three lines are the key addition */
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

/* ── Card Image ── */
.cs-card-img {
    position: relative;
    height: 190px;                      /* slightly reduced for 4-col — was 210px */
    overflow: hidden;
    flex-shrink: 0;
}

.cs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.cs-card:hover .cs-card-img img {
    transform: scale(1.06);
}

/* Step Number Badge */
.cs-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 12.5px;                  /* was 13px */
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 1;
}

/* Gold line reveal on hover */
.cs-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.cs-card:hover .cs-card-img::after {
    transform: scaleX(1);
}

/* ── Card Body ── */
.cs-card-body {
    padding: 22px 22px 26px;            /* was 28px 28px 32px — tighter for 4-col */
    display: flex;
    flex-direction: column;
    gap: 10px;                          /* was 12px */
    flex: 1;
}

/* ── Card Icon ── */
.cs-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(255, 207, 35, 0.35);
    flex-shrink: 0;
}

/* ── Card Title ── */
.cs-card-title {
    font-family: var(--font-display);
    font-size: 16px;                    /* was 22px — 4-col needs tighter titles */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 0;
}

/* ── Card Desc ── */
.cs-card-desc {
    font-size: 12.5px;                  /* was 13.5px */
    color: var(--color-dark-3);
    line-height: 1.72;
    margin: 0;
}

/* ── Card Points ── */
.cs-card-points {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;                           /* was 7px */
}

.cs-card-points li {
    font-size: 12px;                    /* was 12.5px */
    font-weight: 600;
    color: var(--color-dark);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.cs-card-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;                         /* was 6px */
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent-dark);
}

.cs-card-footer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    transition: gap 0.25s ease, color 0.25s ease;
}
.cs-card:hover .cs-card-footer {
    gap: 11px;
    color: #a07800;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .cs-section { padding: 80px 36px; }
    .cs-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cs-card-title { font-size: 17px; }
    .cs-card-desc  { font-size: 13px; }
}

@media (max-width: 860px) {
    .cs-section      { padding: 80px 24px; }
    .cs-header       { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cs-header-right { max-width: 100%; }
    .cs-desc         { text-align: left; }
}

@media (max-width: 560px) {
    .cs-section    { padding: 64px 16px; }
    .cs-grid       { grid-template-columns: 1fr; gap: 16px; }
    .cs-card-img   { height: 180px; }
    .cs-card-body  { padding: 20px 20px 24px; }
    .cs-card-title { font-size: 17px; }
    .cs-card-desc  { font-size: 13px; }
}
/* ══════════════════════════════════════
   CONSTRUCTION CTA BANNER
══════════════════════════════════════ */

.ccta-section {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 0;
}

/* ── Background Image ── */
.ccta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ccta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark overlay */
.ccta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.62) 0%,
        rgba(10, 10, 10, 0.72) 60%,
        rgba(10, 10, 10, 0.88) 100%
    );
}

/* ── Content ── */
.ccta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 780px;
    width: 100%;
}

/* Badge */
.ccta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(255, 207, 35, 0.40);
}

/* Title */
.ccta-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 52px); /* was clamp(36px, 5vw, 62px) */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.ccta-title-gold {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.ccta-subtitle {
    font-size: var(--fs-body-md);       /* 15px — was 16px */
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.80;
    margin: 0;
    max-width: 600px;
}

/* Trust Badges */
.ccta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.ccta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--fs-body-sm);       /* 13px — was 13px ✓ */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.ccta-trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Buttons */
.ccta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.ccta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-dark);
    font-size: 11.5px;                  /* was 13px */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(255, 207, 35, 0.45);
    transition: all 0.28s ease;
}

.ccta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 207, 35, 0.55);
}

.ccta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 11.5px;                  /* was 13px */
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(8px);
    transition: all 0.28s ease;
}

.ccta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

/* ── Stats Row ── */
.ccta-stats {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 28px 40px;
    gap: 0;
}

.ccta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.ccta-stat-num {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);  /* was clamp(26px, 3.5vw, 36px) */
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    display: flex;
    align-items: center;
}

.ccta-stat-plus {
    font-size: 0.60em;
    margin-left: 1px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: top;
}

.ccta-stat-label {
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.ccta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 860px) {
    .ccta-section   { min-height: auto; padding: 80px 20px 0; }
    .ccta-title     { font-size: clamp(26px, 5vw, 42px); } /* was clamp(30px, 5vw, 48px) */
    .ccta-subtitle  { font-size: 14px; }                   /* was 15px */
    .ccta-stats     { max-width: 100%; padding: 24px 20px; border-radius: 12px 12px 0 0; }
    .ccta-stat-num  { font-size: 24px; }                   /* was 26px */
}

@media (max-width: 600px) {
    .ccta-section   { padding: 64px 16px 0; }
    .ccta-trust     { gap: 14px 20px; }
    .ccta-buttons   { flex-direction: column; width: 100%; }
    .ccta-btn-primary,
    .ccta-btn-secondary { width: 100%; justify-content: center; }
    .ccta-stats     { flex-wrap: wrap; gap: 20px; padding: 24px 16px; border-radius: 12px 12px 0 0; }
    .ccta-stat      { flex: 0 0 calc(50% - 10px); }
    .ccta-stat-divider { display: none; }
}

@media (max-width: 380px) {
    .ccta-title     { font-size: 26px; }  /* was 28px */
    .ccta-subtitle  { font-size: 13.5px; } /* was 14px */
    .ccta-stat      { flex: 0 0 100%; }
}
/* ══════════════════════════════════════
   FAQ SECTION
   White Background Accordion
══════════════════════════════════════ */

.faq-section {
    background: #ffffff;
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
}

/* Subtle texture */
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 207, 35, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 207, 35, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.faq-header {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 64px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.faq-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    flex-shrink: 0;
}

.faq-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.faq-label-text {
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    white-space: nowrap;
}

.faq-header-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

.faq-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm);    /* clamp(26px, 3vw, 40px) — was clamp(32px, 4vw, 52px) */
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0;
    flex-shrink: 0;
}

.faq-title-gold {
    background: linear-gradient(90deg, var(--color-accent-dark), #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: var(--fs-body-md);       /* 15px — was 15px ✓ */
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
    max-width: 360px;
    align-self: flex-end;
}

/* ── FAQ Grid ── */
.faq-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

/* ── FAQ 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);
}

.faq-col:last-child .faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ── Question Button ── */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;                    /* was 24px */
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
}

.faq-q span {
    font-family: var(--font-primary);
    font-size: 14.5px;                  /* was 16px */
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    transition: color 0.25s ease;
}

.faq-q:hover span {
    color: var(--color-accent-dark);
}

/* Icon circle */
.faq-icon {
    width: 34px;                        /* was 36px */
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
    transition: all 0.30s ease;
}

.faq-q:hover .faq-icon {
    border-color: var(--color-accent-dark);
    color: var(--color-accent-dark);
}

/* Active state */
.faq-item.faq-active .faq-q span {
    color: var(--color-accent-dark);
}

.faq-item.faq-active .faq-icon {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-color: var(--color-accent);
    color: var(--color-dark);
    transform: rotate(180deg);
}

/* ── Answer ── */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.30s ease;
}

.faq-a p {
    font-size: var(--fs-body);          /* 14px — was 14.5px */
    color: var(--color-dark-3);
    line-height: 1.80;
    margin: 0;
    padding-bottom: 22px;              /* was 24px */
}

.faq-item.faq-active .faq-a {
    max-height: 300px;
}

/* ── Bottom CTA ── */
.faq-cta {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 64px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 36px 48px;
    background: #f8f7f4;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-cta p {
    font-family: var(--font-display);
    font-size: 18px;                    /* was 20px */
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .faq-section { padding: 80px 36px; }
    .faq-wrap    { gap: 0 32px; }
}

@media (max-width: 860px) {
    .faq-section { padding: 80px 24px; }
    .faq-wrap    { grid-template-columns: 1fr; gap: 0; }
    .faq-col:last-child .faq-item:first-child { border-top: none; }
    .faq-header  { flex-direction: column; gap: 24px; }
    .faq-header-content { flex-direction: column; align-items: flex-start; gap: 16px; }
    .faq-subtitle { max-width: 100%; }
    .faq-cta     { flex-direction: column; text-align: center; padding: 28px 24px; }
    .faq-cta p   { font-size: 16px; }  /* was 20px at mobile */
}

@media (max-width: 600px) {
    .faq-section  { padding: 64px 16px; }
    .faq-q span   { font-size: 13.5px; } /* was 15px */
    .faq-a p      { font-size: 13px; }   /* was 14px */
    .faq-icon     { width: 30px; height: 30px; } /* was 32px */
    .faq-cta      { margin-top: 48px; }
    .faq-cta a    { width: 100%; text-align: center; justify-content: center; }
}


/* =====================================
   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);
}