/* ===== ZimboConnecta — static landing page ===== */

:root {
    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-heading: 'Montserrat', 'Inter', Arial, sans-serif;
    --zim-green: #009739;
    --zim-green-dark: #006b2d;
    --zim-yellow: #FFD200;
    --zim-red: #D40023;
    --zim-black: #0a0a0a;
    --zim-offwhite: #F9F9F9;
    --ink: #111418;
    --ink-soft: #374151;
    --muted: #4b5563;
    --line: #ececec;
    --line-soft: #f3f3f3;
    --card: #ffffff;
    --footer-text: #d6d9df;
    --footer-muted: #b8bec8;
    --focus-ring: #FFD200;
    --focus-shadow: rgba(0,151,57,0.24);
    --wa: #25D366;
    --wa-dark: #128C7E;
    --wa-bg: #E5DDD5;
    --wa-bubble-in: #ffffff;
    --wa-bubble-out: #DCF8C6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -10px rgba(0,0,0,0.12), 0 4px 10px -3px rgba(0,0,0,0.06);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.18);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--zim-offwhite);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, .brand-font { font-family: var(--font-heading); letter-spacing: -0.01em; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--focus-shadow);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Logo / brand ===== */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}

/* ===== Nav ===== */
.nav {
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.nav-links {
    display: flex; align-items: center; gap: 28px;
}
.nav-links a:not(.btn) {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s ease;
}
.nav-links a:not(.btn):hover { color: var(--ink); }

.menu-btn {
    display: none;
    width: 42px; height: 42px;
    background: none; border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.menu-btn span {
    display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}

.nav-mobile {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px;
}
.nav-mobile a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-weight: 500;
    color: var(--ink);
}
.nav-mobile a.btn { margin-top: 14px; border-bottom: none; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 22px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
    cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-wa {
    background: var(--wa);
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,0.18);
    box-shadow: 0 8px 22px -8px rgba(37, 211, 102, 0.6);
}
.btn-wa:hover { background: #1ebe5d; box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.7); }
.btn:focus-visible,
.chip:focus-visible,
.cat-card:focus-visible,
.fab:focus-visible,
.onboarding-banner-link:focus-visible,
.menu-btn:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--focus-shadow);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 22px -10px rgba(0,0,0,0.4);
}
.btn-dark:hover { background: #1b1f25; }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.wa-icon { width: 18px; height: 18px; }
.btn-lg .wa-icon { width: 20px; height: 20px; }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 52px 0 34px;
    background:
        radial-gradient(circle at 12% -10%, rgba(0,151,57,0.07), transparent 40%),
        radial-gradient(circle at 100% 10%, rgba(212,0,35,0.05), transparent 45%),
        radial-gradient(#e3e3e3 1px, transparent 1px) 0 0 / 22px 22px,
        #ffffff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hero-copy { max-width: 600px; }

.onboarding-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    max-width: 590px;
    margin: 0 0 18px;
    padding: 10px 12px 10px 14px;
    background: rgba(255,255,255,0.94);
    border: 1px solid #dceee4;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.onboarding-banner-copy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.35;
}

.onboarding-banner-copy strong {
    color: var(--zim-green);
    font-family: var(--font-heading);
    font-size: 15px;
}

.onboarding-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #e3f6ea, #fff8d8);
    border: 1px solid #d7eedf;
    border-radius: 50%;
    font-size: 15px;
}

.onboarding-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 8px 13px;
    background: #f4faf6;
    border: 1px solid #c6ecd3;
    border-radius: var(--radius-pill);
    color: #066b2a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.onboarding-banner-link:hover {
    background: var(--zim-green);
    border-color: var(--zim-green);
    color: #fff;
}

.onboarding-banner-link:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #066b2a;
    background: #e3f6ea;
    border: 1px solid #c6ecd3;
    border-radius: var(--radius-pill);
}

.display {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.07;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.grad {
    background: linear-gradient(90deg, var(--zim-red), #f0a000 45%, var(--zim-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.lede {
    font-size: 18px;
    color: var(--ink-soft);
    margin: 0 0 24px;
    max-width: 560px;
}

.cta-row {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 22px;
}
.cta-center { justify-content: center; }

.trust-strip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--muted);
    padding: 6px 0;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    display: inline-block;
}
.dot-online { background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }

/* ===== Hero phone mockup ===== */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.phone {
    width: 320px;
    max-width: 100%;
    background: #111;
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 30px 60px -20px rgba(0,0,0,0.35),
        0 12px 20px -10px rgba(0,0,0,0.2),
        inset 0 0 0 2px #2a2a2a;
    position: relative;
    transform: rotate(-2deg);
}
.phone::before, .phone::after {
    content: ''; position: absolute; background: #2a2a2a;
    width: 3px; border-radius: 4px;
}
.phone::before { left: -3px; top: 90px; height: 50px; }
.phone::after  { left: -3px; top: 150px; height: 50px; }
.phone-notch {
    position: absolute;
    top: 18px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #111;
    border-radius: 14px;
    z-index: 4;
}
.phone-screen {
    background: var(--wa-bg);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 540px;
    display: flex; flex-direction: column;
    background-image:
        radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 14px 14px;
    background-color: #ECE5DD;
}
.wa-header {
    background: #128C7E;
    color: #fff;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 12px 10px;
    padding-top: 42px;
}
.wa-back { font-size: 22px; line-height: 1; opacity: 0.9; }
.wa-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex: 0 0 auto;
    background: #fff;
}
.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wa-meta { flex: 1; line-height: 1.2; }
.wa-name { font-weight: 700; font-size: 15px; }
.wa-status { font-size: 11px; opacity: 0.9; display: flex; align-items: center; gap: 6px; }
.wa-icons { display: flex; gap: 12px; font-size: 16px; opacity: 0.95; }

.wa-chat {
    flex: 1;
    padding: 14px 12px 12px;
    overflow: hidden;
    display: flex; flex-direction: column; gap: 8px;
}
.wa-day {
    align-self: center;
    background: rgba(225,245,254,0.85);
    color: #315665;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 8px;
    margin: 4px 0 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.bubble {
    position: relative;
    max-width: 82%;
    font-size: 13px;
    line-height: 1.4;
    padding: 8px 10px 18px;
    border-radius: 10px;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
    word-wrap: break-word;
}
.bubble-out {
    background: var(--wa-bubble-out);
    align-self: flex-end;
    border-top-right-radius: 2px;
}
.bubble-in {
    background: var(--wa-bubble-in);
    align-self: flex-start;
    border-top-left-radius: 2px;
}
.bubble-time {
    position: absolute;
    right: 8px; bottom: 3px;
    font-size: 10px; color: #4f6469;
}
.wa-message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 6px 10px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.bubble.typing {
    padding: 12px 14px;
    display: inline-flex; gap: 4px; align-items: center;
    width: auto; max-width: none;
}
.typing-dot {
    width: 6px; height: 6px; background: #98a7ad; border-radius: 50%;
    animation: blink 1.2s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

.wa-input {
    padding: 8px 10px 12px;
    background: transparent;
    display: flex; gap: 8px; align-items: center;
}
.wa-input-pill {
    flex: 1; background: #fff;
    color: #555f6b; font-size: 13px;
    padding: 10px 14px; border-radius: 22px;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}
.wa-send {
    width: 38px; height: 38px;
    background: #128C7E; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

.phone-shadow {
    position: absolute;
    bottom: -28px; left: 8%; right: 8%;
    height: 24px;
    background: rgba(0,0,0,0.18);
    filter: blur(20px);
    border-radius: 50%;
    z-index: -1;
}

/* ===== Chip row ===== */
.chip-row {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 36px;
    justify-content: center;
}
.chip {
    display: inline-flex; align-items: center;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 500;
    color: var(--ink);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.chip:hover {
    transform: translateY(-1px);
    border-color: var(--ink);
    box-shadow: 0 6px 14px -6px rgba(0,0,0,0.15);
}

/* ===== Sections ===== */
.section {
    padding: 88px 0;
}
.section-grey { background: #f4f5f7; }
.section-dark {
    background: #0c0e12;
    color: #e7e7ea;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head-light { color: #e7e7ea; }
.eyebrow {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--zim-green-dark);
    margin: 0 0 12px;
}
.eyebrow-light { color: #ffd86b; }
.h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    margin: 0 0 14px;
    font-weight: 800;
    line-height: 1.18;
}
.h2-light { color: #fff; }
.sub {
    color: var(--ink-soft);
    font-size: 17px;
    margin: 0;
}
.section-head-light .sub { color: var(--footer-muted); }

/* ===== How it works ===== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: how;
}
.how-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.how-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #d7d7d9;
}
.how-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zim-green), var(--zim-yellow), var(--zim-red));
    opacity: 0; transition: opacity .2s ease;
}
.how-card:hover::after { opacity: 1; }
.how-num {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #f4faf6;
    color: var(--zim-green);
    font-family: var(--font-heading);
    font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    border: 1px solid #d9efe2;
}
.how-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 700;
}
.how-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}
.how-cta { text-align: center; margin-top: 40px; }

/* ===== Categories grid ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
    position: relative; overflow: hidden;
}
.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--ink);
}
.cat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zim-green), var(--zim-yellow), var(--zim-red));
    opacity: 0; transition: opacity .2s ease;
}
.cat-card:hover::after { opacity: 1; }
.cat-ico {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.cat-ico-red    { background: #fde7ea; }
.cat-ico-amber  { background: #fff1d6; }
.cat-ico-yellow { background: #fff9d6; }
.cat-ico-orange { background: #ffe6d4; }
.cat-ico-blue   { background: #e0f0ff; }
.cat-ico-slate  { background: #e8ecf3; }
.cat-ico-purple { background: #efe6ff; }
.cat-ico-pink   { background: #ffe1ec; }
.cat-ico-green  { background: #def5e7; }
.cat-ico-dark   { background: #111418; color: #fff; }

.cat-card h3 {
    font-size: 16px; margin: 0 0 4px; font-weight: 700;
}
.cat-card p {
    margin: 0; color: var(--muted); font-size: 13.5px;
}

/* ===== For businesses ===== */
.biz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.biz-copy .lede { margin-bottom: 22px; max-width: 520px; }
.check-list {
    margin: 8px 0 26px;
    display: grid; gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--ink-soft);
    font-size: 15.5px;
}
.check-list li::before {
    content: '';
    position: absolute; left: 0; top: 4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--zim-green);
    box-shadow: 0 0 0 4px #e3f6ea;
}
.check-list li::after {
    content: '';
    position: absolute; left: 6px; top: 9px;
    width: 8px; height: 4px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.micro { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

.biz-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.biz-form-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,151,57,0.5), rgba(255,210,0,0.4), rgba(212,0,35,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.form-card-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line);
}
.wa-mini {
    width: 40px; height: 40px;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
}
.wa-mini .wa-icon { width: 22px; height: 22px; }
.form-card-head strong { font-family: var(--font-heading); font-size: 16px; }
.form-card-head p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }

.form-fields {
    display: grid; gap: 12px;
    margin-bottom: 24px;
}
.form-fields li {
    display: grid; grid-template-columns: 150px 1fr; align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: #fafafa;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
}
.field-label {
    font-size: 12px; font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.field-line {
    font-size: 14.5px; color: var(--muted);
    line-height: 1.45;
}

/* ===== Trust section ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.trust-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.trust-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.16);
}
.trust-emoji {
    font-size: 26px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 14px;
}
.trust-item h3 {
    font-size: 17px;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 700;
}
.trust-item p {
    margin: 0;
    color: var(--footer-muted);
    font-size: 14.5px;
}

/* ===== Final CTA ===== */
.final-cta {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 28px;
    background: linear-gradient(135deg, #fff, #f4f5f7);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.final-cta .h2 { margin-bottom: 8px; }
.final-cta .sub { margin-bottom: 26px; }

/* ===== Contact section ===== */
.section-contact {
    padding-top: 0;
}
.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 32px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 34px;
}
.contact-copy {
    max-width: 760px;
}
.contact-copy .h2 {
    margin-bottom: 10px;
}
.contact-copy .sub {
    margin-bottom: 18px;
}
.contact-copy p:not(.eyebrow):not(.sub) {
    margin: 0 0 12px;
    color: var(--ink-soft);
}
.contact-copy p:last-child {
    margin-bottom: 0;
}
.contact-copy a {
    color: var(--zim-green-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-actions {
    display: grid;
    gap: 12px;
}
.contact-actions .btn {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: #0c0e12;
    color: var(--footer-text);
    padding: 56px 0 0;
}
.footer .brand { color: #fff; }
.footer .logo-img { width: 36px; height: 36px; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 36px;
    padding-bottom: 36px;
}
.footer-tag {
    margin: 14px 0 6px;
    color: var(--footer-text);
}
.footer-note {
    margin: 0;
    font-size: 13px;
    color: var(--footer-muted);
}
.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.footer-cols h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 6px 0 14px;
}
.footer-cols ul { display: grid; gap: 10px; }
.footer-cols a {
    font-size: 14.5px;
    color: var(--footer-text);
    transition: color .15s ease;
}
.footer-cols a:hover { color: #fff; }

.footer-bar {
    border-top: 1px solid #1a1d23;
    padding: 18px 0;
}
.footer-bar-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    color: var(--footer-muted);
}
.flag-stripe {
    display: inline-block;
    width: 120px; height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--zim-green) 0 33%, var(--zim-yellow) 33% 66%, var(--zim-red) 66% 100%);
}

/* ===== Floating WhatsApp button ===== */
.fab {
    position: fixed;
    right: 18px; bottom: 18px;
    width: 56px; height: 56px;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 30px -8px rgba(37,211,102,0.55), 0 6px 14px rgba(0,0,0,0.18);
    z-index: 200;
    transition: transform .15s ease;
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 28px; height: 28px; }
.fab::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.35);
    animation: pulse 4s ease-out infinite;
    pointer-events: none;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.28); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Keep last section content from sitting under the FAB on mobile */
.final-cta { scroll-margin-bottom: 80px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .hero { padding: 36px 0 22px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-copy { max-width: none; }
    .hero-visual { order: 2; }
    .biz-grid { grid-template-columns: 1fr; gap: 36px; }
    .how-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-panel { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    .nav-mobile:not([hidden]) { display: block; }
    .hero {
        padding: 28px 0 18px;
        background-size: auto, auto, 28px 28px, auto;
    }
    .hero-grid { gap: 24px; }
    .hero-copy { text-align: left; }
    .onboarding-banner {
        align-items: flex-start;
        flex-wrap: wrap;
        border-radius: var(--radius);
        padding: 12px;
        margin-bottom: 14px;
    }
    .onboarding-banner-copy { font-size: 13.5px; }
    .onboarding-banner-link {
        width: 100%;
        padding: 10px 13px;
    }
    .badge { display: none; }
    .display { margin-bottom: 14px; }
    .lede {
        font-size: 16.5px;
        margin-bottom: 20px;
    }
    .cta-row { margin-bottom: 16px; }
    .trust-strip {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.45;
    }
    .chip-row {
        justify-content: flex-start;
        gap: 8px;
        margin-top: 26px;
    }
    .chip {
        padding: 8px 12px;
        font-size: 13px;
    }
    .chip:nth-child(n+7) { display: none; }
    .section { padding: 60px 0; }
    .section-head { margin-bottom: 34px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .section-contact { padding-top: 0; }
    .contact-panel {
        padding: 24px;
        gap: 22px;
    }
    .biz-form-card { padding: 22px; }
    .form-card-head {
        align-items: flex-start;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    .form-fields { gap: 12px; }
    .form-fields li {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 13px 14px;
    }
    .field-label { font-size: 11px; }
    .field-line { font-size: 14.5px; }
    .hero-visual { margin-top: 0; }
    .phone { transform: rotate(0); width: 280px; }
    .phone-screen { height: 480px; }
    .bubble {
        max-width: 86%;
        font-size: 12.5px;
    }
    .footer { padding-top: 48px; }
    .footer-cols { gap: 24px; }
    .footer-cols ul { gap: 12px; }
    .footer-cols a { font-size: 15px; }
    .footer-bar-inner { flex-direction: column; gap: 10px; }
}

@media (max-width: 720px) {
    .footer { padding-bottom: 70px; }
}

@media (max-width: 420px) {
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .display { font-size: 2rem; }
    .container { padding: 0 16px; }
    .hero { padding-top: 24px; }
    .onboarding-banner { padding: 11px; }
    .hero .cta-row .btn,
    .final-cta .cta-row .btn { width: 100%; }
    .phone { width: 260px; }
    .phone-screen { height: 455px; }
    .wa-chat { padding: 12px 10px 10px; gap: 7px; }
    .bubble { font-size: 12px; line-height: 1.35; }
    .cat-card { padding: 18px 16px; }
    .biz-form-card { padding: 20px; }
    .footer-inner { gap: 24px; }
    .footer-cols { grid-template-columns: 1fr; }
    .fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
