/* 
   ../../assets/css/pages.css
   */
.hp {
    --brand:         #16a34a;    /* sunny & warm */
    --brand-dark:    #15803d;
    --brand-rgb:    22, 163, 74;                  /* ← add (was missing) */
    --brand-glow:   rgba(22, 163, 74, 0.2);       /* ← fix (was orange) */
    --brand-pale:   rgba(22, 163, 74, 0.12);      /* ← fix (was orange) */
    --brand-border: rgba(22, 163, 74, 0.3);       /* ← fix (was orange) */
    --bg:            #FFFFFF;    /* ← pure white for light theme */
    --bg-2:          #FFFFFF;
    --bg-3:          #FFFFFF;
    --surface:       #FFFFFF;
    --border:        rgba(0, 0, 0, 0.06);
    --text-1:        #1E1A15;
    --text-2:        #4A4238;
    --text-3:        #887E72;
    --shadow:        0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 20px 40px rgba(0, 0, 0, 0.06);
    --radius:        28px;
    --radius-sm:     18px;
    --tr:            0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --btn-dark-bg: #1E1A15;
    --btn-dark-text: #FFFFFF;
    --btn-dark-hover: #2C2520;
}

[data-theme="dark"] .hp {
    --bg:            #16120E;
    --bg-2:          #1E1915;
    --bg-3:          #27211C;
    --surface:       #1E1916;
    --border:        rgba(255, 245, 220, 0.08);
    --text-1:        #FCF6E8;
    --text-2:        #E0D4C6;
    --text-3:        #A89C8C;
    --shadow:        0 12px 32px rgba(0,0,0,0.3);
    --shadow-md:     0 20px 40px rgba(0,0,0,0.4);
    --btn-dark-bg: #16a34a;
    --btn-dark-text: #1E1A15;
    --btn-dark-hover: #15803d;
}

.hp {
    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
}

.hp * { box-sizing: border-box; margin: 0; padding: 0; }
.hp a { text-decoration: none; color: inherit; }

/* Layout */
.hp .hp-container { max-width: 1240px; margin: 0 auto; padding: 0 1.8rem; }
.hp .hp-section   { padding: 5rem 0; }
.hp .hp-section-sm{ padding: 3rem 0; }

/* Friendly labels */
.hp .hp-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-pale);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid var(--brand-border);   /* was rgba(249,180,58,0.25) */
    margin-bottom: 1.2rem;
}

.hp .hp-heading {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-1);
}
.hp .hp-heading .accent { color: var(--brand); }

.hp .hp-body {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-2);
    max-width: 52ch;
}

/* reveal animation – soft rise */
@keyframes hp-soft-rise {
    0% { opacity: 0; transform: translateY(24px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hp-reveal { opacity: 0; animation: hp-soft-rise 0.6s ease forwards; }
.hp-reveal-d1 { animation-delay: 0.08s; }
.hp-reveal-d2 { animation-delay: 0.18s; }
.hp-reveal-d3 { animation-delay: 0.28s; }
.hp-reveal-d4 { animation-delay: 0.38s; }
.hp-reveal-d5 { animation-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════════════════
   1. HERO – friendly welcome
═══════════════════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg);          /* solid white in light theme */
    overflow: hidden;
}

/* soft blobs – hidden in light theme, visible in dark */
.hp-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.hp-hero-bg::before,
.hp-hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
    filter: blur(45px);
    background: transparent;        /* no blobs in light theme */
}
.hp-hero-bg::before {
    top: -15%; right: -5%;
    width: 60vw; height: 60vw;
    animation: friendly-drift 16s infinite alternate;
}
.hp-hero-bg::after {
    bottom: -10%; left: -5%;
    width: 55vw; height: 55vw;
    border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
    filter: blur(55px);
    animation: friendly-drift 14s infinite alternate-reverse;
}
@keyframes friendly-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -20px) rotate(5deg); }
}

.hp-hero-inner {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.8rem;
    width: 100%;
}

.hp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--brand-pale);   /* was rgba(249,180,58,0.15) */
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}
.hp-hero-eyebrow::before {
    content: '🤝';
    font-size: 0.9rem;
}

.hp-hero-title {
    font-size: clamp(2.4rem, 5.8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}
.hp-hero-title .hl {
    color: var(--brand);
    background: linear-gradient(120deg, var(--brand-pale) 0%, transparent 60%);
    display: inline-block;
    padding: 0 0.1rem;
}
.hp-hero-title .wave-emoji {
    display: inline-block;
    animation: wave 1.8s infinite;
    transform-origin: 70% 70%;
}
@keyframes wave {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(14deg); }
    40% { transform: rotate(-6deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

.hp-hero-desc {
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 46ch;
    margin-bottom: 2rem;
}

/* Buttons */
.hp-btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--brand);
    color: #1F1B16;
    font-weight: 800;
    padding: 0.85rem 1.8rem;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    box-shadow: 0 6px 20px var(--brand-glow);   /* was rgba(249,180,58,0.3) */
}
.hp-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px var(--brand-glow);  /* was rgba(249,180,58,0.4) */
}
.hp-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,245,0.8);
    backdrop-filter: blur(4px);
    color: var(--text-2);
    font-weight: 700;
    padding: 0.85rem 1.6rem;
    border-radius: 60px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--tr);
}
.hp-btn-ghost:hover {
    border-color: var(--brand);
    background: var(--brand-pale);
    color: var(--brand-dark);
}

.hp-trust-row {
    display: flex; align-items: center; gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dotted var(--brand-border);   /* was rgba(249,180,58,0.3) */
}
.hp-trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-2);
    padding: 0.3rem 0.8rem;
    border-radius: 60px;
    color: var(--text-2);
}
.hp-trust-item i { color: var(--brand); }

[data-theme="dark"] .hp-trust-item {
    background: var(--bg-3);
    color: var(--text-1);
}

[data-theme="dark"] .hp-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .hp-hero-title {
    color: var(--text-1);
}

[data-theme="dark"] .hp-hero-desc {
    color: var(--text-2);
}

[data-theme="dark"] .hp-hero-eyebrow {
    color: var(--brand);
}

[data-theme="dark"] .hp-hero {
    background: linear-gradient(135deg, #1A1510 0%, #201A12 100%);
}

[data-theme="dark"] .hp-hero-bg::before {
    background: radial-gradient(circle, rgba(249,180,58,0.08) 0%, transparent 70%);
}

[data-theme="dark"] .hp-hero-bg::after {
    background: radial-gradient(circle, rgba(249,180,58,0.05) 0%, transparent 80%);
}

[data-theme="dark"] .hp-hero-title .hl {
    color: var(--brand);
    background: linear-gradient(120deg, rgba(249,180,58,0.15) 0%, transparent 60%);
}

[data-theme="dark"] .hp-card-float {
    background: var(--surface);
    color: var(--text-1);
}

[data-theme="dark"] .hp-card-float span[style] {
    color: var(--text-1);
}

/* Hero cards */
.hp-hero-visual {
    display: flex; flex-direction: column; gap: 1.2rem;
    align-items: flex-end;
}
.hp-card-float {
    background: var(--surface);
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 360px;
    border: 1px solid rgba(249,180,58,0.2);
    animation: gentle-float 4s infinite ease-in-out;
}
@keyframes gentle-float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.hp-card-amount {
    font-size: 2.4rem; font-weight: 900;
    letter-spacing: -0.02em;
}
.hp-card-amount span { color: var(--brand); }
.hp-badge-row {
    display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem;
}
.hp-badge {
    background: var(--brand-pale);
    border-radius: 40px;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-dark);
}
.hp-stat-card {
    background: var(--brand-pale);              /* was var(--surface) */
    border: 1.5px solid var(--brand-border);     /* was var(--border) */
    border-radius: 40px;
    padding: 2.4rem 3rem;
    display: flex; align-items: center; gap: 1.5rem;
    max-width: 420px;
}
.hp-stat-num { font-size: 4.2rem; font-weight: 900; line-height: 1; color: var(--text-1); }
.hp-stat-label { font-size: 1rem; font-weight: 700; opacity: 0.7; color: var(--text-2); }

@media (max-width: 900px) {
    .hp-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hp-hero-visual { align-items: center; }
}
@media (max-width: 550px) { .hp-hero-visual { display: none; } }

/* ═══════════════════════════════════════════════════════════════════
   2. WHY AMIGO
═══════════════════════════════════════════════════════════════════ */
.hp-why { background: var(--bg-2); border-radius: 48px 48px 0 0; }
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}
.hp-feature-card {
    background: var(--surface);
    border-radius: 32px;
    padding: 2rem 1.8rem;
    transition: all var(--tr);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hp-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
}
.hp-feature-icon {
    background: var(--brand-pale);
    width: 56px; height: 56px;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--brand);
    margin-bottom: 1.3rem;
}
.hp-feature-title {
    font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem;
}
.hp-feature-desc { font-size: 0.9rem; color: var(--text-3); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════
   3. SERVICES
═══════════════════════════════════════════════════════════════════ */
.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.hp-service-card {
    background: var(--surface);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: 0.25s;
}
.hp-service-card.featured {
    background: var(--surface);   /* white */
    border-color: var(--brand-border);   /* was rgba(249,180,58,0.4) */
    position: relative;
}

/* ATM Tubos card had no hover state at all — add one so its border is dynamic too */
.hp-service-card:hover { border-color: var(--brand); }

.hp-service-card.featured::after {
    content: '⭐ Most Loved';
    position: absolute; top: 1rem; right: 1.5rem;
    background: var(--brand);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.9rem;
    border-radius: 60px;
    color: #1E1A15;
}
.hp-service-icon {
    width: 64px; height: 64px; background: var(--brand);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.hp-service-name { font-size: 1.4rem; font-weight: 800; margin: 0.5rem 0 0.4rem; }
.hp-service-list {
    list-style: none; margin: 1rem 0;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.hp-service-list li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem;
}
.hp-service-list li i { color: var(--brand); }
.hp-service-cta {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-weight: 800; color: var(--brand); margin-top: 1rem;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   4. HOW IT WORKS
═══════════════════════════════════════════════════════════════════ */
.hp-how { background: var(--bg-2); border-radius: 0 0 48px 48px; }
.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.hp-step {
    text-align: center;
    background: var(--surface);
    border-radius: 40px;
    padding: 1.8rem 1rem;
    border: 1px solid var(--border);
    transition: 0.2s;
}
.hp-step:hover { transform: translateY(-5px); border-color: var(--brand); }
.hp-step-num {
    width: 70px; height: 70px; margin: 0 auto 1rem;
    background: var(--brand-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--brand);
    font-weight: 800;
}
@media (max-width: 680px) { .hp-steps-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
   5. CLIENTS (marquee & stats)
═══════════════════════════════════════════════════════════════════ */
.hp-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.hp-marquee-track {
    display: flex; gap: 1rem; width: max-content;
    animation: hp-marquee 32s linear infinite;
}
@keyframes hp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hp-client-logo {
    background: var(--surface);
    border-radius: 40px;
    padding: 0.8rem 1.8rem;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-2);
    border: 1px solid var(--border);
    white-space: nowrap;
}
.hp-client-logo:hover { border-color: var(--brand); color: var(--brand); }
.hp-client-stats {
    display: flex; justify-content: center; gap: 3rem;
    margin-top: 3rem; flex-wrap: wrap;
}
.hp-client-stat-num { font-size: 2.5rem; font-weight: 900; }
.hp-client-stat-num span { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════
   6. CTA BANNER
═══════════════════════════════════════════════════════════════════ */
.hp-cta-banner {
    background: var(--surface);   /* white */
    border-radius: 56px;
    margin: 0 1rem 3rem 1rem;
    padding: 4rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.hp-cta-banner-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--text-1);
}
.hp-btn-dark {
    background: var(--btn-dark-bg);
    color: var(--btn-dark-text) !important;
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.hp-btn-dark:hover {
    background: var(--btn-dark-hover);
    transform: translateY(-2px);
}
.hp-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid rgba(0,0,0,0.2);
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    font-weight: 800;
    color: var(--text-1);
}

[data-theme="dark"] .hp-btn-outline-dark {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-1);
}

/* CTA button row – stack on mobile */
.hp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
@media (max-width: 540px) {
    .hp-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hp-cta-actions .hp-btn-dark,
    .hp-cta-actions .hp-btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════════ */
.hp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.hp-contact-icon {
    background: var(--brand-pale);
    border-radius: 24px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.hp-form {
    background: var(--surface);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 16px 40px var(--brand-glow);   /* was var(--shadow), neutral */
    border: 1.5px solid var(--brand-border);     /* was var(--border) */
}
.hp-field input, .hp-field select, .hp-field textarea {
    background: var(--bg-2);
    border-radius: 20px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    width: 100%;
    font-family: inherit;
}
.hp-field input:focus, .hp-field select:focus {
    border-color: var(--brand);
    outline: none;
    box-shadow: 0 0 0 3px var(--brand-glow);   /* was rgba(249,180,58,0.2) */
}
@media (max-width: 720px) { .hp-contact-grid { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════════════════════
   2) FROM Views/Inquiry/Inquiry.js  (#inquiry-friendly-style)
   ════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   FRIENDLY DESIGN TOKENS — matches Home.js warm palette
   ─────────────────────────────────────────────────────────────────── */
.iqp {
    --brand:         #16a34a;
    --brand-dark:    #15803d;
    --brand-rgb:    22, 163, 74;                  /* ← fix (was 249,180,58) */
    --brand-glow:   rgba(22, 163, 74, 0.2);       /* ← fix (was orange) */
    --brand-pale:   rgba(22, 163, 74, 0.12);      /* ← fix (was orange) */
    --bg:            #FFFFFF;    /* ← pure white for light theme */
    --bg-2:          #FFFFFF;
    --bg-3:          #FFFFFF;
    --surface:       #FFFFFF;
    --border:        rgba(0, 0, 0, 0.06);
    --text-1:        #1E1A15;
    --text-2:        #4A4238;
    --text-3:        #887E72;
    --shadow:        0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 20px 40px rgba(0, 0, 0, 0.06);
    --radius:        28px;
    --radius-sm:     18px;
    --tr:            0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
}

[data-theme="dark"] .iqp {
    --bg:            #16120E;
    --bg-2:          #1E1915;
    --bg-3:          #27211C;
    --surface:       #1E1916;
    --border:        rgba(255, 245, 220, 0.08);
    --text-1:        #FCF6E8;
    --text-2:        #E0D4C6;
    --text-3:        #A89C8C;
    --shadow:        0 12px 32px rgba(0,0,0,0.3);
    --shadow-md:     0 20px 40px rgba(0,0,0,0.4);
}

.iqp *, .iqp *::before, .iqp *::after { box-sizing: border-box; margin: 0; padding: 0; }
.iqp a { text-decoration: none; color: inherit; }

/* ── Layout ───────────────────────────────────────────────────────── */
.iqp-container { max-width: 1100px; margin: 0 auto; padding: 0 1.8rem; }
.iqp-section   { padding: 5rem 0; }

/* ── Shared label pill ────────────────────────────────────────────── */
.iqp-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-pale);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .iqp-label { color: var(--brand); }

/* ── Reveal animation ─────────────────────────────────────────────── */
@keyframes iqp-soft-rise {
    0%   { opacity: 0; transform: translateY(24px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.iqp-reveal { opacity: 0; animation: iqp-soft-rise 0.6s ease forwards; }
.iqp-d1 { animation-delay: 0.08s; }
.iqp-d2 { animation-delay: 0.18s; }
.iqp-d3 { animation-delay: 0.28s; }
.iqp-d4 { animation-delay: 0.38s; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — warm welcome
═══════════════════════════════════════════════════════════════════ */
.iqp-hero {
    position: relative;
    background: var(--bg);          /* solid white in light theme */
    overflow: hidden;
    padding: 5rem 0 4.5rem;
}
[data-theme="dark"] .iqp-hero {
    background: linear-gradient(135deg, #1A1510 0%, #201A12 100%);
}

/* soft blobs – hidden in light theme */
.iqp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.iqp-hero-bg::before,
.iqp-hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
    filter: blur(45px);
    background: transparent;        /* no blobs in light theme */
}
.iqp-hero-bg::before {
    top: -15%; right: -5%;
    width: 55vw; height: 55vw;
    animation: iqp-drift 16s infinite alternate;
}
.iqp-hero-bg::after {
    bottom: -10%; left: -5%;
    width: 50vw; height: 50vw;
    border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
    filter: blur(55px);
    animation: iqp-drift 14s infinite alternate-reverse;
}
@keyframes iqp-drift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -20px) rotate(5deg); }
}

[data-theme="dark"] .iqp-hero-bg::before {
    background: radial-gradient(circle, rgba(249,180,58,0.12) 0%, transparent 70%);
}
[data-theme="dark"] .iqp-hero-bg::after {
    background: radial-gradient(circle, rgba(249,180,58,0.07) 0%, transparent 80%);
}

.iqp-hero-inner {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 720px) {
    .iqp-hero-inner { grid-template-columns: 1fr; }
    .iqp-hero-loan-card { display: none; }
}

.iqp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(var(--brand-rgb), 0.15);   /* was rgba(249,180,58,0.15) */
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem; font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .iqp-hero-eyebrow { color: var(--brand); }

.iqp-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-1);
    margin-bottom: 1rem;
}
.iqp-hero-title .hl { color: var(--brand); }

.iqp-hero-desc {
    font-size: 1.05rem; line-height: 1.65;
    color: var(--text-2); max-width: 48ch;
    margin-bottom: 2rem;
}

/* Buttons (matches hp-btn-primary / ghost) */
.iqp-btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--brand); color: #1E1A15;
    font-family: inherit; font-weight: 800; font-size: 0.9rem;
    padding: 0.85rem 1.8rem; border-radius: 60px;
    border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    transition: all var(--tr);
}
.iqp-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
}
.iqp-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--text-2);
    font-family: inherit; font-weight: 700; font-size: 0.9rem;
    padding: 0.85rem 1.6rem; border-radius: 60px;
    border: 2px solid var(--border); cursor: pointer;
    transition: all var(--tr);
}
.iqp-btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-pale);
}
[data-theme="dark"] .iqp-btn-ghost { color: var(--text-1); }
[data-theme="dark"] .iqp-btn-ghost:hover { color: var(--brand); }

.iqp-hero-btns { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

/* trust badges */
.iqp-trust-row {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    margin-top: 1.75rem; padding-top: 1.5rem;
    border-top: 2px dotted rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.iqp-trust-item {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.82rem; font-weight: 600;
    background: var(--bg-2); padding: 0.3rem 0.85rem;
    border-radius: 60px; color: var(--text-2);
}
[data-theme="dark"] .iqp-trust-item { background: var(--bg-3); color: var(--text-1); }

/* Loan card — floating highlight */
.iqp-hero-loan-card {
    background: var(--surface);
    border: 2px solid rgba(249,180,58,0.25);
    border-radius: var(--radius);
    padding: 2rem 2.4rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: iqp-gentle-float 4s infinite ease-in-out;
    min-width: 220px;
}
@keyframes iqp-gentle-float {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-8px); }
}
.iqp-hero-loan-amount {
    font-size: 2.6rem; font-weight: 900;
    letter-spacing: -0.03em; color: var(--brand); line-height: 1;
}
.iqp-hero-loan-label {
    font-size: 0.72rem; color: var(--text-3); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem;
}
.iqp-hero-loan-divider {
    height: 1px; background: var(--border); margin: 1rem 0;
}
.iqp-hero-loan-sub {
    font-size: 0.8rem; color: var(--text-2); font-weight: 600; line-height: 1.5;
}
.iqp-hero-loan-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--brand-pale); color: var(--brand-dark);
    border-radius: 99px; padding: 0.2rem 0.65rem;
    font-size: 0.7rem; font-weight: 800; margin-top: 0.75rem;
}
[data-theme="dark"] .iqp-hero-loan-badge { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════
   QUALIFICATIONS — friendly feature cards
═══════════════════════════════════════════════════════════════════ */
.iqp-qual {
    background: var(--bg-2);
    border-radius: 48px 48px 0 0;
    padding: 5rem 0;
}
.iqp-qual-header { text-align: center; max-width: 580px; margin: 0 auto 3rem; }
.iqp-qual-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900; letter-spacing: -0.03em; color: var(--text-1);
}
.iqp-qual-title .accent { color: var(--brand); }
.iqp-qual-subtitle {
    font-size: 0.95rem; color: var(--text-2);
    margin-top: 0.65rem; line-height: 1.7;
}

.iqp-qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.4rem;
}
.iqp-qual-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all var(--tr);
}
.iqp-qual-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
    box-shadow: var(--shadow-md);
}
.iqp-qual-icon {
    width: 56px; height: 56px;
    border-radius: 24px;
    background: var(--brand-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.3rem;
    transition: background var(--tr), transform var(--tr);
}
.iqp-qual-card:hover .iqp-qual-icon {
    background: var(--brand);
    transform: scale(1.08) rotate(-4deg);
}
.iqp-qual-card-title {
    font-size: 1.05rem; font-weight: 800;
    color: var(--text-1); margin-bottom: 0.5rem;
}
.iqp-qual-card-desc {
    font-size: 0.875rem; line-height: 1.7; color: var(--text-2);
}
.iqp-qual-card-desc strong { color: var(--text-1); }

/* all-4 note */
.iqp-qual-note {
    text-align: center; margin-top: 2rem;
    font-size: 0.85rem; color: var(--text-3); font-weight: 600;
}
.iqp-qual-note span {
    background: var(--brand-pale); color: var(--brand-dark);
    border-radius: 99px; padding: 0.2rem 0.65rem;
    font-weight: 800; font-size: 0.8rem;
}
[data-theme="dark"] .iqp-qual-note span { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════
   ADDITIONAL INFO — warm info cards
═══════════════════════════════════════════════════════════════════ */
.iqp-info { background: var(--bg); padding: 5rem 0; }
.iqp-info-header { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.iqp-info-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900; letter-spacing: -0.03em; color: var(--text-1);
}
.iqp-info-title .accent { color: var(--brand); }

.iqp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.iqp-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--tr);
}
.iqp-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    box-shadow: var(--shadow-md);
}

.iqp-info-card-head {
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 1rem;
    background: linear-gradient(135deg, var(--brand-pale), transparent);
}
.iqp-info-card-icon {
    width: 48px; height: 48px;
    border-radius: 20px;
    background: var(--brand); color: #1E1A15;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.35);   /* was rgba(249,180,58,0.35) */
    font-weight: 900;
}
.iqp-info-card-name {
    font-size: 1rem; font-weight: 900; color: var(--text-1);
}
.iqp-info-card-sub {
    font-size: 0.72rem; color: var(--text-3); margin-top: 0.1rem; font-weight: 600;
}

.iqp-info-list { padding: 0.4rem 0; }
.iqp-info-row {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--tr);
}
.iqp-info-row:last-child { border-bottom: none; }
.iqp-info-row:hover { background: var(--bg-2); }

.iqp-info-row-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    background: var(--brand-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: var(--brand-dark);
    font-weight: 900; margin-top: 0.1rem;
}
[data-theme="dark"] .iqp-info-row-icon { color: var(--brand); }

.iqp-info-row-text {
    font-size: 0.875rem; line-height: 1.65; color: var(--text-2);
}
.iqp-info-row-text strong { color: var(--text-1); font-weight: 700; }

.iqp-info-row-tag {
    display: inline-block; margin-left: 0.4rem;
    background: var(--brand-pale); color: var(--brand-dark);
    border: 1px solid rgba(249,180,58,0.3);
    border-radius: 99px;
    font-size: 0.62rem; font-weight: 800; padding: 0.1rem 0.5rem;
    vertical-align: middle;
}
[data-theme="dark"] .iqp-info-row-tag { color: var(--brand); }

/* Loyal client callout */
.iqp-loyal {
    margin: 0 1.25rem 1.25rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--brand-pale), rgba(var(--brand-rgb), 0.05));   /* was rgba(249,180,58,0.05) */
    border: 1.5px solid rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    border-radius: var(--radius-sm);
    font-size: 0.845rem; color: var(--text-2); line-height: 1.7;
}
.iqp-loyal strong { color: var(--brand-dark); }
[data-theme="dark"] .iqp-loyal strong { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════════ */
.iqp-cta-banner {
    background: var(--surface);   /* white in light theme */
    border-radius: 56px;
    margin: 0 1rem 3rem;
    padding: 4rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.iqp-cta-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900; color: var(--text-1); line-height: 1.15;
    margin-bottom: 0.6rem;
}
.iqp-cta-sub {
    font-size: 1rem; color: var(--text-3);
    font-weight: 500; margin-bottom: 1.75rem;
}
.iqp-cta-btns { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }

.iqp-btn-dark {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--btn-dark-bg, #1E1A15);
    color: var(--btn-dark-text, #FFFFFF);
    font-family: inherit; font-weight: 800; font-size: 0.92rem;
    padding: 0.9rem 1.8rem; border-radius: 60px;
    border: none; cursor: pointer; transition: all var(--tr);
}
.iqp-btn-dark:hover {
    background: var(--btn-dark-hover, #2C2520);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
[data-theme="dark"] .iqp-btn-dark {
    --btn-dark-bg: #16a34a;
    --btn-dark-text: #1E1A15;
    --btn-dark-hover: #15803d;
}
.iqp-btn-outline-dark {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--text-1);
    font-family: inherit; font-weight: 800; font-size: 0.92rem;
    padding: 0.9rem 1.8rem; border-radius: 60px;
    border: 2px solid var(--border);
    cursor: pointer; transition: all var(--tr);
}
.iqp-btn-outline-dark:hover {
    border-color: var(--brand);
    background: var(--brand-pale);
    color: var(--brand-dark);
}
[data-theme="dark"] .iqp-btn-outline-dark {
    color: var(--text-1);
    border-color: rgba(255,255,255,0.15);
}
[data-theme="dark"] .iqp-btn-outline-dark:hover {
    border-color: var(--brand);
    color: var(--brand);
}


/* ════════════════════════════════════════════════════════════════════════
   3) FROM Views/Contact/Contact.js  (#contact-friendly-style)
   ════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   FRIENDLY DESIGN TOKENS — matches Home.js warm palette
   ─────────────────────────────────────────────────────────────────── */
.cfp {
    --brand:         #16a34a;
    --brand-dark:    #15803d;
    --brand-rgb:    22, 163, 74;                  /* ← fix (was 249,180,58) */
    --brand-glow:   rgba(22, 163, 74, 0.2);       /* ← fix (was orange) */
    --brand-pale:   rgba(22, 163, 74, 0.12);      /* ← fix (was orange) */
    --bg:            #FFFFFF;    /* ← pure white for light theme */
    --bg-2:          #FFFFFF;
    --bg-3:          #FFFFFF;
    --surface:       #FFFFFF;
    --border:        rgba(0, 0, 0, 0.06);
    --text-1:        #1E1A15;
    --text-2:        #4A4238;
    --text-3:        #887E72;
    --shadow:        0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 20px 40px rgba(0, 0, 0, 0.06);
    --radius:        28px;
    --radius-sm:     18px;
    --tr:            0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
}

[data-theme="dark"] .cfp {
    --bg:            #16120E;
    --bg-2:          #1E1915;
    --bg-3:          #27211C;
    --surface:       #1E1916;
    --border:        rgba(255, 245, 220, 0.08);
    --text-1:        #FCF6E8;
    --text-2:        #E0D4C6;
    --text-3:        #A89C8C;
    --shadow:        0 12px 32px rgba(0,0,0,0.3);
    --shadow-md:     0 20px 40px rgba(0,0,0,0.4);
}

.cfp *, .cfp *::before, .cfp *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cfp a { text-decoration: none; color: inherit; }

/* ── Layout ───────────────────────────────────────────────────────── */
.cfp-container { max-width: 1240px; margin: 0 auto; padding: 0 1.8rem; }
.cfp-section   { padding: 5rem 0; }

/* ── Shared label pill (matches hp-label) ─────────────────────────── */
.cfp-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-pale);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .cfp-label { color: var(--brand); }

/* ── Reveal animation (matches hp-soft-rise) ─────────────────────── */
@keyframes cfp-soft-rise {
    0%   { opacity: 0; transform: translateY(24px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cfp-reveal { opacity: 0; animation: cfp-soft-rise 0.6s ease forwards; }
.cfp-reveal-d1 { animation-delay: 0.08s; }
.cfp-reveal-d2 { animation-delay: 0.18s; }
.cfp-reveal-d3 { animation-delay: 0.28s; }
.cfp-reveal-d4 { animation-delay: 0.38s; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — friendly welcome
═══════════════════════════════════════════════════════════════════ */
.cfp-hero {
    position: relative;
    background: var(--bg);          /* solid white in light theme */
    overflow: hidden;
    padding: 5rem 0 4rem;
}
[data-theme="dark"] .cfp-hero {
    background: linear-gradient(135deg, #1A1510 0%, #201A12 100%);
}

/* soft blobs – hidden in light theme */
.cfp-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.cfp-hero-bg::before,
.cfp-hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
    filter: blur(45px);
    background: transparent;        /* no blobs in light theme */
}
.cfp-hero-bg::before {
    top: -20%; right: -5%;
    width: 55vw; height: 55vw;
    animation: cfp-drift 16s infinite alternate;
}
.cfp-hero-bg::after {
    bottom: -10%; left: -5%;
    width: 50vw; height: 50vw;
    border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
    filter: blur(55px);
    animation: cfp-drift 14s infinite alternate-reverse;
}
@keyframes cfp-drift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -20px) rotate(5deg); }
}

[data-theme="dark"] .cfp-hero-bg::before {
    background: radial-gradient(circle, rgba(249,180,58,0.12) 0%, transparent 70%);
}
[data-theme="dark"] .cfp-hero-bg::after {
    background: radial-gradient(circle, rgba(249,180,58,0.08) 0%, transparent 80%);
}

.cfp-hero-inner {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 720px) {
    .cfp-hero-inner { grid-template-columns: 1fr; }
    .cfp-hero-stats { display: none; }
}

.cfp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(var(--brand-rgb), 0.15);   /* was rgba(249,180,58,0.15) */
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem; font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .cfp-hero-eyebrow { color: var(--brand); }

.cfp-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-1);
}
.cfp-hero-title .hl { color: var(--brand); }

.cfp-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-2);
    max-width: 46ch;
    margin-bottom: 2rem;
}

/* trust badges row (matches hp-trust-row) */
.cfp-trust-row {
    display: flex; align-items: center; gap: 1.2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 2px dotted rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.cfp-trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; font-weight: 600;
    background: var(--bg-2);
    padding: 0.3rem 0.85rem;
    border-radius: 60px;
    color: var(--text-2);
}
[data-theme="dark"] .cfp-trust-item {
    background: var(--bg-3);
    color: var(--text-1);
}

/* hero stats card */
.cfp-hero-stats {
    display: flex; flex-direction: column; gap: 1rem;
    align-items: flex-end;
}
.cfp-stat-card {
    background: var(--brand);
    border-radius: 32px;
    padding: 1.8rem 2.2rem;
    display: flex; align-items: center; gap: 1.2rem;
}
.cfp-stat-num { font-size: 3.2rem; font-weight: 900; line-height: 1; color: #1E1A15; }
.cfp-stat-label { font-size: 0.85rem; font-weight: 700; color: rgba(30,26,21,0.65); }

/* ═══════════════════════════════════════════════════════════════════
   BRANCH TABS BAR — friendly pill style
═══════════════════════════════════════════════════════════════════ */
.cfp-tabs-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 68px; z-index: 80;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.cfp-tabs-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 0.75rem 1.8rem;
    display: flex; gap: 0.5rem; overflow-x: auto;
    scrollbar-width: none;
}
.cfp-tabs-inner::-webkit-scrollbar { display: none; }

.cfp-tab {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.875rem; font-weight: 700;
    color: var(--text-3);
    border-radius: 60px;
    cursor: pointer; background: none; border: 2px solid transparent;
    font-family: inherit;
    transition: all var(--tr);
    white-space: nowrap;
}
.cfp-tab:hover {
    color: var(--text-1);
    background: var(--brand-pale);
}
.cfp-tab.active {
    color: #1E1A15;
    background: var(--brand);
    border-color: var(--brand);
}
[data-theme="dark"] .cfp-tab.active { color: #1E1A15; }

.cfp-tab-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: currentColor; opacity: 0.4;
    flex-shrink: 0;
    transition: opacity var(--tr);
}
.cfp-tab.active .cfp-tab-dot { opacity: 1; }

.cfp-tab-badge {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(30,26,21,0.15);
    padding: 0.1rem 0.45rem; border-radius: 99px;
}

/* ═══════════════════════════════════════════════════════════════════
   BRANCH PANELS
═══════════════════════════════════════════════════════════════════ */
.cfp-panel { display: none; }
.cfp-panel.active { display: block; }

.cfp-branch-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem 0 4rem;
}
@media (max-width: 900px) {
    .cfp-branch-wrap { grid-template-columns: 1fr; }
}

/* ── Left column ──────────────────────────────────────────────────── */
.cfp-left { display: flex; flex-direction: column; gap: 1.25rem; }

/* Branch photo */
.cfp-branch-photo {
    width: 100%; aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(var(--brand-rgb), 0.2);   /* was rgba(249,180,58,0.2) */
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: zoom-in;
    transition: border-color var(--tr);
}
.cfp-branch-photo:hover { border-color: var(--brand); }
.cfp-branch-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.cfp-branch-photo:hover img { transform: scale(1.04); }

/* zoom hint */
.cfp-branch-photo::after {
    content: '🔍 Click to enlarge';
    position: absolute; bottom: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 0.25rem 0.7rem; border-radius: 99px;
    backdrop-filter: blur(6px);
    opacity: 0; transition: opacity var(--tr);
    pointer-events: none;
}
.cfp-branch-photo:hover::after { opacity: 1; }

.cfp-branch-photo-badge {
    position: absolute; top: 0.9rem; left: 0.9rem;
    background: var(--brand); color: #1E1A15;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.22rem 0.7rem; border-radius: 99px;
    box-shadow: 0 2px 12px rgba(249,180,58,0.4);
    z-index: 1;
}

/* Info card — warm surface */
.cfp-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cfp-info-header {
    padding: 1.3rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--brand-pale), transparent);
}
.cfp-info-header-emoji {
    font-size: 1.5rem; margin-bottom: 0.3rem;
}
.cfp-info-header-name {
    font-size: 1.15rem; font-weight: 900;
    color: var(--text-1); letter-spacing: -0.02em;
}
.cfp-info-header-region {
    font-size: 0.78rem; color: var(--brand-dark); font-weight: 600;
    margin-top: 0.15rem;
}
[data-theme="dark"] .cfp-info-header-region { color: var(--brand); }

.cfp-info-list { padding: 0.4rem 0; }
.cfp-info-row {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--tr);
}
.cfp-info-row:last-child { border-bottom: none; }
.cfp-info-row:hover { background: var(--bg-2); }

.cfp-info-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--brand-pale);
    border: 1px solid rgba(249,180,58,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin-top: 0.05rem;
}
.cfp-info-label {
    font-size: 0.67rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 0.2rem;
}
.cfp-info-value {
    font-size: 0.875rem; color: var(--text-1); line-height: 1.55;
    font-weight: 500;
}
.cfp-info-link {
    color: var(--brand-dark); font-weight: 700;
    transition: opacity var(--tr);
}
[data-theme="dark"] .cfp-info-link { color: var(--brand); }
.cfp-info-link:hover { opacity: 0.75; }

/* Hours badge inside info card */
.cfp-hours-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--bg-2);
    border-radius: 99px;
    padding: 0.2rem 0.65rem;
    font-size: 0.72rem; font-weight: 700;
    color: var(--text-2);
    margin-top: 0.2rem;
}

/* Action buttons (matches hp-btn-primary / ghost) */
.cfp-branch-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
}
.cfp-action-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    padding: 0.75rem 1rem;
    font-family: inherit; font-size: 0.85rem; font-weight: 800;
    border-radius: 60px; cursor: pointer;
    border: none; transition: all var(--tr);
}
.cfp-action-btn.primary {
    background: var(--brand); color: #1E1A15;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.cfp-action-btn.primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
}
.cfp-action-btn.ghost {
    background: var(--surface); color: var(--text-2);
    border: 2px solid var(--border);
}
.cfp-action-btn.ghost:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-pale);
}
[data-theme="dark"] .cfp-action-btn.ghost { color: var(--text-1); }
[data-theme="dark"] .cfp-action-btn.ghost:hover { color: var(--brand); }

/* Messenger CTA — flat brand blue, constant across light/dark theme */
.cfp-action-btn.messenger {
    background: #0084FF;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.30);
}
.cfp-action-btn.messenger:hover {
    background: #006FD6;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 26px rgba(0, 132, 255, 0.42);
    color: #fff;
}
.cfp-messenger-icon { flex-shrink: 0; }

/* ── Map card ─────────────────────────────────────────────────────── */
.cfp-map-card {
    background: var(--surface);
    border: 2px solid rgba(var(--brand-rgb), 0.2);   /* was rgba(249,180,58,0.2) */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky; top: calc(68px + 66px + 1rem);
    transition: border-color var(--tr);
}
.cfp-map-card:hover {
    border-color: rgba(var(--brand-rgb), 0.45);   /* was rgba(249,180,58,0.45) */
}
.cfp-map-card iframe {
    width: 100%; height: 500px;
    border: none; display: block;
}
[data-theme="dark"] .cfp-map-card iframe {
    filter: invert(92%) hue-rotate(180deg) grayscale(15%);
}
.cfp-map-footer {
    padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.6rem;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    font-size: 0.78rem; color: var(--text-3); font-weight: 500;
}
.cfp-map-footer-emoji { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════════
   PHOTO MODAL — warm close & nav buttons
═══════════════════════════════════════════════════════════════════ */
@keyframes cfp-modal-bg  { from{opacity:0} to{opacity:1} }
@keyframes cfp-modal-img { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }

.cfp-modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    animation: cfp-modal-bg 0.2s ease both;
    cursor: zoom-out;
}
.cfp-modal-overlay.cfp-modal-closing {
    animation: cfp-modal-bg 0.18s ease reverse both;
}
.cfp-modal-box {
    position: relative;
    max-width: min(92vw, 900px); max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    animation: cfp-modal-img 0.22s ease both;
    cursor: default;
}
.cfp-modal-overlay.cfp-modal-closing .cfp-modal-box {
    animation: cfp-modal-img 0.18s ease reverse both;
}
.cfp-modal-box img {
    display: block; width: 100%; max-height: 90vh;
    object-fit: contain; border-radius: var(--radius);
}
.cfp-modal-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff; font-size: 0.82rem; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.cfp-modal-caption-badge {
    background: var(--brand); color: #1E1A15;
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 99px;
    flex-shrink: 0;
}
.cfp-modal-close {
    position: absolute; top: 0.85rem; right: 0.85rem;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; backdrop-filter: blur(6px);
    transition: all var(--tr); z-index: 1;
    font-family: inherit;
}
.cfp-modal-close:hover { background: var(--brand); color: #1E1A15; transform: scale(1.1); }

.cfp-modal-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; backdrop-filter: blur(6px);
    transition: all var(--tr); z-index: 1;
    font-family: inherit;
}
.cfp-modal-nav:hover { background: var(--brand); color: #1E1A15; }
.cfp-modal-prev { left: 0.85rem; }
.cfp-modal-next { right: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════════
   ALL BRANCHES OVERVIEW STRIP — matches hp-how / hp-why card style
═══════════════════════════════════════════════════════════════════ */
.cfp-overview {
    background: var(--bg-2);
    border-radius: 48px 48px 0 0;
    padding: 4rem 0;
}
.cfp-overview-header { text-align: center; margin-bottom: 2.5rem; }
.cfp-overview-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900; letter-spacing: -0.03em;
    color: var(--text-1);
}
.cfp-overview-heading .accent { color: var(--brand); }

.cfp-branch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
}
.cfp-branch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--tr);
}
.cfp-branch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
    box-shadow: var(--shadow-md);
}
.cfp-branch-card-img {
    width: 100%; aspect-ratio: 16/9; overflow: hidden;
    position: relative;
}
.cfp-branch-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.cfp-branch-card:hover .cfp-branch-card-img img { transform: scale(1.07); }

.cfp-branch-card-body { padding: 1.15rem 1.3rem; }
.cfp-branch-card-name {
    font-size: 1.05rem; font-weight: 900;
    color: var(--text-1); margin-bottom: 0.15rem;
}
.cfp-branch-card-region {
    font-size: 0.78rem; color: var(--brand-dark);
    font-weight: 700; margin-bottom: 0.6rem;
}
[data-theme="dark"] .cfp-branch-card-region { color: var(--brand); }
.cfp-branch-card-addr {
    font-size: 0.78rem; color: var(--text-3); line-height: 1.6;
}
.cfp-branch-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 1.3rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem; color: var(--text-3); font-weight: 600;
}
.cfp-view-btn {
    font-size: 0.75rem; font-weight: 800;
    color: var(--brand-dark); display: flex; align-items: center; gap: 0.25rem;
    transition: gap var(--tr);
}
[data-theme="dark"] .cfp-view-btn { color: var(--brand); }
.cfp-branch-card:hover .cfp-view-btn { gap: 0.5rem; }


/* ════════════════════════════════════════════════════════════════════════
   4) FROM Views/Advisory/Advisory.js  (#advisory-style)
   ════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   FRIENDLY DESIGN TOKENS — Warm, human, inviting (matches Home.js)
   ─────────────────────────────────────────────────────────────────── */
.av {
    --brand:         #16a34a;
    --brand-dark:    #15803d;
    --brand-rgb:    22, 163, 74;                  /* ← add (was missing entirely) */
    --brand-glow:   rgba(22, 163, 74, 0.2);       /* ← fix (was orange) */
    --brand-pale:   rgba(22, 163, 74, 0.12);      /* ← fix (was orange) */
    --danger:        #E05555;
    --danger-dark:   #C23A3A;
    --danger-pale:   rgba(224, 85, 85, 0.10);
    --danger-border: rgba(224, 85, 85, 0.22);
    --warn:          #F07020;
    --warn-pale:     rgba(240, 112, 32, 0.10);
    --safe:          #22c55e;
    --safe-pale:     rgba(34, 197, 94, 0.10);
    --safe-border:   rgba(34, 197, 94, 0.25);

    --bg:            #FFFFFF;    /* ← pure white for light theme */
    --bg-2:          #FFFFFF;
    --bg-3:          #FFFFFF;
    --surface:       #FFFFFF;
    --border:        rgba(0, 0, 0, 0.06);
    --text-1:        #1E1A15;
    --text-2:        #4A4238;
    --text-3:        #887E72;
    --shadow:        0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 20px 40px rgba(0, 0, 0, 0.07);
    --radius:        28px;
    --radius-sm:     18px;
    --tr:            0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
}

[data-theme="dark"] .av {
    --bg:            #16120E;
    --bg-2:          #1E1915;
    --bg-3:          #27211C;
    --surface:       #1E1916;
    --border:        rgba(255, 245, 220, 0.08);
    --text-1:        #FCF6E8;
    --text-2:        #E0D4C6;
    --text-3:        #A89C8C;
    --shadow:        0 12px 32px rgba(0,0,0,0.3);
    --shadow-md:     0 20px 40px rgba(0,0,0,0.45);
    --danger-pale:   rgba(224, 85, 85, 0.14);
    --danger-border: rgba(224, 85, 85, 0.28);
    --safe-pale:     rgba(34, 197, 94, 0.12);
    --safe-border:   rgba(34, 197, 94, 0.22);
    --brand-pale:    rgba(249, 180, 58, 0.14);
}

.av *, .av *::before, .av *::after { box-sizing: border-box; margin: 0; padding: 0; }
.av a { text-decoration: none; color: inherit; }

/* ── Layout ─────────────────────────────────────────────────────── */
.av .av-container { max-width: 1200px; margin: 0 auto; padding: 0 1.8rem; }
.av .av-section   { padding: 5rem 0; }
.av .av-section-sm{ padding: 3rem 0; }

/* ── Shared label pill ──────────────────────────────────────────── */
.av .av-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-pale);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
    margin-bottom: 1.2rem;
}
.av .av-label-danger {
    background: var(--danger-pale);
    color: var(--danger);
    border-color: var(--danger-border);
}
.av .av-label-warn {
    background: var(--warn-pale);
    color: var(--warn);
    border-color: rgba(240, 112, 32, 0.25);
}

/* ── Shared heading styles ──────────────────────────────────────── */
.av .av-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-1);
}
.av .av-heading .accent  { color: var(--brand); }
.av .av-heading .danger  { color: var(--danger); }
.av .av-heading .warn    { color: var(--warn); }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes av-soft-rise {
    0%   { opacity: 0; transform: translateY(24px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0)   scale(1);     }
}
@keyframes av-progress   { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes av-modal-bg   { from { opacity: 0; } to { opacity: 1; } }
@keyframes av-modal-img  { from { opacity: 0; transform: scale(0.93); } to { opacity: 1; transform: scale(1); } }
@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

.av-reveal { opacity: 0; animation: av-soft-rise 0.6s ease forwards; }
.av-reveal-d1 { animation-delay: 0.08s; }
.av-reveal-d2 { animation-delay: 0.18s; }
.av-reveal-d3 { animation-delay: 0.28s; }
.av-reveal-d4 { animation-delay: 0.38s; }

/* ══════════════════════════════════════════════════════════════════
   0. PROMOTIONAL CAROUSEL
══════════════════════════════════════════════════════════════════ */
.av-promo-section {
    background: var(--bg);
    padding: 4rem 0 5rem;
    border-bottom: 1px solid var(--border);
}
.av-promo-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.av-promo-sub {
    font-size: 0.95rem;
    color: var(--text-3);
    margin-top: 0.5rem;
    line-height: 1.65;
}

/* Carousel wrapper */
.av-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-3);
    user-select: none;
    touch-action: pan-y pinch-zoom;
    border: 1px solid rgba(var(--brand-rgb), 0.15);   /* was rgba(249,180,58,0.15) */
}
.av-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.av-carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
    cursor: zoom-in;
    outline: none;
}
.av-carousel-slide img {
    width: 100%;
    display: block;
    max-height: 600px;
    object-fit: contain;
    background: var(--bg-3);
}
.av-carousel-slide:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
}

/* Nav arrows */
.av-carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    color: var(--text-1); font-size: 1.6rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--tr);
    z-index: 2; font-family: inherit; line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.av-carousel-nav:hover {
    background: var(--brand); color: #1E1A15;
    border-color: var(--brand);
    transform: translateY(-50%) scale(1.08);
}
.av-carousel-prev { left: 0.9rem; }
.av-carousel-next { right: 0.9rem; }

/* Dot indicators */
.av-carousel-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.45rem; z-index: 2;
}
.av-carousel-dot {
    width: 8px; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer; padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}
.av-carousel-dot.active {
    background: var(--brand);
    width: 26px;
    border-color: var(--brand);
}

/* Slide counter */
.av-carousel-counter {
    position: absolute; top: 0.9rem; right: 0.9rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: var(--text-2); font-size: 0.7rem; font-weight: 700;
    padding: 0.28rem 0.75rem; border-radius: 99px;
    border: 1px solid rgba(249,180,58,0.2);
    z-index: 2; pointer-events: none;
}

/* Auto-play progress bar */
.av-carousel-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; z-index: 3;
    background: rgba(249,180,58,0.15);
    pointer-events: none;
}
.av-carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
    transform-origin: left;
    transform: scaleX(0);
}
.av-carousel-progress-bar.playing {
    animation: av-progress 5s linear forwards;
}

/* ══════════════════════════════════════════════════════════════════
   1. HERO BANNER — friendly alert style
══════════════════════════════════════════════════════════════════ */
.av-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);          /* solid white in light theme */
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .av-hero {
    background: linear-gradient(135deg, #1D1510 0%, #231A12 100%);
}

/* soft blobs – hidden in light theme */
.av-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.av-hero-bg::before,
.av-hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 60% 40% 50% 50% / 40% 55% 45% 60%;
    filter: blur(50px);
    background: transparent;        /* no blobs in light theme */
}
.av-hero-bg::before {
    top: -20%; right: -5%;
    width: 55vw; height: 55vw;
    animation: friendly-drift 18s infinite alternate;
}
.av-hero-bg::after {
    bottom: -10%; left: -5%;
    width: 45vw; height: 45vw;
    border-radius: 40% 60% 60% 40% / 55% 40% 60% 45%;
    filter: blur(55px);
    animation: friendly-drift 14s infinite alternate-reverse;
}
[data-theme="dark"] .av-hero-bg::before {
    background: radial-gradient(circle, rgba(224,85,85,0.07) 0%, transparent 70%);
}
[data-theme="dark"] .av-hero-bg::after {
    background: radial-gradient(circle, rgba(249,180,58,0.08) 0%, transparent 80%);
}

.av-hero-inner {
    position: relative; z-index: 3;
    display: flex; align-items: center; gap: 2.5rem;
    flex-wrap: wrap;
}

.av-hero-badge-row {
    display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.av-hbadge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; font-weight: 700;
    padding: 0.35rem 0.9rem; border-radius: 99px;
    border: 1.5px solid;
}
.av-hbadge-danger { background: var(--danger-pale); color: var(--danger); border-color: var(--danger-border); }
.av-hbadge-brand {
    background: var(--brand-pale);
    color: var(--brand-dark);
    border-color: rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.av-hbadge-safe   { background: var(--safe-pale);   color: var(--safe);   border-color: var(--safe-border); }

.av-hero-alert-box {
    background: var(--surface);
    border-radius: 32px;
    padding: 1.5rem 1.8rem;
    border: 1.5px solid var(--danger-border);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(224,85,85,0.05);
    display: flex; align-items: flex-start; gap: 1.2rem;
    flex: 0 0 auto; max-width: 320px;
    animation: gentle-pulse 3s ease-in-out infinite;
}
.av-hero-alert-icon {
    font-size: 2.8rem; flex-shrink: 0; line-height: 1;
}
.av-hero-alert-text { flex: 1; }
.av-hero-alert-title {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--danger); margin-bottom: 0.3rem;
}
.av-hero-alert-body {
    font-size: 0.88rem; font-weight: 700; color: var(--text-1); line-height: 1.4;
}
.av-hero-alert-sub {
    font-size: 0.75rem; color: var(--text-3); margin-top: 0.3rem;
}

.av-hero-copy { flex: 1; min-width: 280px; }
.av-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 0.9rem;
}
.av-hero-desc {
    font-size: 1rem; line-height: 1.7; color: var(--text-2);
    max-width: 54ch;
}
.av-hero-desc strong { color: var(--text-1); }

/* ══════════════════════════════════════════════════════════════════
   2. HOW TO SPOT THE FAKE — friendly card grid
══════════════════════════════════════════════════════════════════ */
.av-spot { background: var(--bg-2); border-radius: 48px 48px 0 0; }
.av-spot-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }

.av-flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.av-flag-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    position: relative; overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
    box-shadow: var(--shadow);
}
.av-flag-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 0 0 4px 4px;
}
.av-flag-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.av-flag-card:hover::before { transform: scaleX(1); }

.av-flag-icon-wrap {
    width: 56px; height: 56px; border-radius: 24px;
    background: var(--brand-pale);
    border: 1px solid rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.1rem;
    transition: background var(--tr), transform var(--tr);
}
.av-flag-card:hover .av-flag-icon-wrap {
    background: var(--brand);
    transform: scale(1.08) rotate(-4deg);
}

.av-flag-num {
    position: absolute; top: 1.2rem; right: 1.4rem;
    font-size: 2.2rem; font-weight: 900; letter-spacing: -0.06em;
    color: var(--brand); opacity: 0.15; line-height: 1;
}
.av-flag-title {
    font-size: 1.05rem; font-weight: 800; color: var(--text-1);
    margin-bottom: 0.5rem;
}
.av-flag-desc {
    font-size: 0.88rem; line-height: 1.7; color: var(--text-2);
}
.av-flag-desc strong { color: var(--danger); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════
   3b. OLD WEBSITE SCREENSHOTS
══════════════════════════════════════════════════════════════════ */
.av-oldweb { background: var(--bg-2); border-radius: 0 0 48px 48px; border-top: 1px solid var(--border); }
.av-oldweb-header { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.av-oldweb-desc {
    font-size: 0.92rem; color: var(--text-3); line-height: 1.7;
    max-width: 54ch; margin: 0.65rem auto 0;
}
.av-oldweb-desc strong { color: var(--text-2); }

/* Horizontal scroll */
.av-oldweb-track-wrap { position: relative; }
.av-oldweb-track {
    display: flex; gap: 1.25rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--brand-rgb), 0.3) transparent;   /* was rgba(249,180,58,0.3) */
}
.av-oldweb-track::-webkit-scrollbar { height: 5px; }
.av-oldweb-track::-webkit-scrollbar-thumb {
    background: rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    border-radius: 99px;
}
.av-oldweb-slide {
    flex: 0 0 min(88vw, 660px);
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(var(--brand-rgb), 0.18);   /* was rgba(249,180,58,0.18) */
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--tr), box-shadow var(--tr);
    cursor: zoom-in;
}
.av-oldweb-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}
.av-oldweb-slide:hover img { transform: scale(1.02); }
.av-oldweb-slide img { width: 100%; display: block; transition: transform 0.5s ease; }

.av-oldweb-ribbon {
    position: absolute; top: 0.85rem; left: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(30,26,21,0.8); backdrop-filter: blur(6px);
    color: var(--brand); font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.28rem 0.7rem; border-radius: 99px;
    border: 1px solid rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    pointer-events: none;
}
.av-oldweb-caption {
    padding: 0.85rem 1.1rem;
    background: var(--surface);
    font-size: 0.8rem; font-weight: 600; color: var(--text-2);
    border-top: 1px solid var(--border);
}
.av-oldweb-track-wrap::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 1rem;
    width: 60px; pointer-events: none;
    background: linear-gradient(to left, var(--bg-2), transparent);
}

/* ══════════════════════════════════════════════════════════════════
   3 + 4. ADVISORY POSTERS + OFFICIAL SOURCES
══════════════════════════════════════════════════════════════════ */
.av-sources { background: var(--bg); padding: 5rem 0; }
.av-sources-header { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.av-sources-sub {
    font-size: 0.92rem; color: var(--text-3); margin-top: 0.65rem; line-height: 1.65;
}

/* Sub-heading divider */
.av-sub-heading {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.av-sub-heading-label {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-3); white-space: nowrap;
}
.av-sub-heading-line { flex: 1; height: 1px; background: var(--border); }

/* Advisory poster cards */
.av-sources-posters-wrap { margin-bottom: 3.5rem; }
.av-posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.av-poster-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    cursor: zoom-in;
    position: relative;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.av-poster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
    border-color: rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
}
.av-poster-card img { width: 100%; display: block; transition: transform 0.5s ease; }
.av-poster-card:hover img { transform: scale(1.03); }
.av-poster-card::after {
    content: '🔍 Click to enlarge';
    position: absolute; bottom: 3.8rem; right: 0.75rem;
    background: rgba(30,26,21,0.75); color: #fff;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem; border-radius: 99px;
    backdrop-filter: blur(6px);
    opacity: 0; transition: opacity var(--tr); pointer-events: none;
}
.av-poster-card:hover::after { opacity: 1; }

.av-poster-caption {
    padding: 0.9rem 1.1rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    display: flex; align-items: center;
    justify-content: space-between; gap: 0.65rem; flex-wrap: wrap;
}
.av-poster-caption-label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-2);
    flex: 1; min-width: 0;
}
.av-poster-fb-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    flex-shrink: 0;
    font-size: 0.72rem; font-weight: 800;
    color: #1877f2;
    background: rgba(24,119,242,0.08);
    border: 1.5px solid rgba(24,119,242,0.22);
    padding: 0.28rem 0.75rem; border-radius: 99px;
    white-space: nowrap;
    transition: background var(--tr), color var(--tr), border-color var(--tr);
    text-decoration: none;
    cursor: pointer;
}
.av-poster-fb-link:hover {
    background: #1877f2; color: #fff; border-color: #1877f2;
}

/* Official Source Cards */
.av-sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.av-source-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.6rem;
    display: flex; flex-direction: column; gap: 1rem;
    position: relative; overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
    text-decoration: none; color: inherit;
    box-shadow: var(--shadow);
}
.av-source-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 0 0 4px 4px;
}
.av-source-card.theme-brand::before  { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); }
.av-source-card.theme-danger::before { background: linear-gradient(90deg, var(--danger-dark), var(--danger)); }
.av-source-card.theme-safe::before   { background: linear-gradient(90deg, #16a34a, var(--safe)); }

.av-source-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.av-source-card.theme-brand:hover { border-color: rgba(var(--brand-rgb), 0.3); }   /* was rgba(249,180,58,0.3) */
.av-source-card.theme-danger:hover { border-color: var(--danger-border); }
.av-source-card.theme-safe:hover   { border-color: var(--safe-border); }

.av-source-icon-row {
    display: flex; align-items: center; gap: 0.85rem;
}
.av-source-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.theme-brand .av-source-icon {
    background: var(--brand-pale);
    border: 1px solid rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
}
.theme-danger .av-source-icon { background: var(--danger-pale); border: 1px solid var(--danger-border); }
.theme-safe .av-source-icon   { background: var(--safe-pale);   border: 1px solid var(--safe-border); }

.av-source-type {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase;
}
.theme-brand .av-source-type  { color: var(--brand-dark); }
.theme-danger .av-source-type { color: var(--danger); }
.theme-safe .av-source-type   { color: var(--safe); }
.av-source-ref { font-size: 0.72rem; color: var(--text-3); font-weight: 500; margin-top: 0.2rem; }

.av-source-title {
    font-size: 0.92rem; font-weight: 800; color: var(--text-1);
    line-height: 1.45; flex: 1;
}
.av-source-cta {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.8rem; font-weight: 800;
    padding: 0.48rem 1.1rem; border-radius: var(--radius-sm);
    transition: all var(--tr); width: fit-content; border: 1.5px solid;
}
.theme-brand .av-source-cta  {
    color: var(--brand-dark); background: var(--brand-pale); border-color: rgba(249,180,58,0.3);
}
.theme-brand .av-source-cta:hover  { background: var(--brand); color: #1E1A15; }
.theme-danger .av-source-cta {
    color: var(--danger); background: var(--danger-pale); border-color: var(--danger-border);
}
.theme-danger .av-source-cta:hover { background: var(--danger); color: #fff; }
.theme-safe .av-source-cta {
    color: var(--safe); background: var(--safe-pale); border-color: var(--safe-border);
}
.theme-safe .av-source-cta:hover   { background: var(--safe); color: #fff; }

.av-source-card .ext-arrow {
    position: absolute; top: 1.1rem; right: 1.1rem;
    font-size: 0.8rem; color: var(--text-3);
    opacity: 0.45; transition: opacity var(--tr);
}
.av-source-card:hover .ext-arrow { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════
   POSTER LIGHTBOX MODAL
══════════════════════════════════════════════════════════════════ */
.av-modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(20,16,10,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    animation: av-modal-bg 0.22s ease both;
    cursor: zoom-out;
}
.av-modal-overlay.av-closing { animation: av-modal-bg 0.18s ease reverse both; }
.av-modal-box {
    position: relative;
    max-width: min(92vw, 660px);
    max-height: 92vh;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    animation: av-modal-img 0.22s ease both;
    cursor: default;
    border: 1px solid rgba(249,180,58,0.2);
}
.av-modal-overlay.av-closing .av-modal-box { animation: av-modal-img 0.18s ease reverse both; }
.av-modal-box img {
    display: block; width: 100%;
    max-height: 90vh; object-fit: contain;
}
.av-modal-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1.1rem;
    background: linear-gradient(to top, rgba(20,16,10,0.88), transparent);
    color: #fff; font-size: 0.82rem; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.av-modal-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(30,26,21,0.7); border: 1.5px solid rgba(249,180,58,0.3);
    color: #fff; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px); transition: all var(--tr);
    z-index: 1; font-family: inherit;
}
.av-modal-close:hover { background: var(--brand); color: #1E1A15; transform: scale(1.1); border-color: var(--brand); }
.av-modal-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(30,26,21,0.7); border: 1.5px solid rgba(249,180,58,0.25);
    color: #fff; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px); transition: all var(--tr);
    z-index: 1; font-family: inherit;
}
.av-modal-nav:hover { background: var(--brand); color: #1E1A15; border-color: var(--brand); }
.av-modal-prev { left: 0.85rem; }
.av-modal-next { right: 0.85rem; }


/* ════════════════════════════════════════════════════════════════════════
   5) FROM Views/Signup/Signup.js  (#signup-friendly-style)
   ════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   FRIENDLY DESIGN TOKENS — matches Home.js warm palette
   ─────────────────────────────────────────────────────────────────── */
.sup {
    --brand:         #16a34a;
    --brand-dark:    #15803d;
    --brand-rgb:    22, 163, 74;                  /* ← add (was missing entirely) */
    --brand-glow:   rgba(22, 163, 74, 0.2);       /* ← fix (was orange) */
    --brand-pale:   rgba(22, 163, 74, 0.12);      /* ← fix (was orange) */
    --danger:        #e05555;
    --danger-pale:   rgba(224, 85, 85, 0.08);
    --success:       #22c55e;
    --success-pale:  rgba(34, 197, 94, 0.1);
    --bg:            #FFFFFF;    /* ← pure white for light theme */
    --bg-2:          #FFFFFF;
    --bg-3:          #FFFFFF;
    --surface:       #FFFFFF;
    --border:        rgba(0, 0, 0, 0.06);
    --text-1:        #1E1A15;
    --text-2:        #4A4238;
    --text-3:        #887E72;
    --shadow:        0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:     0 20px 40px rgba(0, 0, 0, 0.06);
    --radius:        28px;
    --radius-sm:     18px;
    --tr:            0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
    min-height: 100vh;
}

[data-theme="dark"] .sup {
    --bg:            #16120E;
    --bg-2:          #1E1915;
    --bg-3:          #27211C;
    --surface:       #1E1916;
    --border:        rgba(255, 245, 220, 0.08);
    --text-1:        #FCF6E8;
    --text-2:        #E0D4C6;
    --text-3:        #A89C8C;
    --shadow:        0 12px 32px rgba(0,0,0,0.3);
    --shadow-md:     0 20px 40px rgba(0,0,0,0.4);
}

.sup *, .sup *::before, .sup *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sup a { text-decoration: none; color: inherit; }

/* ── Layout ───────────────────────────────────────────────────────── */
.sup-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 1.8rem 6rem; }

/* ── Page header ──────────────────────────────────────────────────── */
.sup-page-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(var(--brand-rgb), 0.15);   /* was rgba(249,180,58,0.15) */
    border-radius: 100px; padding: 0.35rem 1rem;
    font-size: 0.72rem; font-weight: 700;
    color: var(--brand-dark); margin-bottom: 1rem;
}
[data-theme="dark"] .sup-page-eyebrow { color: var(--brand); }

.sup-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.1; color: var(--text-1); margin-bottom: 0.5rem;
}
.sup-page-title .hl { color: var(--brand); }

.sup-page-sub {
    font-size: 0.95rem; color: var(--text-2);
    line-height: 1.7; margin-bottom: 2.5rem; max-width: 50ch;
}

/* ── Progress bar ─────────────────────────────────────────────────── */
.sup-progress-wrap { margin-bottom: 2.5rem; }
.sup-progress-bar-track {
    height: 6px; background: var(--bg-3);
    border-radius: 99px; overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--brand-rgb), 0.15);   /* was rgba(249,180,58,0.15) */
}
.sup-progress-bar-fill {
    height: 100%; background: var(--brand); border-radius: 99px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
}
.sup-step-dots {
    display: flex; justify-content: space-between;
    overflow-x: auto; gap: 0.25rem; scrollbar-width: none;
}
.sup-step-dots::-webkit-scrollbar { display: none; }
.sup-step-dot { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; min-width: 60px; }

.sup-dot-circle {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800;
    transition: all var(--tr);
}
.sup-dot-circle.done {
    background: var(--success); color: #fff;
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.sup-dot-circle.active {
    background: var(--brand); color: #1E1A15;
    box-shadow: 0 0 0 6px var(--brand-glow);
}
.sup-dot-circle.idle {
    background: var(--bg-3); color: var(--text-3);
    border: 2px solid var(--border);
}
.sup-dot-label {
    font-size: 0.6rem; font-weight: 600; text-align: center;
    color: var(--text-3); white-space: nowrap; transition: color var(--tr);
}
.sup-dot-label.active { color: var(--brand-dark); font-weight: 800; }
[data-theme="dark"] .sup-dot-label.active { color: var(--brand); }

/* ── Form card ────────────────────────────────────────────────────── */
.sup-card {
    background: var(--surface);
    border: 1.5px solid rgba(var(--brand-rgb), 0.18);   /* was rgba(249,180,58,0.18) */
    border-radius: var(--radius);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-md);
    transition: border-color var(--tr);
}
.sup-card:focus-within { border-color: rgba(var(--brand-rgb), 0.4); }   /* was rgba(249,180,58,0.4) */

.sup-card-title {
    font-size: 1.25rem; font-weight: 900;
    color: var(--text-1); margin-bottom: 0.3rem;
}
.sup-card-sub {
    font-size: 0.875rem; color: var(--text-3);
    margin-bottom: 2rem; line-height: 1.6;
}

/* ── Fields ───────────────────────────────────────────────────────── */
.sup-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.sup-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 620px) { .sup-grid-2, .sup-grid-3 { grid-template-columns: 1fr; } }

.sup-field { display: flex; flex-direction: column; gap: 0.45rem; }

.sup-field label {
    font-size: 0.8rem; font-weight: 700;
    color: var(--text-2); letter-spacing: 0.03em;
}
.sup-field label .req { color: var(--danger); margin-right: 0.2rem; }

.sup-field input,
.sup-field select,
.sup-field textarea {
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: inherit; font-size: 0.9rem;
    color: var(--text-1);
    transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
    outline: none; width: 100%;
}
.sup-field input::placeholder { color: var(--text-3); }
.sup-field input:focus,
.sup-field select:focus {
    border-color: var(--brand);
    background: var(--bg-3);
    box-shadow: 0 0 0 4px var(--brand-glow);
}
.sup-field input.error,
.sup-field select.error {
    border-color: var(--danger);
    background: var(--danger-pale);
}

.sup-err {
    font-size: 0.72rem; color: var(--danger);
    font-weight: 600; display: none;
}
.sup-err.show { display: block; }

/* ── Navigation buttons ───────────────────────────────────────────── */
.sup-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 2px dotted rgba(var(--brand-rgb), 0.25);   /* was rgba(249,180,58,0.25) */
}
.sup-nav.end { justify-content: flex-end; }

.sup-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: inherit; font-weight: 800; font-size: 0.9rem;
    padding: 0.8rem 1.75rem; border-radius: 60px;
    cursor: pointer; border: none; transition: all var(--tr);
}
.sup-btn-primary {
    background: var(--brand); color: #1E1A15;
    box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
}
.sup-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 26px rgba(var(--brand-rgb), 0.4);   /* was rgba(249,180,58,0.4) */
}
.sup-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.sup-btn-ghost {
    background: var(--bg-2); color: var(--text-2);
    border: 2px solid var(--border);
}
.sup-btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-pale); }
[data-theme="dark"] .sup-btn-ghost:hover { color: var(--brand); }

@keyframes sup-shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}
.sup-shake { animation: sup-shake 0.4s ease; }

/* ── Section divider ──────────────────────────────────────────────── */
.sup-section-divider {
    display: flex; align-items: center; gap: 0.75rem;
    margin: 1.75rem 0 1.25rem;
}
.sup-section-divider-line { flex: 1; height: 1px; background: var(--border); }
.sup-section-divider-label {
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-3); white-space: nowrap;
}

/* ── Steps ────────────────────────────────────────────────────────── */
.sup-step { display: none; }
.sup-step.active { display: block; }

/* ── Spinner ──────────────────────────────────────────────────────── */
@keyframes sup-spin { to { transform: rotate(360deg); } }
.sup-spinner {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2.5px solid rgba(30,26,21,0.2);
    border-top-color: #1E1A15;
    animation: sup-spin 0.7s linear infinite; flex-shrink: 0;
}

/* ── Success screen ───────────────────────────────────────────────── */
@keyframes sup-pop { from { opacity:0; transform:scale(.88); } to { opacity:1; transform:scale(1); } }
@keyframes sup-check-bounce {
    0%   { transform: scale(0.3); opacity: 0; }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.sup-success {
    text-align: center; padding: 3.5rem 1.5rem;
    animation: sup-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.sup-success-icon {
    width: 88px; height: 88px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #FFCF7A);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(var(--brand-rgb), 0.45);   /* was rgba(249,180,58,0.45) */
    animation: sup-check-bounce 0.6s ease-out 0.2s both;
}
.sup-success-title {
    font-size: 1.7rem; font-weight: 900;
    letter-spacing: -0.03em; color: var(--text-1); margin-bottom: 0.65rem;
}
.sup-success-sub {
    font-size: 0.95rem; color: var(--text-2);
    line-height: 1.75; max-width: 44ch;
    margin: 0 auto 1.75rem;
}
.sup-success-code {
    display: inline-block;
    background: var(--brand-pale);
    border: 1.5px solid rgba(var(--brand-rgb), 0.3);   /* was rgba(249,180,58,0.3) */
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem; font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: 0.06em; margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}
[data-theme="dark"] .sup-success-code { color: var(--brand); }

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 620px) {
    .sup-step .sup-field { width: 100%; }
    .sup-card { padding: 1.75rem 1.25rem; }
}

/* ════════════════════════════════════════════════════════════════════════
   6) FROM Views/AboutUs/AboutUs.js  (#ab-style)
   ════════════════════════════════════════════════════════════════════════ */

.ab {
    --brand:        #16a34a;
    --brand-dark:   #15803d;
    --brand-rgb:    22, 163, 74;
    --brand-glow:   rgba(22, 163, 74, 0.2);
    --brand-pale:   rgba(22, 163, 74, 0.12);
    --brand-border: rgba(22, 163, 74, 0.3);
    --bg:           #FFFFFF;
    --bg-2:         #FFFFFF;
    --bg-3:         #FFFFFF;
    --surface:      #FFFFFF;
    --border:       rgba(0, 0, 0, 0.06);
    --text-1:       #1E1A15;
    --text-2:       #4A4238;
    --text-3:       #887E72;
    --shadow:       0 12px 32px rgba(0, 0, 0, 0.04);
    --shadow-md:    0 20px 40px rgba(0, 0, 0, 0.06);
    --radius:       28px;
    --radius-sm:    18px;
    --tr:           0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);

    font-family: 'Figtree', 'Inter', system-ui, sans-serif;
    color: var(--text-1);
    background: var(--bg);
}
[data-theme="dark"] .ab {
    --bg:      #16120E;
    --bg-2:    #1E1915;
    --bg-3:    #27211C;
    --surface: #1E1916;
    --border:  rgba(255, 245, 220, 0.08);
    --text-1:  #FCF6E8;
    --text-2:  #E0D4C6;
    --text-3:  #A89C8C;
    --shadow:    0 12px 32px rgba(0,0,0,0.3);
    --shadow-md: 0 20px 40px rgba(0,0,0,0.4);
}
.ab *, .ab *::before, .ab *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ab a { text-decoration: none; color: inherit; }
.ab-container { max-width: 1160px; margin: 0 auto; padding: 0 1.8rem; }
.ab-section { padding: 5rem 0; }

.ab-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brand-pale);
    border-radius: 100px; padding: 0.4rem 1rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--brand-dark);
    border: 1px solid var(--brand-border);
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .ab-label { color: var(--brand); }

.ab-heading {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.15; letter-spacing: -0.03em;
    color: var(--text-1);
}
.ab-heading .accent { color: var(--brand); }

@keyframes ab-soft-rise {
    0%   { opacity: 0; transform: translateY(24px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.ab-reveal { opacity: 0; animation: ab-soft-rise 0.6s ease forwards; }
.ab-reveal-d1 { animation-delay: 0.08s; }
.ab-reveal-d2 { animation-delay: 0.18s; }
.ab-reveal-d3 { animation-delay: 0.28s; }
.ab-reveal-d4 { animation-delay: 0.38s; }

/* ── Hero / Intro ─────────────────────────────────────────── */
.ab-hero { padding: 5rem 0 4.5rem; }
.ab-hero-heading { margin-bottom: 1.3rem; }
.ab-hero-copy {
    font-size: 1.02rem; line-height: 1.8; color: var(--text-2);
    max-width: 68ch; margin-bottom: 1.1rem;
}
.ab-hero-copy strong { color: var(--text-1); }
.ab-hero-badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.8rem 0 2.2rem; }
.ab-hbadge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; font-weight: 700;
    background: var(--bg-2); border: 1.5px solid var(--border);
    padding: 0.4rem 0.95rem; border-radius: 99px; color: var(--text-2);
}
[data-theme="dark"] .ab-hbadge { background: var(--bg-3); }

.ab-details-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 720px;
}
.ab-detail-row {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--border);
}
.ab-detail-row:last-child { border-bottom: none; }
.ab-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0; border-radius: 14px;
    background: var(--brand-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.ab-detail-label {
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 0.2rem;
}
.ab-detail-value { font-size: 0.9rem; color: var(--text-1); font-weight: 600; line-height: 1.55; }

/* ── Team ─────────────────────────────────────────────────── */
.ab-team { background: var(--bg-2); border-radius: 48px 48px 0 0; }
.ab-team-header, .ab-testi-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.ab-section-sub { font-size: 0.95rem; color: var(--text-3); margin-top: 0.65rem; line-height: 1.7; }

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.75rem;
}
.ab-team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.25rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.ab-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-border);
}
.ab-avatar-wrap {
    position: relative;
    width: 108px; height: 108px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.ab-avatar-fallback {
    width: 100%; height: 100%; border-radius: 50%;
    background: var(--brand-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: var(--brand-dark);
}
[data-theme="dark"] .ab-avatar-fallback { color: var(--brand); }
.ab-avatar-img {
    position: absolute; inset: 3px;
    width: calc(100% - 6px); height: calc(100% - 6px);
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--surface);
}
.ab-team-name { font-size: 1rem; font-weight: 800; color: var(--text-1); margin-bottom: 0.2rem; }
.ab-team-role { font-size: 0.8rem; font-weight: 600; color: var(--brand-dark); }
[data-theme="dark"] .ab-team-role { color: var(--brand); }

.ab-loading, .ab-empty {
    text-align: center; padding: 2.5rem 1rem; color: var(--text-3);
    font-size: 0.9rem; grid-column: 1 / -1;
}

/* ── Testimonials ─────────────────────────────────────────── */
.ab-testi { background: var(--bg); }
.ab-t-carousel { position: relative; max-width: 720px; margin: 0 auto; }
.ab-t-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ab-t-slide { flex: 0 0 100%; min-width: 0; padding: 0 0.5rem; }

.ab-quote-card {
    position: relative;
    background: var(--surface);
    border: 1.5px solid var(--brand-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 3rem 2.2rem 2.4rem;
    text-align: center;
    overflow: hidden;
}
.ab-quote-mark {
    font-size: 4rem; line-height: 1; font-family: Georgia, serif;
    color: var(--brand); opacity: 0.25; margin-bottom: -0.6rem;
}
.ab-quote-text {
    font-size: 1.02rem; line-height: 1.8; color: var(--text-2);
    font-weight: 500; max-width: 56ch; margin: 0 auto;
}
.ab-quote-divider {
    width: 46px; height: 3px; background: var(--brand);
    border-radius: 99px; margin: 1.6rem auto 1.1rem;
}
.ab-quote-name { font-size: 0.98rem; font-weight: 800; color: var(--text-1); }
.ab-quote-role { font-size: 0.8rem; font-weight: 600; color: var(--text-3); margin-top: 0.15rem; }

.ab-t-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--brand-border);
    color: var(--text-1); font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--tr); font-family: inherit; line-height: 1;
    box-shadow: var(--shadow);
    z-index: 2;
}
.ab-t-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.ab-t-prev { left: -6px; }
.ab-t-next { right: -6px; }
@media (max-width: 620px) {
    .ab-t-nav { display: none; }
}

.ab-t-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.6rem; }
.ab-t-dot {
    width: 8px; height: 8px; border-radius: 4px;
    background: var(--border); border: none; cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
    padding: 0;
}
.ab-t-dot.active { background: var(--brand); width: 22px; }

/* ── CTA banner ───────────────────────────────────────────── */
.ab-cta-banner {
    background: var(--surface);
    border-radius: 56px;
    margin: 0 1rem 3rem;
    padding: 3.6rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.ab-cta-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--text-1); }
.ab-cta-sub { font-size: 0.95rem; color: var(--text-3); margin: 0.6rem 0 1.6rem; }
.ab-cta-actions { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }
.ab-btn-primary, .ab-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: inherit; font-weight: 800; font-size: 0.9rem;
    padding: 0.8rem 1.7rem; border-radius: 60px; cursor: pointer;
    transition: all var(--tr);
}
.ab-btn-primary {
    background: var(--brand); color: #fff; border: none;
    box-shadow: 0 6px 20px var(--brand-glow);
}
.ab-btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.ab-btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text-1); }
.ab-btn-outline:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-pale); }
[data-theme="dark"] .ab-btn-outline:hover { color: var(--brand); }