:root {
    --primary: #ff5a1f;
    --primary-dark: #e0500f;
    --ink: #1c1917;
    --ink-soft: #57534e;
    --line: #ede8e2;
    --tint: #fff5ef;
    --white: #ffffff;
    --radius: 8px;
    --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-mark-text {
    font-family: 'Sora', 'Manrope', sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Nav ---------- */
.nav {
    border-bottom: 1px solid var(--line);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 20;
}
.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
}
.brand-mark-text {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
}
.brand-chip {
    width: 0.8rem;
    height: 0.8rem;
    background: var(--primary);
    border-radius: 0.2rem;
    transform: rotate(8deg);
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav-links a.section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.nav-links a.section-link:hover { color: var(--ink); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.3rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 0.85rem 1.7rem; font-size: 0.975rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
    padding: clamp(3.5rem, 9vw, 7.5rem) 0 clamp(3rem, 7vw, 5rem);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 1.1rem;
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.08;
    max-width: 17ch;
    text-wrap: balance;
    color: var(--ink);
}
.hero-lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 1.4rem 0 0;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.hero-trust {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

/* Hero visual: a mock comparison card, echoing the actual product */
.hero-visual {
    background: var(--tint);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.75rem;
}
.mock-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 12px 30px -18px rgba(28,25,23,0.25);
}
.mock-progress {
    height: 4px;
    background: var(--line);
    border-radius: 3px;
    margin: -1.25rem -1.25rem 1.1rem;
    overflow: hidden;
}
.mock-progress span {
    display: block;
    width: 62%;
    height: 100%;
    background: var(--primary);
}
.mock-row { display: flex; gap: 0.6rem; margin-bottom: 1.1rem; }
.mock-swatch {
    flex: 1;
    height: 74px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #ffe3d3, #ffcbb0);
}
.mock-swatch.b { background: linear-gradient(135deg, #dfe7ff, #c3d0ff); }
.mock-q { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.6rem; }
.mock-scale { display: flex; gap: 0.35rem; }
.mock-scale span {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.4rem 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink-soft);
}
.mock-scale span.active {
    border-color: #198754;
    background: rgba(25,135,84,.08);
    color: #198754;
    font-weight: 700;
}
.swatch-strip { display: flex; align-items: flex-end; gap: 0.4rem; margin-top: 1.5rem; }
.swatch-strip div { width: 2rem; border-radius: 5px; box-shadow: 0 1px 2px rgba(28,25,23,.08); }
.swatch-strip div:nth-child(1) { height: 2rem; background: #1c1917; }
.swatch-strip div:nth-child(2) { height: 2.6rem; background: #ff5a1f; }
.swatch-strip div:nth-child(3) { height: 3.1rem; background: #c93e0c; }
.swatch-strip div:nth-child(4) { height: 2.3rem; background: #ff8b5c; }
.swatch-strip div:nth-child(5) { height: 1.7rem; background: #f2c29a; }

/* ---------- Logos / proof strip ---------- */
.proof {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}
.proof .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    align-items: center;
    justify-content: space-between;
}
.proof-item {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 600;
}
.proof-item strong { color: var(--ink); font-weight: 700; }

/* ---------- Section shell ---------- */
section.block { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { justify-content: center; display: flex; }
.section-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    text-wrap: balance;
}
.section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-top: 0.85rem;
}

/* ---------- Features ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.feature-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    background: var(--white);
    transition: border-color .15s ease, transform .15s ease;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.feature-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: var(--tint);
    padding: 0.25rem 0.55rem;
    border-radius: 5px;
    margin-bottom: 0.9rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.price-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
    background: var(--white);
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px -24px rgba(255,90,31,.35);
    position: relative;
}
.price-badge {
    position: absolute;
    top: -0.7rem;
    left: 1.9rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
}
.price-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.price-amount { font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.price-amount span { font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.price-blurb { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.4rem; min-height: 2.6rem; }
.price-list { list-style: none; margin: 0 0 1.6rem; padding: 0; flex-grow: 1; }
.price-list li {
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 0.55rem;
    color: var(--ink);
}
.price-list li:first-child { border-top: none; }
.price-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 44rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.25rem 0; }
.faq-item summary {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform .15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); font-size: 0.92rem; margin: 0.75rem 0 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); text-wrap: balance; }
.cta-banner p { color: rgba(255,255,255,.65); max-width: 40rem; margin: 0.9rem auto 1.8rem; }
.cta-banner .btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; }
.cta-banner .btn-ghost:hover { border-color: #fff; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}
.footer-brand p { color: var(--ink-soft); font-size: 0.88rem; max-width: 26ch; margin: 0.9rem 0 0; }
.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--ink); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

/* ---------- Content subpages (features / SEO topic pages) ---------- */
.breadcrumb {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--primary); }
.page-hero { padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    line-height: 1.12;
    max-width: 22ch;
    text-wrap: balance;
    color: var(--ink);
}
.page-hero .hero-lead { max-width: 52ch; }
.prose { max-width: 42rem; }
.prose h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); font-size: 1rem; margin: 0 0 1rem; }
.check-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.check-list li {
    display: flex;
    gap: 0.7rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.96rem;
    color: var(--ink);
}
.check-list li:first-child { border-top: none; }
.check-list li::before {
    content: "\2713";
    flex-shrink: 0;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: var(--tint);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    background: var(--tint);
}
.stat-card .num { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.stat-card .label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.2rem; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.side-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.75rem;
    background: var(--tint);
    position: sticky;
    top: 6rem;
}
.side-panel h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.side-panel ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.side-panel li { font-size: 0.88rem; color: var(--ink-soft); padding: 0.4rem 0; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.related-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.related-card:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links .section-link { display: none; }
    .content-grid { grid-template-columns: 1fr; }
    .side-panel { position: static; }
    .stat-strip { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .proof .wrap { justify-content: flex-start; }
}
