:root {
    --navy: #163B6D;
    --navy-deep: #0f2947;
    --orange: #BD710D;
    --orange-light: #E08F2E;
    --text: #1c2128;
    --muted: #5c6370;
    --border: #e7eaf0;
    --bg: #ffffff;
    --bg-alt: #f6f8fb;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

/* ---------- Top nav ---------- */

.mkt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 5%;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    z-index: 50;
}

.mkt-nav .logo img { height: 32px; }

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 1.8em;
}

.mkt-nav-links a { color: var(--text); font-weight: 500; font-size: 0.95em; }
.mkt-nav-links a:hover { color: var(--navy); text-decoration: none; }

.mkt-nav-cta { display: flex; gap: 0.8em; align-items: center; }

.btn {
    display: inline-block;
    padding: 0.65em 1.5em;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: var(--navy); font-weight: 600; }
.btn-lg { padding: 0.9em 2em; font-size: 1.05em; }

.mkt-mobile-toggle { display: none; background: none; border: none; font-size: 1.5em; cursor: pointer; color: var(--navy); }

/* ---------- Sections ---------- */

.section { padding: 5em 5%; }
.section-narrow { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.82em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8em;
}

h1.hero-title {
    font-size: clamp(2.1em, 5vw, 3.2em);
    color: var(--navy-deep);
    line-height: 1.15;
    margin: 0 0 0.4em;
}

.hero-sub { font-size: 1.2em; color: var(--muted); max-width: 640px; margin: 0 0 2em; }

h2.section-title {
    font-size: clamp(1.6em, 3vw, 2.2em);
    color: var(--navy-deep);
    margin: 0 0 0.4em;
}

.section-sub { color: var(--muted); max-width: 680px; margin-bottom: 2.5em; font-size: 1.05em; }

/* ---------- Hero ---------- */

.hero {
    background: linear-gradient(160deg, #ffffff 0%, #f0f4fa 60%, #fdf2e4 100%);
    padding: 6em 5% 5em;
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3em; align-items: center; max-width: 1200px; margin: 0 auto; }

.hero-cta { display: flex; gap: 1em; flex-wrap: wrap; margin-bottom: 1.5em; }

.hero-note { color: var(--muted); font-size: 0.88em; }

.hero-visual {
    background: var(--navy-deep);
    border-radius: 16px;
    padding: 2em;
    box-shadow: 0 20px 60px rgba(15,41,71,0.25);
}

.hero-visual .mock-bar { display: flex; gap: 0.4em; margin-bottom: 1em; }
.hero-visual .mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-visual .mock-card { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 1em; margin-bottom: 0.8em; }
.hero-visual .mock-label { color: rgba(255,255,255,0.55); font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual .mock-value { color: #fff; font-size: 1.4em; font-weight: 700; margin-top: 0.2em; }
.hero-visual .mock-bar-chart { display: flex; align-items: flex-end; gap: 0.4em; height: 60px; margin-top: 0.6em; }
.hero-visual .mock-bar-chart div { flex: 1; background: var(--orange); border-radius: 3px 3px 0 0; opacity: 0.85; }

/* ---------- Logos strip ---------- */

.logos-strip { text-align: center; padding: 2.5em 5%; color: var(--muted); font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Feature grid ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6em; }

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,30,60,0.08); }

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #eef2f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    margin-bottom: 1em;
}

.feature-card h3 { color: var(--navy-deep); font-size: 1.1em; margin: 0 0 0.4em; }
.feature-card p { color: var(--muted); font-size: 0.94em; margin: 0; }

/* ---------- ElimuPay callout ---------- */

.elimupay-panel {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: 20px;
    padding: 3em;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5em;
    align-items: center;
}
.elimupay-panel h2 { color: #fff; }
.elimupay-panel p { color: rgba(255,255,255,0.8); }
.elimupay-stat { display: flex; gap: 2em; margin-top: 1.5em; flex-wrap: wrap; }
.elimupay-stat .num { font-size: 1.8em; font-weight: 800; color: var(--orange-light); }
.elimupay-stat .lbl { font-size: 0.8em; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.04em; }

.step-list { list-style: none; padding: 0; margin: 0; }
.step-list li { display: flex; gap: 1em; padding: 0.9em 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.step-list li:last-child { border-bottom: none; }
.step-list .step-n { background: var(--orange); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85em; flex-shrink: 0; }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8em; align-items: stretch; }

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.2em;
    display: flex;
    flex-direction: column;
}
.price-card.featured { border: 2px solid var(--orange); box-shadow: 0 15px 40px rgba(189,113,13,0.15); position: relative; }
.price-card.featured::before {
    content: "Most popular";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    padding: 0.3em 1em;
    border-radius: 20px;
}

.price-card h3 { color: var(--navy-deep); margin: 0 0 0.3em; }
.price-card .price { font-size: 2.1em; font-weight: 800; color: var(--navy-deep); margin: 0.3em 0; }
.price-card .price small { font-size: 0.4em; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 1.2em 0; flex: 1; }
.price-card li { padding: 0.4em 0; color: var(--muted); font-size: 0.92em; }
.price-card li::before { content: "✓ "; color: var(--navy); font-weight: 700; }

/* ---------- Testimonial / CTA band ---------- */

.cta-band {
    background: var(--navy-deep);
    color: #fff;
    text-align: center;
    padding: 4.5em 5%;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2em; }

/* ---------- Footer ---------- */

.mkt-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 3.5em 5% 2em; }
.mkt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2em; max-width: 1200px; margin: 0 auto 2.5em; }
.mkt-footer h4 { color: #fff; font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 1em; }
.mkt-footer ul { list-style: none; padding: 0; margin: 0; }
.mkt-footer li { margin-bottom: 0.6em; }
.mkt-footer a { color: rgba(255,255,255,0.7); font-size: 0.92em; }
.mkt-footer a:hover { color: #fff; }
.mkt-footer-bottom { text-align: center; padding-top: 1.5em; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85em; color: rgba(255,255,255,0.5); }
.mkt-footer .logo img { height: 28px; margin-bottom: 1em; }

/* ---------- Simple content pages (about/terms/privacy) ---------- */

.content-page { max-width: 780px; margin: 0 auto; padding: 4em 5% 6em; }
.content-page h1 { color: var(--navy-deep); }
.content-page h2 { color: var(--navy); margin-top: 1.8em; }
.content-page p, .content-page li { color: #333; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .elimupay-panel { grid-template-columns: 1fr; padding: 2em; }
    .mkt-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .mkt-nav-links, .mkt-nav-cta .btn-outline { display: none; }
    .mkt-mobile-toggle { display: block; }
    .section { padding: 3.5em 6%; }
}
