/* =========================================================
   marketing.css — Classic, editorial marketing pages
   Serif display headlines (Fraunces) + clean sans body,
   warm ivory ground, single restrained deep-green accent —
   deliberately away from "modern SaaS gradient" territory.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --mkt-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --mkt-ink: #1c1a17;
    --mkt-ink-soft: #5c574e;
    --mkt-ivory: #faf7f2;
    --mkt-ivory-deep: #f2ede3;
    --mkt-border: #e2dccd;
    --mkt-accent: #234d3a;
    --mkt-accent-soft: #2f6349;
    --mkt-accent-tint: #eaf1ec;
}

.mkt-body {
    background: #ffffff;
    color: var(--mkt-ink);
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mkt-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* Wider variant for content that genuinely needs the room — e.g. 5
   pricing cards side by side, where the standard 1080px reading-width
   container leaves each card too narrow and wraps feature text badly. */
.mkt-container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Nav ─────────────────────────────────────────── */
.mkt-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 300;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--mkt-border);
}

.mkt-nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mkt-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mkt-serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--mkt-ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.mkt-logo span { color: var(--mkt-ink-soft); font-weight: 400; }
.mkt-logo-icon {
    width: 28px; height: 28px;
    background: var(--mkt-accent);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--mkt-serif);
}

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-left: auto;
}
.mkt-nav-links a {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mkt-ink-soft);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}
.mkt-nav-links a:hover { background: var(--mkt-accent-tint); color: var(--mkt-accent); }
.mkt-nav-links a.active { color: var(--mkt-accent); font-weight: 600; }

.mkt-nav-actions { display: flex; align-items: center; gap: 0.4rem; }

.mkt-btn-ghost-nav {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mkt-ink-soft);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}
.mkt-btn-ghost-nav:hover { background: var(--mkt-accent-tint); color: var(--mkt-accent); }

.mkt-btn-nav-primary {
    padding: 0.38rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--mkt-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s;
}
.mkt-btn-nav-primary:hover { background: var(--mkt-accent-soft); }

/* Mobile nav */
.mkt-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.mkt-hamburger span { display: block; width: 20px; height: 2px; background: #444; border-radius: 2px; }

.mkt-mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #c8c8c8;
    padding: 0.5rem 1.5rem 1rem;
}
.mkt-mobile-menu.open { display: flex; }
.mkt-mobile-menu a {
    padding: 0.6rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}
/* Keep the dark CTA button's label readable inside the mobile menu */
.mkt-mobile-menu .mkt-btn-nav-primary {
    color: #fff;
    border-bottom: none;
    text-align: center;
    justify-content: center;
}
.mkt-mobile-menu hr { border: none; border-top: 1px solid #ccc; margin: 0.4rem 0; }

/* ── Shared section spacing ─────────────────────── */
.mkt-section { padding: 40px 0; }

/* ── Eyebrow label ─────────────────────────────── */
.mkt-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mkt-ink-soft);
    margin-bottom: 0.85rem;
}

/* ── Hero ─────────────────────────────────────────── */
.mkt-hero {
    position: relative;
    padding: 76px 0 40px;
    background: var(--mkt-ivory);
    border-bottom: 1px solid var(--mkt-border);
    overflow: hidden;
    text-align: center;
}
.mkt-hero-glow { display: none; }
.mkt-hero-inner { position: relative; z-index: 1; }

.mkt-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--mkt-accent);
    background: transparent;
    border: 1px solid var(--mkt-accent);
    padding: 4px 14px; border-radius: 2px;
    margin-bottom: 1.1rem;
}

.mkt-hero h1 {
    font-family: var(--mkt-serif);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -0.01em;
    color: var(--mkt-ink);
    margin: 0 auto 0.85rem;
    max-width: 640px;
}
.mkt-hero h1 span {
    font-style: italic;
    color: var(--mkt-accent);
}

.mkt-hero p {
    font-size: 0.98rem;
    color: var(--mkt-ink-soft);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.4rem;
}
.mkt-hero .mkt-br { display: none; }

.mkt-hero-actions { display: flex; align-items: center; justify-content: center; gap: 0.7rem; flex-wrap: wrap; }

.mkt-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    background: var(--mkt-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-btn-primary:hover { background: var(--mkt-accent-soft); }

.mkt-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    background: transparent;
    color: var(--mkt-ink);
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid var(--mkt-ink);
    transition: border-color 0.15s, color 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-btn-outline:hover { border-color: var(--mkt-accent); color: var(--mkt-accent); }

.mkt-hero-trust {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}
.mkt-hero-trust span {
    font-size: 0.8rem;
    color: var(--mkt-ink-soft);
    display: inline-flex; align-items: center; gap: 6px;
}
.mkt-hero-trust span::before { content: '—'; color: var(--mkt-accent); font-weight: 700; }

/* ── Value strip ─────────────────────────────────── */
.mkt-strip { padding: 0 0 8px; }
.mkt-strip-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--mkt-border);
    border: 1px solid var(--mkt-border);
    overflow: hidden;
}
.mkt-strip-item { background: #fff; padding: 20px 22px; }
.mkt-strip-item strong { display: block; font-family: var(--mkt-serif); font-weight: 600; font-size: 1.05rem; color: var(--mkt-ink); margin-bottom: 3px; }
.mkt-strip-item span { font-size: 0.8rem; color: var(--mkt-ink-soft); }

/* ── Section heading ─────────────────────────────── */
.mkt-section-head { text-align: center; margin-bottom: 1.75rem; }
.mkt-kicker {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--mkt-accent);
    margin-bottom: 0.7rem;
}
.mkt-section-head h2 {
    font-family: var(--mkt-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--mkt-ink);
    margin-bottom: 0.6rem;
}
.mkt-section-head p { font-size: 0.95rem; color: var(--mkt-ink-soft); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ── Feature cards ─────────────────────────────── */
.mkt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--mkt-border);
    border: 1px solid var(--mkt-border);
}
.mkt-feature-card {
    background: #fff;
    padding: 26px 24px 28px;
    transition: background 0.16s;
}
.mkt-feature-card:hover { background: var(--mkt-ivory); }
.mkt-feature-icon {
    width: 40px; height: 40px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: var(--mkt-accent-tint);
    color: var(--mkt-accent);
}
.mkt-feature-icon svg { width: 20px; height: 20px; }
.mkt-feature-icon.f-indigo,
.mkt-feature-icon.f-emerald,
.mkt-feature-icon.f-violet,
.mkt-feature-icon.f-amber,
.mkt-feature-icon.f-rose,
.mkt-feature-icon.f-sky { background: var(--mkt-accent-tint); color: var(--mkt-accent); }
.mkt-feature-card h3 { font-family: var(--mkt-serif); font-size: 1.05rem; font-weight: 600; color: var(--mkt-ink); margin-bottom: 0.5rem; }
.mkt-feature-card p  { font-size: 0.875rem; color: var(--mkt-ink-soft); line-height: 1.6; }

/* ── Built for Kenya ─────────────────────────────── */
.mkt-kenya { padding: 12px 0 36px; }
.mkt-kenya-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.mkt-kenya-text h2 {
    font-family: var(--mkt-serif); font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600; letter-spacing: -0.01em; color: var(--mkt-ink); margin: 0.3rem 0 0.7rem;
}
.mkt-kenya-text p { font-size: 0.95rem; color: var(--mkt-ink-soft); line-height: 1.65; }
.mkt-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.mkt-checklist li {
    position: relative; padding-left: 34px;
    font-size: 0.9rem; color: var(--mkt-ink-soft); line-height: 1.5;
}
.mkt-checklist li span { display: block; font-weight: 700; color: var(--mkt-ink); margin-bottom: 1px; }
.mkt-checklist li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 18px; height: 1px;
    background: var(--mkt-accent);
}

/* ── Testimonials ─────────────────────────────────── */
.mkt-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.mkt-testimonial {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 1.25rem;
}
.mkt-testimonial-quote {
    font-size: 0.8125rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.mkt-testimonial-quote::before { content: '\201C'; }
.mkt-testimonial-quote::after  { content: '\201D'; }
.mkt-testimonial-author { font-size: 0.75rem; font-weight: 700; color: #0a0a0a; }
.mkt-testimonial-author span { display: block; font-weight: 400; color: #888; margin-top: 1px; }

/* ── CTA band ─────────────────────────────────────── */
.mkt-cta-band {
    padding: 44px 0;
    background: var(--mkt-ink);
}
.mkt-cta-band h2 {
    font-family: var(--mkt-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.mkt-cta-band p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }
.mkt-cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.mkt-btn-primary-xl {
    display: inline-flex; align-items: center;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem; font-weight: 600;
    background: #fff; color: var(--mkt-ink);
    text-decoration: none; border-radius: 3px;
    transition: background 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-btn-primary-xl:hover { background: var(--mkt-ivory-deep); }

.mkt-btn-outline-xl {
    display: inline-flex; align-items: center;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.15s, color 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-btn-outline-xl:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── Pricing ─────────────────────────────────────── */
.mkt-plans-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: stretch;
}
.mkt-plan {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}
.mkt-plan-cta { margin-top: auto; }
.mkt-plan.featured {
    background: var(--mkt-ink);
    border-color: var(--mkt-ink);
    color: #fff;
}
.mkt-plan-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: var(--mkt-accent);
    color: #fff;
    padding: 0.18rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.85rem;
}
.mkt-plan-name {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--mkt-ink-soft);
    margin-bottom: 0.4rem;
}
.mkt-plan.featured .mkt-plan-name { color: rgba(255,255,255,0.4); }
.mkt-plan-price { display: flex; align-items: baseline; gap: 0.1rem; }
.mkt-plan-currency { font-size: 0.8rem; font-weight: 600; color: var(--mkt-ink-soft); margin-top: 4px; }
.mkt-plan.featured .mkt-plan-currency { color: rgba(255,255,255,0.5); }
.mkt-plan-amount {
    font-family: var(--mkt-serif);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--mkt-ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.mkt-plan.featured .mkt-plan-amount { color: #fff; }
.mkt-plan-period { font-size: 0.72rem; color: var(--mkt-ink-soft); margin: 0.25rem 0 0.6rem; }
.mkt-plan.featured .mkt-plan-period { color: rgba(255,255,255,0.4); }
.mkt-plan-desc { font-size: 0.8rem; color: var(--mkt-ink-soft); line-height: 1.5; margin-bottom: 1rem; }
.mkt-plan.featured .mkt-plan-desc { color: rgba(255,255,255,0.5); }
.mkt-plan-divider { border: none; border-top: 1px solid var(--mkt-border); margin: 1rem 0; }
.mkt-plan.featured .mkt-plan-divider { border-color: rgba(255,255,255,0.1); }
.mkt-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}
.mkt-plan-features li { font-size: 0.8rem; color: var(--mkt-ink-soft); line-height: 1.45; display: flex; align-items: flex-start; gap: 0.5rem; }
.mkt-plan.featured .mkt-plan-features li { color: rgba(255,255,255,0.65); }
.mkt-plan-features .ck { color: var(--mkt-accent); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.2rem; }
.mkt-plan-features .x  { color: #c9c2b3; font-size: 0.75rem; flex-shrink: 0; margin-top: 0.2rem; }
.mkt-plan.featured .mkt-plan-features .x { color: rgba(255,255,255,0.15); }
.mkt-plan-cta {
    display: block; text-align: center;
    padding: 0.6rem;
    font-size: 0.8125rem; font-weight: 600;
    border-radius: 3px; text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-plan.featured .mkt-plan-cta { background: #fff; color: var(--mkt-ink); }
.mkt-plan.featured .mkt-plan-cta:hover { background: var(--mkt-ivory-deep); }
.mkt-plan:not(.featured) .mkt-plan-cta {
    background: transparent;
    border: 1px solid var(--mkt-border);
    color: var(--mkt-ink);
}
.mkt-plan:not(.featured) .mkt-plan-cta:hover { border-color: var(--mkt-accent); color: var(--mkt-accent); }

/* ── Comparison table ─────────────────────────────── */
.mkt-compare {
    border: 1px solid var(--mkt-border);
    border-radius: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #fff;
}
.mkt-compare-header,
.mkt-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    min-width: 720px;
    border-bottom: 1px solid var(--mkt-border);
}
.mkt-compare-header { background: var(--mkt-ivory); }
.mkt-compare-col-head {
    padding: 0.6rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--mkt-ink-soft);
}
.mkt-compare-col-head.featured { color: var(--mkt-accent); }
.mkt-compare-row > div {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--mkt-ink-soft);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--mkt-border);
}
.mkt-compare-row > div:last-child { border-right: none; }
.mkt-compare-row > div.featured { background: var(--mkt-accent-tint); }
.mkt-compare-row .feature-name { font-weight: 500; color: var(--mkt-ink); }
.mkt-compare-section-head {
    grid-column: 1 / -1;
    padding: 0.4rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--mkt-ink-soft);
    background: var(--mkt-ivory);
    border-right: none !important;
}
.mkt-compare-row:last-child { border-bottom: none; }
.ck { color: var(--mkt-accent); }
.x  { color: #c9c2b3; }

/* ── FAQ ─────────────────────────────────────────── */
.mkt-faq { max-width: 640px; margin: 0 auto; }
.mkt-faq-item { border-bottom: 1px solid var(--mkt-border); }
.mkt-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mkt-ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
}
.mkt-faq-chevron { font-size: 1rem; color: var(--mkt-ink-soft); flex-shrink: 0; transition: transform 0.2s; }
.mkt-faq-item.open .mkt-faq-chevron { transform: rotate(180deg); }
.mkt-faq-a {
    display: none;
    padding: 0 0 0.9rem;
    font-size: 0.8125rem;
    color: var(--mkt-ink-soft);
    line-height: 1.65;
}
.mkt-faq-item.open .mkt-faq-a { display: block; }

/* ── Contact ─────────────────────────────────────── */
.mkt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
}
.mkt-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}
.mkt-contact-icon-wrap {
    width: 34px; height: 34px;
    background: var(--mkt-accent-tint);
    border: 1px solid var(--mkt-border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--mkt-accent);
    flex-shrink: 0;
}
.mkt-contact-icon-wrap svg { width: 17px; height: 17px; }
.mkt-contact-info-item strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--mkt-ink-soft);
    margin-bottom: 0.1rem;
}
.mkt-contact-info-item a,
.mkt-contact-info-item span { font-size: 0.8125rem; color: var(--mkt-ink); text-decoration: none; }
.mkt-contact-info-item a:hover { color: var(--mkt-accent); }

/* Shared "aside card" treatment for the response-time / already-a-customer
   boxes — was a flat #c8c8c8 box with an Outfit-font number, left over
   from the pre-redesign palette and visibly inconsistent with everything
   else on the page. */
.mkt-contact-aside-card {
    background: var(--mkt-ivory);
    border: 1px solid var(--mkt-border);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
}
.mkt-contact-aside-label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--mkt-accent); margin-bottom: 0.6rem;
}
.mkt-contact-aside-card p { font-size: 0.83rem; color: var(--mkt-ink-soft); line-height: 1.65; margin-bottom: 1rem; }
.mkt-response-times { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.mkt-response-time strong {
    display: block; font-family: var(--mkt-serif); font-size: 1.5rem;
    font-weight: 600; color: var(--mkt-ink); line-height: 1;
}
.mkt-response-time span { font-size: 0.72rem; color: var(--mkt-ink-soft); }

.mkt-contact-form {
    background: #fff;
    border: 1px solid var(--mkt-border);
    border-radius: 4px;
    padding: 1.75rem;
}
.mkt-contact-form h3 { font-family: var(--mkt-serif); font-size: 1.15rem; font-weight: 600; color: var(--mkt-ink); margin-bottom: 0.3rem; }
.mkt-contact-form > p { font-size: 0.8rem; color: var(--mkt-ink-soft); margin-bottom: 1.25rem; }

.mkt-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mkt-form-group { margin-bottom: 0.75rem; }
.mkt-form-group label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--mkt-ink-soft);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mkt-form-group input,
.mkt-form-group select,
.mkt-form-group textarea {
    width: 100%;
    padding: 0.5rem 0.7rem;
    font-size: 0.8125rem;
    background: var(--mkt-ivory);
    border: 1px solid var(--mkt-border);
    border-radius: 3px;
    color: var(--mkt-ink);
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
    transition: border-color 0.15s, background 0.15s;
    outline: none;
}
.mkt-form-group input:focus,
.mkt-form-group select:focus,
.mkt-form-group textarea:focus { border-color: var(--mkt-accent); background: #fff; }
.mkt-form-group textarea { min-height: 100px; resize: vertical; }

.mkt-form-submit {
    width: 100%;
    padding: 0.65rem;
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--mkt-accent);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--font-main, 'Inter', system-ui, sans-serif);
    margin-top: 0.25rem;
}
.mkt-form-submit:hover { background: var(--mkt-accent-soft); }

.mkt-alert {
    padding: 0.65rem 0.9rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
}
.mkt-alert-success { background: var(--mkt-accent-tint); color: var(--mkt-accent); border: 1px solid #bcd6c5; }
.mkt-alert-error   { background: #f7ece9; color: #8a3b30; border: 1px solid #e3c4bb; }

/* ── Footer ─────────────────────────────────────── */
.mkt-footer {
    background: var(--mkt-ink);
    padding: 28px 0 0;
    font-size: 0.8rem;
}
.mkt-footer .mkt-container { max-width: 860px; }
.mkt-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mkt-footer-brand p {
    margin-top: 0.65rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.3);
    max-width: 230px;
    font-size: 0.75rem;
}
.mkt-footer h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.65rem;
}
.mkt-footer a {
    display: block;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    transition: color 0.15s;
}
.mkt-footer a:hover { color: rgba(255,255,255,0.85); }
.mkt-footer .mkt-logo { color: #fff; }
.mkt-footer .mkt-logo span { color: rgba(255,255,255,0.4); }
.mkt-footer .mkt-logo-icon { background: #fff; color: var(--mkt-ink); }
.mkt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Page-level hero for inner pages ─────────────── */
.mkt-page-hero {
    padding: 72px 0 32px;
    background: var(--mkt-ivory);
    border-bottom: 1px solid var(--mkt-border);
}
.mkt-page-hero h1 {
    font-family: var(--mkt-serif);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--mkt-ink);
    margin-bottom: 0.5rem;
}
.mkt-page-hero p { font-size: 0.9rem; color: var(--mkt-ink-soft); max-width: 480px; }

/* ── Shared section heading (used outside .mkt-section-head) ── */
.mkt-h2 {
    font-family: var(--mkt-serif);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--mkt-ink);
}

/* ── CTA band button-size modifier + inner wrapper ── */
.mkt-cta-band-inner { text-align: center; }
.mkt-btn-xl { padding: 0.8rem 1.9rem; font-size: 0.95rem; }

/* ── Legal pages ─────────────────────────────────── */
.mkt-legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 56px;
}
.mkt-legal h2 {
    font-family: var(--mkt-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mkt-ink);
    margin: 1.75rem 0 0.5rem;
}
.mkt-legal h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mkt-ink);
    margin: 1.1rem 0 0.3rem;
}
.mkt-legal p {
    font-size: 0.875rem;
    color: var(--mkt-ink-soft);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.mkt-legal ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
    font-size: 0.875rem;
    color: var(--mkt-ink-soft);
    line-height: 1.75;
}
.mkt-legal ul li { margin-bottom: 0.25rem; }
.mkt-legal a { color: var(--mkt-accent); text-decoration: underline; }
.mkt-legal-updated {
    font-size: 0.75rem;
    color: var(--mkt-ink-soft);
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--mkt-border);
}

/* ── Responsive ─────────────────────────────────── */
/* Between the single-column phone/tablet layout and the point where the
   wide container comfortably fits 5 columns, 5-up gets too cramped
   (columns as narrow as ~140px, most feature bullets wrapping badly).
   Give this middle zone 2 columns instead. */
@media (min-width: 901px) and (max-width: 1240px) {
    .mkt-plans-grid { grid-template-columns: 1fr 1fr; max-width: 640px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .mkt-nav-links, .mkt-nav-actions { display: none; }
    .mkt-hamburger { display: flex; }
    .mkt-features-grid { grid-template-columns: 1fr 1fr; }
    .mkt-testimonials { grid-template-columns: 1fr; }
    .mkt-plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .mkt-contact-grid { grid-template-columns: 1fr; }
    .mkt-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .mkt-features-grid { grid-template-columns: 1fr; border-radius: 0; }
    .mkt-form-grid-2 { grid-template-columns: 1fr; }
    .mkt-footer-grid { grid-template-columns: 1fr; }
    .mkt-cta-actions { flex-direction: column; align-items: flex-start; }
    .mkt-hero-actions { flex-direction: column; align-items: flex-start; }
    .mkt-compare-header, .mkt-compare-row { font-size: 0.72rem; }
    .mkt-compare-row > div { padding: 0.4rem 0.5rem; }
}
