/* ================================================
   HOPE GLOBAL — About Us v2 Stylesheet
   Concept: Voyage — Full-Width Centered Hero
   Tokens from style.css: --navy, --accent, --sky, --white, etc.
   ================================================ */


/* ================================================
   HERO — Voyage: Full-width centered command center
   ================================================ */
.au-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #060f2e 0%, #0d1b4b 42%, #0a1638 68%, #07122b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

/* ── Decorative backgrounds ── */
.au-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.au-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
}

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

.au-glow-topleft {
    width: 700px; height: 700px;
    left: -250px; top: -200px;
    background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 60%);
}

.au-glow-bottomright {
    width: 500px; height: 500px;
    right: -100px; bottom: -150px;
    background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 60%);
}

.au-glow-center {
    width: 900px; height: 500px;
    left: 50%; top: 45%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 65%);
}

/* Animated trade-route lines */
.au-routes-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.au-route-line { animation: au-route-flow 18s linear infinite; }
.au-rl-1 { animation-duration: 16s; }
.au-rl-2 { animation-duration: 22s; animation-delay: -7s; }
.au-rl-3 { animation-duration: 20s; animation-delay: -11s; }

@keyframes au-route-flow {
    0%   { stroke-dashoffset:  300; }
    100% { stroke-dashoffset: -300; }
}

/* Floating particles */
.au-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(96,165,250,0.65);
    border-radius: 50%;
    animation: au-float-p 9s ease-in-out infinite alternate;
}

.au-p-1 { left: 10%;  top: 28%; animation-duration: 9s; }
.au-p-2 { left: 26%;  top: 62%; animation-duration: 7s;  animation-delay: -2s; }
.au-p-3 { right: 15%; top: 32%; animation-duration: 11s; animation-delay: -4s; }
.au-p-4 { right: 30%; top: 68%; animation-duration: 8s;  animation-delay: -1s; }
.au-p-5 { left: 52%;  top: 18%; animation-duration: 10s; animation-delay: -3s; width: 3px; height: 3px; }

@keyframes au-float-p {
    0%   { transform: translate(0,0)        scale(1);   opacity: 0.35; }
    50%  { transform: translate(14px,-20px) scale(1.4); opacity: 0.75; }
    100% { transform: translate(-9px,13px)  scale(0.8); opacity: 0.25; }
}

/* ── Main inner — centred column ── */
.au-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 7rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 1.75rem;
}

/* Eyebrow */
.au-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    width: fit-content;
    animation: fadeUp 0.6s 0.1s var(--ease) both;
}

.au-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

/* Headline */
.au-headline {
    font-family: var(--font-head);
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.au-hl-line {
    display: block;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
    animation: fadeUp 0.7s 0.2s var(--ease) both;
}

.au-hl-line:nth-child(2) { animation-delay: 0.32s; }

.au-hl-accent {
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.au-hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.8;
    max-width: 580px;
    animation: fadeUp 0.7s 0.44s var(--ease) both;
}

.au-hero-desc strong { color: var(--white); font-weight: 600; }

/* Buttons */
.au-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.56s var(--ease) both;
}

.au-btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--dur), border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.au-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    box-shadow: 0 8px 28px rgba(37,99,235,0.45);
    transform: translateY(-2px);
}
.au-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur);
}
.au-btn-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--white);
    transform: translateY(-2px);
}
.au-btn-primary svg { width: 18px; height: 18px; }

/* ── Feature tag pills ── */
.au-hero-tags {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0 1.5rem 3rem;
    animation: fadeUp 0.7s 0.72s var(--ease) both;
}

.au-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.75);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.au-hero-tag svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    flex-shrink: 0;
}

.au-hero-tag:hover {
    background: rgba(37,99,235,0.18);
    border-color: rgba(37,99,235,0.5);
    color: var(--white);
}


/* ================================================
   OUR STORY — Split with Image 1 on the LEFT
   ================================================ */
.au-story-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.au-story-section::before {
    content: '';
    position: absolute;
    right: -200px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.au-story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image column */
.au-story-img-col { position: relative; }

.au-story-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.au-story-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 64px rgba(13,27,75,0.15), 0 8px 24px rgba(13,27,75,0.08);
    transition: transform 0.5s var(--ease);
}

.au-story-img-wrap:hover .au-story-img { transform: scale(1.01); }

/* Corner accent */
.au-story-img-corner {
    position: absolute;
    bottom: -12px; right: -12px;
    width: 80px; height: 80px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    border-radius: 0 0 16px 0;
    pointer-events: none;
}

/* Floating chip */
.au-story-chip {
    position: absolute;
    top: -18px; left: 20px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(13,27,75,0.3);
    z-index: 2;
}

.au-chip-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

/* Copy column */
.au-story-copy { display: flex; flex-direction: column; gap: 1rem; }

/* Centre the eyebrow pill and heading in the copy column */
.au-story-copy > .pg-eyebrow { align-self: center; }
.au-story-copy > .pg-heading { text-align: center; }

.au-story-para {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.au-story-para strong { color: var(--text-dark); font-weight: 600; }

/* Story pillars — full-width 3-column row below the split */
.au-story-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 3rem 0 1.5rem;
}

/* CTA row centred below pillars */
.au-story-cta-row {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.au-story-pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0.8rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color var(--dur), transform var(--dur);
}

.au-story-pillar:hover {
    border-color: rgba(37,99,235,0.25);
    transform: translateX(4px);
}

.au-sp-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform var(--dur);
}

.au-story-pillar:hover .au-sp-icon { transform: scale(1.1) rotate(-5deg); }

.au-sp-icon svg { width: 18px; height: 18px; }

.au-sp-icon-1 { background: linear-gradient(135deg, #fde68a, #fbbf24); }
.au-sp-icon-1 svg { stroke: #92400e; }
.au-sp-icon-2 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.au-sp-icon-2 svg { stroke: #1e3a8a; }
.au-sp-icon-3 { background: linear-gradient(135deg, #86efac, #22c55e); }
.au-sp-icon-3 svg { stroke: #14532d; }

.au-story-pillar strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.au-story-pillar span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ================================================
   MISSION / VISION / VALUES — Elegant numbered cards
   ================================================ */
.au-mvv-section {
    background: #f4f7ff;
    position: relative;
    overflow: hidden;
}

.au-mvv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(13,27,75,0.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.au-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.au-mvv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}

.au-mvv-card:hover {
    box-shadow: 0 20px 56px rgba(13,27,75,0.1);
    transform: translateY(-6px);
    border-color: rgba(37,99,235,0.2);
}

/* Ghost number watermark */
.au-mvv-num {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: var(--font-head);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(13,27,75,0.05);
    pointer-events: none;
    user-select: none;
}

/* Icon ring — base */
.au-mvv-icon-ring {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform var(--dur);
}

.au-mvv-card:hover .au-mvv-icon-ring { transform: scale(1.08) rotate(-5deg); }
.au-mvv-icon-ring svg { width: 24px; height: 24px; }

.au-mvv-ring-1 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.au-mvv-ring-1 svg { stroke: #1e3a8a; }

.au-mvv-ring-3 { background: linear-gradient(135deg, #86efac, #22c55e); }
.au-mvv-ring-3 svg { stroke: #14532d; }

/* Centre (featured) card — normal white with accent top border */
.au-mvv-card-center {
    background: var(--white);
    border-top: 3px solid var(--accent);
}

.au-mvv-card-center .au-mvv-num  { color: rgba(13,27,75,0.05); }
.au-mvv-card-center .au-mvv-title { color: var(--navy); }
.au-mvv-card-center .au-mvv-desc  { color: var(--text-muted); }
.au-mvv-card-center:hover { border-top-color: var(--accent); }

/* Icon ring for centre card — blue solid */
.au-mvv-ring-2 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
}
.au-mvv-ring-2 svg { stroke: var(--white); }

.au-mvv-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.au-mvv-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
}

/* Bottom accent bar */
.au-mvv-bar {
    height: 3px;
    border-radius: 2px;
    margin-top: 0.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.au-mvv-card:hover .au-mvv-bar { transform: scaleX(1); }
.au-mvv-bar-1 { background: linear-gradient(90deg, var(--accent), #60a5fa); }
.au-mvv-bar-2 { background: linear-gradient(90deg, var(--navy), var(--accent)); }
.au-mvv-bar-3 { background: linear-gradient(90deg, #22c55e, #86efac); }


/* ================================================
   STATS COUNTER BAND
   ================================================ */
.au-stats-band {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
}

.au-stats-band-bg {
    position: absolute; inset: 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: 48px 48px;
}

.au-stats-band::after {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
    pointer-events: none;
}

.au-stats-band-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.au-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.au-stats-item {
    flex: 1; min-width: 180px;
    text-align: center;
    padding: 1rem 2rem;
}

.au-stats-num {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.03em;
}

.au-stats-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.au-stats-divider {
    width: 1px; height: 65px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}


/* ================================================
   WHAT WE DO — Content left, Image 2 right
   ================================================ */
.au-wwd-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.au-wwd-section::before {
    content: '';
    position: absolute;
    left: -200px; top: 50%;
    transform: translateY(-50%);
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.au-wwd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Copy column */
.au-wwd-copy { display: flex; flex-direction: column; gap: 0.5rem; }

/* Full-width centred header above the WWD split */
.au-wwd-header {
    text-align: center;
    margin-bottom: 3rem;
}

.au-wwd-header .pg-eyebrow { display: inline-block; }
.au-wwd-header .pg-heading  { text-align: center; }
.au-wwd-header .pg-sub      { text-align: center; margin: 0 auto; max-width: 600px; }

/* Service list */
.au-svc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.au-svc-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: default;
    transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
    position: relative;
    overflow: hidden;
}

.au-svc-item::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: transparent;
    transition: background var(--dur);
}

.au-svc-item:hover,
.au-svc-item:focus {
    box-shadow: 0 10px 36px rgba(13,27,75,0.09);
    transform: translateX(5px);
    border-color: rgba(37,99,235,0.18);
    outline: none;
}

.au-svc-item:hover::after,
.au-svc-item:focus::after {
    background: var(--accent);
}

.au-svc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.au-svc-icon-box {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--dur);
}

.au-svc-item:hover .au-svc-icon-box { transform: scale(1.1) rotate(-5deg); }
.au-svc-icon-box svg { width: 20px; height: 20px; }

.au-svc-1 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.au-svc-1 svg { stroke: #1e3a8a; }
.au-svc-2 { background: linear-gradient(135deg, #fde68a, #fbbf24); }
.au-svc-2 svg { stroke: #92400e; }
.au-svc-3 { background: linear-gradient(135deg, #86efac, #22c55e); }
.au-svc-3 svg { stroke: #14532d; }

.au-svc-num {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(13,27,75,0.2);
    letter-spacing: 0.04em;
}

.au-svc-body { flex: 1; }

.au-svc-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.au-svc-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.au-wwd-cta { align-self: flex-start; }

/* Image column */
.au-wwd-img-col { position: relative; }

.au-wwd-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.au-wwd-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 24px 64px rgba(13,27,75,0.15), 0 8px 24px rgba(13,27,75,0.08);
    transition: transform 0.5s var(--ease);
}

.au-wwd-img-wrap:hover .au-wwd-img { transform: scale(1.01); }

/* Floating card on image */
.au-wwd-float {
    position: absolute;
    bottom: -18px; left: -22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(13,27,75,0.14);
    animation: floatBadge 4s ease-in-out infinite alternate;
    z-index: 2;
}

.au-wwd-float-icon { font-size: 1.6rem; }

.au-wwd-float strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.au-wwd-float span {
    font-size: 0.7rem;
    color: var(--text-muted);
}


/* ================================================
   RESPONSIVE — Tablet ≤ 1024px
   ================================================ */
@media (max-width: 1024px) {
    .au-hero-inner {
        padding: 5rem 1.5rem 2rem;
        gap: 1.5rem;
    }

    .au-story-split,
    .au-wwd-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .au-story-img-col,
    .au-wwd-img-col {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    /* Put image above copy on mobile for story */
    .au-wwd-img-col { order: -1; }

    .au-mvv-grid { grid-template-columns: 1fr; }
    .au-wwd-cta { align-self: center; }
}


/* ================================================
   RESPONSIVE — Mobile ≤ 768px
   ================================================ */
@media (max-width: 768px) {
    .au-hl-line { font-size: clamp(2rem, 8vw, 2.8rem); }

    .au-hero-tags { padding: 0 1rem 2rem; gap: 0.5rem; }

    .au-stats-grid { flex-wrap: wrap; }
    .au-stats-divider { display: none; }
    .au-stats-item { flex: 1 1 42%; min-width: 140px; padding: 1.25rem 1rem; }

    .au-wwd-float { bottom: -14px; left: -8px; }

    .au-story-pillars {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}


/* ================================================
   RESPONSIVE — Mobile ≤ 480px
   ================================================ */
@media (max-width: 480px) {
    .au-hero-inner { padding: 4rem 1rem 2rem; gap: 1.25rem; }
    .au-hl-line { font-size: clamp(1.8rem, 9vw, 2.4rem); }

    .au-hero-btns { flex-direction: column; width: 100%; }
    .au-hero-btns .btn { width: 100%; justify-content: center; }

    .au-hero-tags { padding: 0 1rem 1.75rem; }

    .au-stats-item { flex: 1 1 45%; }
    .au-stats-num { font-size: 2.4rem; }
    .au-stats-band { padding: 3.5rem 0; }

    .au-svc-item { padding: 1.2rem 1rem; }
    .au-mvv-card { padding: 2rem 1.5rem 1.5rem; }

    .au-wwd-float { display: none; }
    .au-story-chip { left: 10px; }
    .au-story-img-corner { display: none; }

    .au-wwd-cta { width: 100%; justify-content: center; }
}


/* ================================================
   RESPONSIVE — Extra-small ≤ 360px
   ================================================ */
@media (max-width: 360px) {
    /* Hero */
    .au-hero-inner { padding: 3rem 0.75rem 1.5rem; gap: 1rem; }
    .au-hl-line { font-size: clamp(1.45rem, 9vw, 1.8rem); }
    .au-hero-desc { font-size: 0.88rem; line-height: 1.75; }
    .au-eyebrow { font-size: 0.66rem; padding: 6px 14px; }
    .au-hero-tags { padding: 0 0.5rem 1.25rem; gap: 0.4rem; }
    .au-hero-tag { font-size: 0.68rem; padding: 6px 12px; }

    /* Stats band */
    .au-stats-band { padding: 2.5rem 0; }
    .au-stats-num { font-size: 2rem; }
    .au-stats-label { font-size: 0.72rem; }
    .au-stats-item { padding: 0.75rem 0.5rem; }

    /* Story section */
    .au-story-chip { font-size: 0.65rem; padding: 6px 12px; left: 8px; }
    .au-story-pillar { padding: 0.75rem; }

    /* MVV cards */
    .au-mvv-card { padding: 1.5rem 1.1rem 1.25rem; border-radius: 14px; }
    .au-mvv-title { font-size: 1.05rem; }
    .au-mvv-desc { font-size: 0.83rem; }

    /* Service items */
    .au-svc-item { padding: 1rem 0.85rem; gap: 1rem; }
    .au-svc-icon-box { width: 40px; height: 40px; border-radius: 10px; }
    .au-svc-title { font-size: 0.9rem; }
    .au-svc-desc { font-size: 0.8rem; }
}
