@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
══════════════════════════════════════ */

.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 gradient 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);
    }
}


/* ══════════════════════════════════════
   ABOUT US HERO — WHITE BACKGROUND
══════════════════════════════════════ */

.ab-hero {
    position: relative;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* ── Decorative background circles ── */
.ab-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;
}

.ab-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 */
.ab-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 ── */
.ab-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
══════════════════════════════════════ */

.ab-hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Label */
.ab-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ab-hero-label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #ffcf23, #fcc706);
    border-radius: 2px;
    flex-shrink: 0;
}

.ab-hero-label-text {
    font-size: var(--fs-badge);     /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a07800;
}

/* Title */
.ab-hero-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md); /* clamp(28px, 3vw, 46px) — was clamp(32px, 3.5vw, 52px) */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.ab-hero-gold {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.ab-hero-desc {
    font-size: var(--fs-body);      /* 14px — was 14.5px */
    color: #555555;
    line-height: 1.82;
    margin: 0;
}

/* Key points */
.ab-hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-body-sm);   /* 13px — was 13.5px */
    color: #333333;
    font-weight: 500;
}

.ab-hero-point-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(255, 207, 35, 0.15);
    border: 1px solid rgba(255, 207, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a00;
    flex-shrink: 0;
}

/* CTAs */
.ab-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ab-hero-btn-primary {
    text-decoration: none;
    font-size: 11.5px;              /* was 12px */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111111;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    padding: 13px 28px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(255, 207, 35, 0.40);
    transition: all 0.25s ease;
}

.ab-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 207, 35, 0.55);
}

.ab-hero-btn-secondary {
    text-decoration: none;
    font-size: 11.5px;              /* was 12px */
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #333333;
    background: transparent;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.ab-hero-btn-secondary:hover {
    border-color: #fcc706;
    color: #a07800;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   RIGHT — IMAGE CARD STACK
══════════════════════════════════════ */

.ab-hero-right {
    position: relative;
    height: 520px;
}

/* Main Image */
.ab-hero-img-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.ab-hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ab-hero-img-main:hover img {
    transform: scale(1.04);
}

/* Floating Secondary Image */
.ab-hero-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.ab-hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Experience Badge */
.ab-hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(255, 207, 35, 0.50);
}

.ab-hero-badge-num {
    font-family: var(--font-display);
    font-size: 26px;                /* was 28px */
    font-weight: 700;
    color: #111111;
    line-height: 1;
    letter-spacing: -1px;
}

.ab-hero-badge-text {
    font-size: var(--fs-micro);     /* 9px — was 10px */
    font-weight: 700;
    color: #5d4200;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.4;
}

/* Projects Card */
.ab-hero-projects-card {
    position: absolute;
    bottom: 72px;
    left: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.10),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.ab-hero-projects-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 207, 35, 0.15);
    border: 1px solid rgba(255, 207, 35, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a00;
    flex-shrink: 0;
}

.ab-hero-projects-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-hero-projects-num {
    font-family: var(--font-display);
    font-size: 19px;                /* was 20px */
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1;
}

.ab-hero-projects-label {
    font-size: var(--fs-tiny);      /* 10px — was 10.5px */
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .ab-hero-wrap {
        gap: 56px;
        padding: 0 36px;
    }
    .ab-hero-right {
        height: 460px;
    }
    .ab-hero-img-float {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 900px) {
    .ab-hero {
        padding: 72px 0 60px;
        min-height: auto;
    }
    .ab-hero-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }
    .ab-hero-right {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .ab-hero {
        padding: 56px 0 48px;
    }
    .ab-hero-wrap {
        padding: 0 16px;
        gap: 36px;
    }
    .ab-hero-title {
        font-size: clamp(26px, 8vw, 38px); /* was clamp(28px, 8vw, 40px) */
    }
    .ab-hero-desc {
        font-size: 13.5px;          /* was 14px */
    }
    .ab-hero-right {
        height: 340px;
    }
    .ab-hero-img-float {
        width: 140px;
        height: 140px;
    }
    .ab-hero-badge-num {
        font-size: 20px;            /* was 22px */
    }
    .ab-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .ab-hero-btn-primary,
    .ab-hero-btn-secondary {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ab-hero-right {
        height: 300px;
    }
    .ab-hero-img-float {
        width: 120px;
        height: 120px;
    }
    .ab-hero-badge {
        top: 14px;
        right: 14px;
        padding: 12px 14px;
    }
    .ab-hero-badge-num {
        font-size: 18px;            /* was 20px */
    }
    .ab-hero-projects-card {
        bottom: 50px;
        left: 12px;
        padding: 10px 14px;
    }
    .ab-hero-projects-num {
        font-size: 16px;            /* was 17px */
    }
}

@media (max-width: 400px) {
    .ab-hero-right {
        height: 260px;
    }
    .ab-hero-img-float {
        width: 100px;
        height: 100px;
    }
}
/* ══════════════════════════════════════
   VISION MISSION STRATEGY SECTION
══════════════════════════════════════ */

.vms {
    background: #f9f8f5;
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.vms-bg-circle1 {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 207, 35, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.vms-bg-circle2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 207, 35, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ── WRAP ── */
.vms-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
    position: relative;
    z-index: 1;
}

/* ══ SECTION HEADER ══ */
.vms-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.vms-header-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vms-label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #ffcf23, #fcc706);
    border-radius: 2px;
}

.vms-label-text {
    font-size: var(--fs-badge);       /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a07800;
}

.vms-header-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-sm);  /* clamp(26px, 3vw, 40px) — was clamp(28px, 3.5vw, 46px) */
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.vms-title-gold {
    background: linear-gradient(90deg, #e6a800, #c88c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vms-header-desc {
    font-size: var(--fs-body-md);     /* 15px — was 15px ✓ */
    color: #666666;
    line-height: 1.78;
    max-width: 520px;
    margin: 0;
}

/* ══ TOP ROW — VISION + MISSION ══ */
.vms-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* ── SHARED CARD ── */
.vms-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vms-card:hover {
    transform: translateY(-4px);
}

/* Vision — dark card */
.vms-vision {
    background: #0b0d10;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* Mission — gold card */
.vms-mission {
    background: linear-gradient(135deg, #ffcf23 0%, #f5b800 100%);
    box-shadow: 0 16px 48px rgba(255, 207, 35, 0.35);
}

/* Ghost background text */
.vms-card-bg-text {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--font-display);
    font-size: 96px;                  /* decorative watermark — intentionally large */
    font-weight: 700;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
}

.vms-vision .vms-card-bg-text { color: rgba(255, 255, 255, 0.219); }
.vms-mission .vms-card-bg-text { color: rgba(255, 255, 255, 0.219); }

/* Card inner */
.vms-card-inner {
    position: relative;
    z-index: 1;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Icon wrap */
.vms-card-icon-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vms-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vms-vision .vms-card-icon {
    background: rgba(255, 207, 35, 0.12);
    border: 1px solid rgba(255, 207, 35, 0.28);
    color: #fcc706;
}

.vms-mission .vms-card-icon {
    background: rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111111;
}

.vms-card-tag {
    font-size: var(--fs-badge);       /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vms-vision .vms-card-tag { color: #fcc706; }
.vms-mission .vms-card-tag { color: #7b5300; }

/* Card Title */
.vms-card-title {
    font-family: var(--font-display);
    font-size: var(--fs-card-title);  /* clamp(17px, 1.8vw, 22px) — was clamp(18px, 2vw, 24px) */
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.vms-vision .vms-card-title { color: #ffffff; }
.vms-mission .vms-card-title { color: #111111; }

/* Card Desc */
.vms-card-desc {
    font-size: var(--fs-body);        /* 14px — was 14px ✓ */
    line-height: 1.82;
    margin: 0;
}

.vms-vision .vms-card-desc { color: rgba(255, 255, 255, 0.65); }
.vms-mission .vms-card-desc { color: rgba(0, 0, 0, 0.65); }

/* Divider */
.vms-card-divider {
    height: 1px;
}

.vms-vision .vms-card-divider { background: rgba(255, 255, 255, 0.08); }
.vms-mission .vms-card-divider { background: rgba(0, 0, 0, 0.10); }

/* Pillars */
.vms-vision-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vms-pillar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-caption);     /* 12.5px — was 12.5px ✓ */
    font-weight: 600;
}

.vms-vision .vms-pillar { color: rgba(255, 255, 255, 0.75); }
.vms-mission .vms-pillar { color: rgba(0, 0, 0, 0.70); }

.vms-pillar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vms-vision .vms-pillar-dot { background: #fcc706; }
.vms-mission .vms-pillar-dot { background: rgba(0, 0, 0, 0.45); }

/* ══ STRATEGY SECTION ══ */
.vms-strategy {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 22px;
    padding: 40px 44px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Strategy header */
.vms-strategy-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vms-strategy-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffcf23, #fcc706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(255, 207, 35, 0.40);
}

.vms-strategy-tag {
    display: block;
    font-size: var(--fs-badge);       /* 11px — was 11px ✓ */
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a07800;
    margin-bottom: 4px;
}

.vms-strategy-title {
    font-family: var(--font-display);
    font-size: var(--fs-strategy-title); /* clamp(18px, 2vw, 25px) — was clamp(20px, 2.2vw, 28px) */
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Steps */
.vms-strategy-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vms-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px;
    background: #f9f8f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.vms-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffcf23, #fcc706);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vms-step:hover {
    border-color: rgba(255, 207, 35, 0.30);
    box-shadow: 0 6px 20px rgba(255, 207, 35, 0.12);
    transform: translateY(-2px);
}

.vms-step:hover::before {
    transform: scaleX(1);
}

.vms-step-num {
    font-family: var(--font-display);
    font-size: 32px;                  /* was 36px — decorative but toned down */
    font-weight: 700;
    color: rgba(0, 0, 0, 0.07);
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
    min-width: 50px;
}

.vms-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vms-step-title {
    font-size: 14.5px;                /* was 15px */
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
    line-height: 1.3;
}

.vms-step-desc {
    font-size: var(--fs-body-sm);     /* 13px — was 13px ✓ */
    color: #666666;
    line-height: 1.75;
    margin: 0;
}

.vms-step-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: rgba(255, 207, 35, 0.10);
    border: 1px solid rgba(255, 207, 35, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a00;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.vms-step:hover .vms-step-icon {
    background: rgba(255, 207, 35, 0.20);
    border-color: rgba(255, 207, 35, 0.40);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1080px) {
    .vms {
        padding: 80px 36px;
    }
}

@media (max-width: 900px) {
    .vms {
        padding: 80px 24px;
    }
    .vms-top-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vms-strategy {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .vms-strategy-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vms-strategy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .vms {
        padding: 64px 20px;
    }
    .vms-wrap {
        gap: 40px;
    }
    .vms-card-inner {
        padding: 28px 24px;
    }
    .vms-card-title {
        font-size: clamp(15px, 5vw, 20px); /* was clamp(17px, 5vw, 22px) */
    }
    .vms-card-desc {
        font-size: 13.5px;              /* was 13.5px ✓ */
    }
    .vms-step {
        flex-wrap: wrap;
        gap: 12px;
    }
    .vms-step-num {
        font-size: 26px;                /* was 28px */
        min-width: 36px;
    }
    .vms-strategy {
        padding: 24px 20px;
    }
    .vms-strategy-title {
        font-size: clamp(16px, 5vw, 22px); /* was clamp(18px, 5vw, 24px) */
    }
}

@media (max-width: 480px) {
    .vms {
        padding: 52px 16px;
    }
    .vms-vision-pillars {
        gap: 10px;
    }
    .vms-card-icon {
        width: 46px;
        height: 46px;
    }
}

/* ══════════════════════════════════════
   OUR PROCESS SECTION
══════════════════════════════════════ */

.process {
    padding: 100px 64px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Background Grid */
.process-bg-grid {
    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;
}

.process-bg-glow1,
.process-bg-glow2 {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.process-bg-glow1 {
    top: -160px;
    left: -140px;
    background: radial-gradient(circle, rgba(255, 207, 35, 0.07) 0%, transparent 70%);
}

.process-bg-glow2 {
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, rgba(255, 207, 35, 0.06) 0%, transparent 70%);
}

/* Wrap */
.process-wrap {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ══════════════
   HEADER
══════════════ */
.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
}

.process-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-label-line {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
    flex-shrink: 0;
}

.process-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);
}

.process-title {
    font-family: var(--font-display);
    font-size: var(--fs-heading-md);    /* clamp(28px, 3.5vw, 46px) — was clamp(32px, 4vw, 52px) */
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.process-title-gold {
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-header-right {
    padding-bottom: 6px;
}

.process-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;
    max-width: 460px;
    margin-left: auto;
}

/* ══════════════
   TIMELINE ROW
══════════════ */
.process-timeline {
    width: 100%;
}

.process-timeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 32px;
}

/* Horizontal line behind nodes */
.process-timeline-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(32px + 28px);
    right: calc(32px + 28px);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 207, 35, 0.30) 10%,
        rgba(255, 207, 35, 0.60) 50%,
        rgba(255, 207, 35, 0.30) 90%,
        transparent 100%
    );
    z-index: 0;
}

/* Node wrapper */
.process-node-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* Circle node */
.process-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid rgba(255, 207, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    box-shadow: 0 4px 20px rgba(255, 207, 35, 0.15);
    transition: all 0.35s ease;
    cursor: default;
}

.process-node:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-color: var(--color-accent);
    color: var(--color-dark);
    box-shadow: 0 6px 24px rgba(255, 207, 35, 0.45);
    transform: translateY(-3px) scale(1.05);
}

/* Step number */
.process-node-num {
    font-family: var(--font-display);
    font-size: 12.5px;                  /* was 13px */
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-dark-2);
    line-height: 1;
}

/* Step label */
.process-node-label {
    font-family: var(--font-primary);
    font-size: var(--fs-badge);         /* 11px — was 11px ✓ */
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark-3);
    white-space: nowrap;
}

/* Connector between nodes */
.process-connector {
    flex: 1;
    height: 2px;
    margin-top: 27px;
    background: linear-gradient(
        90deg,
        rgba(255, 207, 35, 0.25),
        rgba(255, 207, 35, 0.50),
        rgba(255, 207, 35, 0.25)
    );
    align-self: flex-start;
    position: relative;
    z-index: 0;
}

/* ══════════════
   CARDS TRACK
══════════════ */
.process-track {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr 1fr 1.4fr;
    gap: 18px;
    align-items: center;
}

/* ── Base Card ── */
.process-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dark-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

/* Gold top border on hover */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 207, 35, 0.25);
}

/* ── Card Image ── */
.process-card-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.process-card--big .process-card-img {
    height: 210px;
}

.process-card--small .process-card-img {
    height: 130px;
}

.process-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.process-card:hover .process-card-img img {
    transform: scale(1.06);
}

.process-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
}

/* ── Card Body ── */
.process-card-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.process-card--small .process-card-body {
    padding: 18px 18px 20px;
    gap: 10px;
}

/* ── Card Title ── */
.process-card-title {
    font-family: var(--font-display);
    font-size: 17px;                    /* was 19px */
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.process-card--small .process-card-title {
    font-size: 15.5px;                  /* was 17px */
}

/* ── Card Description ── */
.process-card-desc {
    font-family: var(--font-primary);
    font-size: var(--fs-body-sm);       /* 13px — was 13.5px */
    font-weight: 400;
    color: var(--color-dark-3);
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

.process-card--small .process-card-desc {
    font-size: 12.5px;                  /* was 13px */
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Card Tags ── */
.process-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px;
}

.process-card-tags span {
    font-family: var(--font-primary);
    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: 5px 12px;
    border-radius: var(--border-radius-pill);
    white-space: nowrap;
    line-height: 1;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1280px) {
    .process {
        padding: 80px 48px;
    }
}

@media (max-width: 1024px) {
    .process {
        padding: 80px 36px;
    }
    .process-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-desc {
        margin-left: 0;
        max-width: 560px;
    }
    .process-track {
        grid-template-columns: 1.3fr 1fr 1.3fr 1fr 1.3fr;
        gap: 14px;
    }
    .process-timeline-track {
        padding: 0 16px;
    }
}

@media (max-width: 860px) {
    .process {
        padding: 72px 28px;
    }
    .process-node-label {
        display: none;
    }
    .process-node {
        width: 48px;
        height: 48px;
    }
    .process-node svg {
        width: 18px;
        height: 18px;
    }
    .process-timeline-track::before {
        top: 23px;
    }
    .process-connector {
        margin-top: 23px;
    }
    .process-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        align-items: stretch;
    }
    .process-card--big .process-card-img,
    .process-card--small .process-card-img {
        height: 170px;
    }
    .process-card--small .process-card-body {
        padding: 20px 16px 22px;
    }
    .process-card--small .process-card-desc {
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }
    .process-card--big .process-card-title,
    .process-card--small .process-card-title {
        font-size: 15.5px;              /* was 17px */
    }
}

@media (max-width: 640px) {
    .process {
        padding: 60px 20px;
    }
    .process-wrap {
        gap: 40px;
    }
    .process-timeline {
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .process-timeline-track {
        min-width: 480px;
        padding: 0 12px;
    }
    .process-node {
        width: 44px;
        height: 44px;
    }
    .process-node svg {
        width: 17px;
        height: 17px;
    }
    .process-timeline-track::before {
        top: 21px;
    }
    .process-connector {
        margin-top: 21px;
    }
    .process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        align-items: stretch;
    }
    .process-card--big .process-card-img,
    .process-card--small .process-card-img {
        height: 155px;
    }
    .process-card-body {
        padding: 20px 16px 22px;
        gap: 10px;
    }
    .process-card--small .process-card-body {
        padding: 20px 16px 22px;
    }
    .process-card--big .process-card-title,
    .process-card--small .process-card-title {
        font-size: 15px;                /* was 16px */
    }
    .process-card-desc,
    .process-card--small .process-card-desc {
        font-size: var(--fs-caption);   /* 12.5px — was 12.5px ✓ */
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 52px 16px;
    }
    .process-track {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .process-card--big .process-card-img,
    .process-card--small .process-card-img {
        height: 190px;
    }
    .process-card--small .process-card-desc {
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }
}

/* =====================================
   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);
}