/* ─── Getoutpulse Mail — Landing CSS (Trackify Design System) ─────────────── */

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

:root {
    --peacock:    #021933;
    --seaweed:    #184136;
    --emerald:    #397868;
    --carrot:     #F75709;
    --bonfire:    #FBE3CF;
    --chartreuse: #BDF041;
    --lime:       #E8FFB8;
    --porcelain:  #F9F9F9;
    --chiffon:    #F3F3F3;
    --white:      #FFFFFF;
    --muted:      #5a6474;
    --border:     #e8eaed;
    --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--peacock);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.l-nav {
    position: sticky; top: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem; height: 68px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(2,25,51,0.04);
}

.l-nav-logo {
    display: flex; flex-direction: column; line-height: 1;
    gap: 1px;
}
.l-nav-logo .brand {
    font-size: 1.2rem; font-weight: 800; color: var(--peacock);
    letter-spacing: -0.3px;
}
.l-nav-logo .sub {
    font-size: 0.62rem; font-weight: 600; color: var(--emerald);
    letter-spacing: 0.1em; text-transform: uppercase;
    align-self: flex-end; margin-right: 1px;
}

.l-nav-links {
    display: flex; align-items: center; gap: 0.25rem;
}
.l-nav-links a {
    padding: 0.4rem 0.9rem;
    font-size: 0.875rem; font-weight: 500; color: var(--muted);
    border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.l-nav-links a:hover { color: var(--peacock); background: var(--porcelain); }
.l-nav-links a.active { color: var(--carrot); }

.l-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem; font-weight: 600; color: var(--peacock);
    border: 1.5px solid var(--border); border-radius: 50px;
    transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: var(--peacock); }
.btn-amber {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem; font-weight: 700; color: var(--white);
    background: var(--carrot); border-radius: 50px;
    transition: opacity 0.15s;
}
.btn-amber:hover { opacity: 0.88; }

.l-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.5rem; color: var(--peacock);
}
.l-hamburger span {
    display: block; width: 22px; height: 2px; background: currentColor;
    margin: 5px 0; transition: 0.2s;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.l-hero {
    background: var(--porcelain);
    padding: 5rem 2.5rem 4.5rem;
    position: relative; overflow: hidden;
}
.l-hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4.5rem; align-items: center;
}
.l-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--carrot);
    margin-bottom: 1.5rem;
}
.l-hero-eyebrow::before {
    content: ''; display: inline-block;
    width: 20px; height: 2px; background: var(--carrot); flex-shrink: 0;
}
.l-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.7rem);
    font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
    color: var(--peacock); margin-bottom: 1.25rem;
}
.l-hero h1 em { font-style: normal; color: var(--carrot); }
.l-hero-sub {
    font-size: 1.05rem; color: var(--muted);
    max-width: 460px; margin-bottom: 2.5rem; line-height: 1.75;
}
.l-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero {
    padding: 0.9rem 2.1rem; background: var(--carrot); border-radius: 50px;
    font-size: 0.95rem; font-weight: 700; color: var(--white);
    transition: opacity 0.15s;
}
.btn-hero:hover { opacity: 0.88; }
.btn-hero-outline {
    padding: 0.9rem 2.1rem; border: 2px solid var(--peacock);
    border-radius: 50px; font-size: 0.95rem; font-weight: 600; color: var(--peacock);
    transition: background 0.15s, color 0.15s;
}
.btn-hero-outline:hover { background: var(--peacock); color: var(--white); }

/* Dashboard mockup */
.l-hero-visual { position: relative; }
.l-hero-mockup {
    background: var(--white); border-radius: 20px;
    box-shadow: 0 24px 80px rgba(2,25,51,0.12), 0 4px 16px rgba(2,25,51,0.06);
    padding: 1.75rem;
}
.l-hero-mockup-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem;
}
.l-hero-mockup-title { font-size: 0.875rem; font-weight: 700; color: var(--peacock); }
.l-hero-mockup-badge {
    font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.65rem;
    background: rgba(247,87,9,0.1); color: var(--carrot); border-radius: 50px;
}
.l-hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.l-hero-stat {
    background: var(--porcelain); border-radius: 12px;
    padding: 1rem 1rem 0.875rem;
}
.l-hero-stat-val {
    font-size: 1.5rem; font-weight: 800; color: var(--peacock);
    line-height: 1; margin-bottom: 0.25rem;
}
.l-hero-stat-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.l-hero-bar-label {
    font-size: 0.72rem; font-weight: 600; color: var(--muted);
    margin-bottom: 0.5rem;
    display: flex; justify-content: space-between;
}
.l-hero-bar {
    height: 7px; background: var(--porcelain); border-radius: 50px;
    margin-bottom: 0.85rem; overflow: hidden;
}
.l-hero-bar:last-of-type { margin-bottom: 0; }
.l-hero-bar-fill {
    height: 100%; border-radius: 50px; background: var(--carrot);
}
.l-hero-bar-fill--green { background: var(--emerald); }
.l-hero-subs {
    margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.l-hero-subs-num { font-size: 1.2rem; font-weight: 800; color: var(--peacock); }
.l-hero-subs-label { font-size: 0.72rem; color: var(--muted); }
.l-hero-subs-tag {
    font-size: 0.7rem; font-weight: 700; padding: 0.22rem 0.65rem;
    background: rgba(57,120,104,0.12); color: var(--emerald); border-radius: 50px;
}

/* ─── PROOF BAR ───────────────────────────────────────────────────────────── */
.l-proof {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.l-proof-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0;
}
.l-proof-item {
    flex: 1; min-width: 160px;
    display: flex; flex-direction: column; align-items: center;
    padding: 2rem 1rem;
    border-right: 1px solid var(--border);
}
.l-proof-item:last-child { border-right: none; }
.l-proof-num {
    font-size: 1.75rem; font-weight: 800; color: var(--carrot); line-height: 1;
    margin-bottom: 0.3rem;
}
.l-proof-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.03em; font-weight: 500; }

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
.l-section { padding: 6rem 2.5rem; }
.l-section--alt { background: var(--porcelain); }
.l-section--dark { background: var(--peacock); color: var(--white); }

.l-container { max-width: 1100px; margin: 0 auto; }

.l-section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--emerald); margin-bottom: 1rem;
}
.l-section-tag--light { color: rgba(255,255,255,0.45); }

.l-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.8px; line-height: 1.15;
    margin-bottom: 1rem; color: var(--peacock);
}
.l-section--dark .l-section-title { color: var(--white); }
.l-section-sub {
    color: var(--muted); font-size: 1rem; max-width: 520px; line-height: 1.7;
    margin-bottom: 3rem;
}
.l-section-sub--light { color: rgba(255,255,255,0.5); }

/* ─── BENEFIT ROW ─────────────────────────────────────────────────────────── */
.l-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.l-benefit {
    padding: 2rem; border: 1px solid var(--border); border-radius: 16px;
    background: var(--white); transition: box-shadow 0.2s;
}
.l-benefit:hover { box-shadow: 0 8px 32px rgba(2,25,51,0.07); }
.l-benefit-num {
    font-size: 2.5rem; font-weight: 900; color: var(--carrot);
    opacity: 0.22; line-height: 1; margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}
.l-benefit h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--peacock); }
.l-benefit p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ─── FEATURE SPLIT ───────────────────────────────────────────────────────── */
.l-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.l-split:last-child { margin-bottom: 0; }
.l-split--flip .l-split-visual { order: -1; }

.l-split-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--emerald); margin-bottom: 0.75rem;
}
.l-split h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800; letter-spacing: -0.5px; margin-bottom: 1rem;
    color: var(--peacock);
}
.l-split p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.7; }
.l-split ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.l-split ul li {
    font-size: 0.9rem; color: var(--peacock);
    display: flex; align-items: flex-start; gap: 0.65rem;
}
.l-split ul li::before {
    content: '→'; color: var(--carrot); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}

.l-split-visual {
    background: var(--bonfire); border-radius: 20px;
    padding: 2.5rem; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.l-split-visual--lime { background: var(--lime); }
.l-split-visual--peacock { background: var(--peacock); }

.l-split-stat { text-align: center; }
.l-split-stat-num {
    font-size: 4.5rem; font-weight: 900; color: var(--peacock);
    line-height: 1; letter-spacing: -3px;
}
.l-split-visual--lime .l-split-stat-num { color: var(--seaweed); }
.l-split-visual--peacock .l-split-stat-num { color: var(--white); }
.l-split-stat-num span { color: var(--carrot); }
.l-split-visual--lime .l-split-stat-num span { color: var(--seaweed); }
.l-split-stat-label {
    font-size: 0.85rem; color: rgba(2,25,51,0.45); margin-top: 0.5rem;
    letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.l-split-visual--lime .l-split-stat-label { color: rgba(24,65,54,0.55); }
.l-split-visual--peacock .l-split-stat-label { color: rgba(255,255,255,0.4); }

/* ─── COMPARISON TABLE ────────────────────────────────────────────────────── */
.l-compare-wrap {
    overflow-x: auto; border-radius: 16px;
    border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(2,25,51,0.04);
}
.l-compare {
    width: 100%; border-collapse: collapse;
    font-size: 0.9rem;
}
.l-compare th, .l-compare td {
    padding: 0.9rem 1.25rem; text-align: center;
    border-bottom: 1px solid var(--border);
}
.l-compare tr:last-child td { border-bottom: none; }
.l-compare th:first-child, .l-compare td:first-child { text-align: left; }
.l-compare thead tr { background: var(--peacock); }
.l-compare thead th { color: rgba(255,255,255,0.65); font-weight: 600; }
.l-compare thead th.l-compare-us { color: var(--chartreuse); }
.l-compare tbody tr:nth-child(even) { background: var(--porcelain); }
.l-compare .yes { color: var(--seaweed); font-weight: 700; }
.l-compare .no { color: #dc2626; }
.l-compare .col-us { background: rgba(247,87,9,0.04); }

/* ─── PRICING CARDS ───────────────────────────────────────────────────────── */
.l-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.l-plan {
    border: 1.5px solid var(--border); border-radius: 20px;
    padding: 2.25rem; display: flex; flex-direction: column;
    background: var(--white);
    transition: box-shadow 0.2s, transform 0.2s;
}
.l-plan:hover { box-shadow: 0 12px 40px rgba(2,25,51,0.1); transform: translateY(-4px); }
.l-plan--featured { border-color: var(--carrot); background: #fff8f5; }
.l-plan-badge {
    display: inline-block; background: var(--carrot); color: var(--white);
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 50px;
    margin-bottom: 1rem;
}
.l-plan-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--peacock); }
.l-plan-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.l-plan-price {
    font-size: 2.8rem; font-weight: 900; letter-spacing: -1.5px;
    color: var(--peacock); margin-bottom: 0.25rem; line-height: 1;
}
.l-plan-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; }
.l-plan-freq { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.l-plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.l-plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.l-plan-features li {
    font-size: 0.875rem; display: flex; align-items: flex-start;
    gap: 0.6rem; color: var(--peacock);
}
.l-plan-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.l-plan-cta {
    display: block; margin-top: 2rem; padding: 0.85rem;
    text-align: center; font-weight: 700; font-size: 0.9rem;
    background: var(--peacock); color: var(--white); border-radius: 50px;
    transition: background 0.15s;
}
.l-plan-cta:hover { background: var(--seaweed); }
.l-plan--featured .l-plan-cta { background: var(--carrot); color: var(--white); }
.l-plan--featured .l-plan-cta:hover { opacity: 0.88; background: var(--carrot); }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.l-faq { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.l-faq-item { border-bottom: 1px solid var(--border); }
.l-faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    text-align: left; padding: 1.25rem 0;
    font-size: 0.95rem; font-weight: 600; color: var(--peacock);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: inherit;
}
.l-faq-q::after { content: '+'; font-size: 1.3rem; color: var(--carrot); flex-shrink: 0; }
.l-faq-item.open .l-faq-q::after { content: '−'; }
.l-faq-a { font-size: 0.9rem; color: var(--muted); padding-bottom: 1.25rem; display: none; line-height: 1.7; }
.l-faq-item.open .l-faq-a { display: block; }

/* ─── INTEGRATION GRID ────────────────────────────────────────────────────── */
.l-int-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
}
.l-int-card {
    border: 1.5px solid var(--border); border-radius: 16px;
    padding: 1.5rem 1.25rem; text-align: center;
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.l-int-card:hover { border-color: var(--carrot); box-shadow: 0 4px 20px rgba(247,87,9,0.1); }
.l-int-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.l-int-name { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--peacock); }
.l-int-desc { font-size: 0.78rem; color: var(--muted); }

/* ─── FEATURE LIST (features page) ───────────────────────────────────────── */
.l-feat-section { margin-bottom: 4rem; }
.l-feat-section:last-child { margin-bottom: 0; }
.l-feat-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 2px solid var(--carrot);
}
.l-feat-header h2 { font-size: 1.3rem; font-weight: 800; color: var(--peacock); }
.l-feat-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}
.l-feat-item {
    padding: 1.25rem; border: 1px solid var(--border);
    border-radius: 12px; background: var(--white);
    transition: border-color 0.15s;
}
.l-feat-item:hover { border-color: var(--carrot); }
.l-feat-item h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--peacock); }
.l-feat-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.l-cta-banner {
    background: var(--seaweed);
    padding: 5.5rem 2.5rem; text-align: center;
}
.l-cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900; letter-spacing: -1px;
    color: var(--white); margin-bottom: 1rem;
}
.l-cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2.25rem; font-size: 1.05rem; }
.btn-cta {
    display: inline-block; padding: 1rem 2.5rem;
    background: var(--carrot); color: var(--white);
    font-weight: 700; font-size: 1rem; border-radius: 50px;
    transition: opacity 0.15s;
}
.btn-cta:hover { opacity: 0.88; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.l-footer {
    background: var(--peacock); color: rgba(255,255,255,0.45);
    padding: 4.5rem 2.5rem 2.25rem;
}
.l-footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.l-footer-brand .brand { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.l-footer-brand .sub { font-size: 0.62rem; color: rgba(189,240,65,0.75); letter-spacing: 0.12em; text-transform: uppercase; }
.l-footer-brand p { font-size: 0.85rem; margin-top: 0.75rem; max-width: 220px; line-height: 1.65; }
.l-footer-links { display: contents; }
.l-footer-col h4 {
    font-size: 0.75rem; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.l-footer-col a {
    display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem; transition: color 0.15s;
}
.l-footer-col a:hover { color: var(--chartreuse); }
.l-footer-bottom {
    max-width: 1100px; margin: 0 auto;
    padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.l-footer-bottom a { color: var(--chartreuse); }

/* ─── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.l-page-hero {
    background: var(--porcelain);
    padding: 5.5rem 2.5rem 4.5rem; text-align: center;
    border-bottom: 1px solid var(--border);
}
.l-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900; color: var(--peacock);
    letter-spacing: -1.5px; margin-bottom: 1rem; line-height: 1.1;
}
.l-page-hero h1 em { font-style: normal; color: var(--carrot); }
.l-page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.l-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.l-about-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--peacock); }
.l-about-text p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.l-contact-card {
    background: var(--peacock); border-radius: 20px; padding: 2.25rem; color: var(--white);
}
.l-contact-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.3rem; }
.l-contact-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.l-contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.l-contact-form input, .l-contact-form textarea {
    width: 100%; padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; font-size: 0.875rem; color: var(--white);
    font-family: inherit; outline: none; transition: border-color 0.15s;
}
.l-contact-form input::placeholder, .l-contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.l-contact-form input:focus, .l-contact-form textarea:focus { border-color: var(--carrot); }
.l-contact-form textarea { resize: vertical; min-height: 120px; }
.l-contact-form button {
    padding: 0.85rem; background: var(--carrot); color: var(--white);
    font-weight: 700; font-size: 0.9rem; border: none; border-radius: 50px;
    cursor: pointer; transition: opacity 0.15s; font-family: inherit;
}
.l-contact-form button:hover { opacity: 0.88; }

/* ─── FEATURES PAGE — CATEGORY LAYOUT ────────────────────────────────────── */
.l-feat-nav-wrap {
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0 2.5rem; position: sticky; top: 68px; z-index: 100;
}
.l-feat-nav {
    max-width: 1100px; margin: 0 auto;
    display: flex; gap: 0; overflow-x: auto;
    -ms-overflow-style: none; scrollbar-width: none;
}
.l-feat-nav::-webkit-scrollbar { display: none; }
.l-feat-nav a {
    padding: 1rem 1.25rem; font-size: 0.85rem; font-weight: 600;
    color: var(--muted); white-space: nowrap; flex-shrink: 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-bottom-color 0.15s;
}
.l-feat-nav a:hover { color: var(--carrot); border-bottom-color: var(--carrot); }

.l-feat-cat {
    padding-bottom: 5rem; margin-bottom: 5rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 130px;
}
.l-feat-cat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.l-feat-cat-intro { margin-bottom: 2.5rem; }
.l-feat-cat-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
    letter-spacing: -0.5px; color: var(--peacock);
    margin-bottom: 0.6rem; line-height: 1.15;
}
.l-feat-cat-intro p { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.7; }

.l-feat-spots {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem; margin-bottom: 1.25rem;
}
.l-feat-spot { border-radius: 20px; padding: 2.25rem 2rem 2rem; }
.l-feat-spot--peach { background: var(--bonfire); }
.l-feat-spot--lime { background: var(--lime); }
.l-feat-spot--dark { background: var(--peacock); }
.l-feat-spot-tag {
    display: inline-block; font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--carrot); margin-bottom: 0.6rem;
}
.l-feat-spot--dark .l-feat-spot-tag { color: var(--chartreuse); }
.l-feat-spot h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--peacock);
    margin-bottom: 0.85rem; line-height: 1.2;
}
.l-feat-spot--dark h3 { color: var(--white); }
.l-feat-spot p { font-size: 0.92rem; color: rgba(2,25,51,0.65); line-height: 1.7; }
.l-feat-spot--dark p { color: rgba(255,255,255,0.5); }

.l-feat-rest {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.5rem;
}
.l-feat-rest-item {
    display: flex; align-items: flex-start; gap: 0.55rem;
    padding: 0.8rem 1rem; border-radius: 8px;
    font-size: 0.875rem; color: var(--peacock); font-weight: 500;
    background: var(--porcelain);
}
.l-feat-rest-item::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; }

@media (max-width: 640px) {
    .l-feat-spots { grid-template-columns: 1fr; }
    .l-feat-nav-wrap { padding: 0 1rem; }
}

/* ─── PROVIDERS ROW ──────────────────────────────────────────────────────── */
.l-providers {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-top: 2.5rem; margin-bottom: 2rem;
}
.l-provider-chip {
    padding: 0.45rem 1rem;
    border: 1.5px solid var(--border); border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: var(--muted);
    background: var(--white);
    transition: border-color 0.15s, color 0.15s;
}
.l-provider-chip:hover { border-color: var(--carrot); color: var(--peacock); }
.l-provider-note {
    padding: 1.25rem 1.5rem;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}
.l-provider-note strong { color: var(--peacock); }

/* ─── INTEGRATION MONO BADGE ──────────────────────────────────────────────── */
.l-int-mono {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--porcelain); border: 1px solid var(--border);
    font-size: 0.6rem; font-weight: 800; color: var(--peacock);
    letter-spacing: 0.03em; text-transform: uppercase;
    margin: 0 auto 0.85rem;
}

/* ─── MOBILE NAV ──────────────────────────────────────────────────────────── */
.l-mobile-nav {
    display: none; flex-direction: column; gap: 0;
    background: var(--white); border-top: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
}
.l-mobile-nav a {
    padding: 0.8rem 0; font-size: 0.9rem; color: var(--muted);
    border-bottom: 1px solid var(--border); font-weight: 500;
}
.l-mobile-nav a:last-child { border-bottom: none; }
.l-mobile-nav a:hover { color: var(--carrot); }
.l-mobile-nav.open { display: flex; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .l-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .l-hero-visual { max-width: 480px; margin: 0 auto; }
    .l-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .l-nav-links { display: none; }
    .l-nav-actions .btn-ghost { display: none; }
    .l-hamburger { display: block; }
    .l-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .l-split--flip .l-split-visual { order: 0; }
    .l-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .l-proof-item { min-width: 130px; }
    .l-section { padding: 4rem 1.5rem; }
    .l-hero { padding: 4rem 1.5rem 3.5rem; }
    .l-cta-banner { padding: 4rem 1.5rem; }
    .l-nav { padding: 0 1.25rem; }
}

@media (max-width: 520px) {
    .l-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .l-proof-item { min-width: 110px; }
}

/* ─── BENTO GRID (features page) ─────────────────────────────────────────── */
.l-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.l-bento-card {
    background: var(--porcelain);
    border-radius: 20px;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
    position: relative;
}
.l-bento-card--w2 { grid-column: span 2; }
.l-bento-card--w3 { grid-column: span 3; }
.l-bento-card--peach { background: var(--bonfire); }
.l-bento-card--lime  { background: var(--lime); }
.l-bento-card--dark  { background: var(--peacock); }
.l-bento-card--white { background: var(--white); border: 1.5px solid var(--border); }

.l-bento-tag {
    display: inline-flex; align-items: center;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    background: rgba(2,25,51,0.09); color: var(--peacock);
    padding: 0.25rem 0.65rem; border-radius: 50px; width: fit-content;
}
.l-bento-card--dark .l-bento-tag {
    background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8);
}
.l-bento-h {
    font-size: 1.55rem; font-weight: 800; line-height: 1.2;
    color: var(--peacock); margin: 0;
}
.l-bento-card--dark .l-bento-h { color: #fff; }
.l-bento-p {
    font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1;
}
.l-bento-card--dark .l-bento-p { color: rgba(255,255,255,0.58); }

/* big stat number */
.l-bento-big-num {
    font-size: 5.5rem; font-weight: 900; line-height: 1;
    color: var(--carrot); margin-top: auto; letter-spacing: -3px;
}
.l-bento-card--dark .l-bento-big-num { color: var(--chartreuse); }

/* stat row */
.l-bento-stat-row {
    display: flex; gap: 1.5rem; margin-top: auto; padding-top: 1rem;
    border-top: 1px solid rgba(2,25,51,0.08);
}
.l-bento-card--dark .l-bento-stat-row { border-top-color: rgba(255,255,255,0.1); }
.l-bento-stat-item { display: flex; flex-direction: column; gap: 2px; }
.l-bento-stat-item .num {
    font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--carrot);
}
.l-bento-card--dark .l-bento-stat-item .num { color: var(--chartreuse); }
.l-bento-stat-item .lbl {
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--muted);
}
.l-bento-card--dark .l-bento-stat-item .lbl { color: rgba(255,255,255,0.4); }

/* automation flow diagram */
.l-bento-flow {
    display: flex; align-items: center; gap: 0.4rem;
    flex-wrap: wrap; margin-top: auto; padding-top: 1rem;
}
.l-bento-flow-node {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 0.3rem 0.65rem;
    font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.l-bento-flow-arrow { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* deliverability auth badges */
.l-bento-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.l-bento-badge {
    background: var(--white); border: 1.5px solid rgba(57,120,104,0.3);
    border-radius: 8px; padding: 0.4rem 0.8rem;
    font-size: 0.72rem; font-weight: 700; color: var(--emerald);
    display: flex; align-items: center; gap: 0.35rem;
}
.l-bento-badge::before { content: '✓'; font-weight: 900; }

/* analytics bar chart */
.l-bento-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 72px; margin-top: auto; padding-top: 0.75rem;
}
.l-bento-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: var(--carrot); opacity: 0.5;
    transition: opacity 0.25s;
}
.l-bento-bars:hover .l-bento-bar { opacity: 1; }
.l-bento-bar:nth-child(3), .l-bento-bar:nth-child(5) { opacity: 0.75; }

/* developer API snippet */
.l-bento-api {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.72rem; line-height: 1.9;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 0.85rem 1rem;
    margin-top: auto;
}
.l-bento-api .m { color: var(--chartreuse); font-weight: 700; }
.l-bento-api .e { color: rgba(255,255,255,0.8); }

/* full feature checklist below bento */
.l-feat-checklist { margin-top: 5rem; }
.l-feat-checklist-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem; margin-top: 2.5rem;
}
.l-feat-checklist-col h4 {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--carrot); margin-bottom: 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--bonfire);
}
.l-feat-checklist-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.l-feat-checklist-col li {
    font-size: 0.875rem; color: var(--muted);
    display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.45;
}
.l-feat-checklist-col li::before {
    content: '→'; color: var(--carrot); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ─── PRICING — ANNUAL PLAN CARDS ─────────────────────────────────────────── */
.l-plans-annual {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; max-width: 780px; margin: 0 auto;
}
.l-plan-annual {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 20px; padding: 2.25rem;
    position: relative; display: flex; flex-direction: column; gap: 1rem;
}
.l-plan-annual--featured {
    border-color: var(--carrot); border-width: 2px;
    box-shadow: 0 4px 24px rgba(247,87,9,0.10);
}
.l-plan-annual-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--carrot); color: var(--white);
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem; border-radius: 50px; white-space: nowrap;
}
.l-plan-annual-name  { font-size: 1rem; font-weight: 700; color: var(--peacock); }
.l-plan-annual-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.l-plan-annual-price {
    font-size: 3rem; font-weight: 900; line-height: 1;
    color: var(--peacock); letter-spacing: -2px;
}
.l-plan-annual-price sup { font-size: 1.3rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.l-plan-annual-price .mo { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.l-plan-annual-yr { font-size: 0.8rem; color: var(--muted); margin-top: -0.5rem; }
.l-plan-annual-yr strong { color: var(--carrot); }
.l-plan-annual-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.l-plan-annual-features li {
    font-size: 0.875rem; color: var(--muted);
    display: flex; align-items: flex-start; gap: 0.5rem;
}
.l-plan-annual-features li::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; }
.l-plan-annual-cta {
    display: block; text-align: center; margin-top: auto;
    background: var(--peacock); color: var(--white);
    font-size: 0.9rem; font-weight: 700; padding: 0.85rem 1.5rem;
    border-radius: 50px; transition: background 0.15s;
}
.l-plan-annual--featured .l-plan-annual-cta { background: var(--carrot); }
.l-plan-annual-cta:hover { background: var(--carrot); }
.l-plan-annual--featured .l-plan-annual-cta:hover { background: #d94d07; }

/* Bring Your Own SMTP */
.l-byos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; margin-top: 2.5rem;
}
.l-byos-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.l-byos-logo {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--porcelain); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 800; color: var(--peacock);
    letter-spacing: 0.03em; text-transform: uppercase;
}
.l-byos-name  { font-size: 1rem; font-weight: 700; color: var(--peacock); }
.l-byos-price { font-size: 1.35rem; font-weight: 800; color: var(--carrot); }
.l-byos-price .per { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.l-byos-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; }
.l-byos-note {
    margin-top: 1.5rem; padding: 1.1rem 1.4rem;
    background: var(--bonfire); border-radius: 12px;
    font-size: 0.875rem; color: var(--peacock); line-height: 1.65;
}
.l-byos-note strong { color: var(--carrot); }

/* savings table */
.l-savings-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); }
.l-savings-table {
    width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 680px;
}
.l-savings-table thead th {
    padding: 0.85rem 1rem; text-align: left;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); background: var(--porcelain);
    border-bottom: 2px solid var(--border);
}
.l-savings-table thead th.us { color: var(--carrot); }
.l-savings-table thead th.sv { color: var(--emerald); }
.l-savings-table tbody td {
    padding: 1rem 1rem; border-bottom: 1px solid var(--border);
    color: var(--peacock); vertical-align: middle;
}
.l-savings-table tbody td.us { font-weight: 700; color: var(--carrot); background: rgba(247,87,9,0.04); }
.l-savings-table tbody td.sv { color: var(--emerald); font-weight: 700; }
.l-savings-table tbody tr:last-child td { border-bottom: none; }
.l-savings-table tfoot td {
    padding: 0.75rem 1rem; font-size: 0.78rem; color: var(--muted);
    border-top: 2px solid var(--border); background: var(--porcelain);
}

/* feature comparison table */
.l-feat-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); margin-top: 2.5rem; }
.l-feat-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 680px; }
.l-feat-table thead th {
    padding: 0.85rem 1rem; text-align: center;
    font-size: 0.78rem; font-weight: 700; color: var(--muted);
    background: var(--porcelain); border-bottom: 2px solid var(--border);
}
.l-feat-table thead th:first-child { text-align: left; width: 32%; }
.l-feat-table thead th.us { color: var(--carrot); }
.l-feat-table tbody td {
    padding: 0.8rem 1rem; border-bottom: 1px solid var(--border);
    text-align: center; color: var(--muted);
}
.l-feat-table tbody td:first-child { text-align: left; color: var(--peacock); font-weight: 500; }
.l-feat-table tbody td.us { background: rgba(247,87,9,0.04); }
.l-feat-table .yes { color: var(--emerald); font-weight: 700; }
.l-feat-table .no  { color: #c4c9d4; font-size: 0.82rem; }
.l-feat-table .cat td {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--carrot);
    background: rgba(247,87,9,0.04); border-bottom: 2px solid rgba(247,87,9,0.12);
    padding: 0.55rem 1rem;
}

/* ─── PRICING COMPARISON TABLE ──────────────────────────────────────────── */
.l-price-cmp {
    max-width: 720px; margin: 0 auto;
    border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(2,25,51,0.07);
}
.l-price-cmp-head {
    display: grid; grid-template-columns: 1.35fr 1fr 1fr;
}
.l-price-cmp-head > div { padding: 2rem 1.5rem; }
.l-price-cmp-corner {
    background: var(--porcelain);
    border-right: 1.5px solid var(--border);
    border-bottom: 2px solid var(--border);
    display: flex; flex-direction: column; justify-content: flex-end; gap: 0.3rem;
    padding-bottom: 1.5rem;
}
.l-price-cmp-corner-title { font-size: 1.1rem; font-weight: 800; color: var(--peacock); }
.l-price-cmp-corner-sub   { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.col-starter {
    background: var(--white);
    border-right: 1.5px solid var(--border);
    border-bottom: 2px solid var(--border);
    display: flex; flex-direction: column; gap: 0.5rem;
}
.col-growth {
    background: var(--peacock);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; gap: 0.5rem;
    position: relative;
}
.l-price-cmp-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--carrot); color: var(--white);
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.22rem 0.75rem; border-radius: 50px; white-space: nowrap;
}
.l-price-cmp-plan-name { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); }
.col-growth .l-price-cmp-plan-name { color: rgba(255,255,255,0.5); }
.l-price-cmp-plan-price {
    font-size: 2.2rem; font-weight: 900; line-height: 1; color: var(--peacock); letter-spacing: -1px;
}
.l-price-cmp-plan-price sup { font-size: 0.95rem; font-weight: 700; vertical-align: super; }
.l-price-cmp-plan-price .mo { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.col-growth .l-price-cmp-plan-price { color: var(--white); }
.col-growth .l-price-cmp-plan-price .mo { color: rgba(255,255,255,0.5); }
.l-price-cmp-plan-yr { font-size: 0.75rem; color: var(--muted); }
.l-price-cmp-plan-yr strong { color: var(--carrot); }
.col-growth .l-price-cmp-plan-yr { color: rgba(255,255,255,0.45); }
.col-growth .l-price-cmp-plan-yr strong { color: var(--chartreuse); }
.l-price-cmp-cta {
    display: block; text-align: center; margin-top: 0.5rem;
    background: var(--peacock); color: var(--white);
    font-size: 0.82rem; font-weight: 700; padding: 0.65rem 1rem;
    border-radius: 50px; transition: background 0.15s;
}
.col-starter .l-price-cmp-cta:hover { background: var(--carrot); }
.col-growth  .l-price-cmp-cta { background: var(--carrot); }
.col-growth  .l-price-cmp-cta:hover { background: #d94d07; }

/* feature rows */
.l-price-cmp-row {
    display: grid; grid-template-columns: 1.35fr 1fr 1fr;
    border-top: 1px solid var(--border);
}
.l-price-cmp-row > div { padding: 0.8rem 1.5rem; font-size: 0.875rem; vertical-align: middle; }
.l-price-cmp-row > div:first-child { color: var(--peacock); font-weight: 500; background: var(--porcelain); border-right: 1.5px solid var(--border); }
.l-price-cmp-row > div:nth-child(2) { text-align: center; color: var(--muted); border-right: 1.5px solid var(--border); }
.l-price-cmp-row > div:nth-child(3) { text-align: center; background: rgba(2,25,51,0.03); color: var(--peacock); font-weight: 600; }
.l-price-cmp-row.cat > div {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--carrot); background: rgba(247,87,9,0.04); padding: 0.5rem 1.5rem;
}
.l-price-cmp-row.cat > div:last-child { background: rgba(2,25,51,0.03); }
.l-cmp-yes { color: var(--emerald) !important; font-weight: 700 !important; }
.l-cmp-no  { color: #c4c9d4 !important; font-weight: 400 !important; font-size: 0.8rem; }

/* ─── PLAN CARD VISUAL STRIP ────────────────────────────────────────────── */
.l-plan-annual-strip {
    height: 5px;
    background: var(--peacock);
    margin: -2.25rem -2.25rem 1.75rem;
    border-radius: 18px 18px 0 0;
    flex-shrink: 0;
}
.l-plan-annual--featured .l-plan-annual-strip {
    background: linear-gradient(90deg, var(--carrot) 0%, #f9a070 100%);
}
.l-plan-annual-total {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; font-weight: 700;
    background: rgba(2,25,51,0.07); color: var(--peacock);
    padding: 0.2rem 0.7rem; border-radius: 50px;
}
.l-plan-annual--featured .l-plan-annual-total {
    background: rgba(247,87,9,0.1); color: var(--carrot);
}

/* ─── BYOS RECOMMENDED CARD ─────────────────────────────────────────────── */
.l-byos-card--recommended {
    background: var(--bonfire);
    border-color: rgba(247,87,9,0.25);
    position: relative;
}
.l-byos-rec-badge {
    position: absolute; top: -11px; left: 1.5rem;
    background: var(--carrot); color: var(--white);
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.22rem 0.7rem; border-radius: 50px;
}

/* ─── SAVINGS CALLOUT BOXES ──────────────────────────────────────────────── */
.l-savings-callouts {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-bottom: 2.5rem;
}
.l-savings-callout {
    background: var(--peacock); border-radius: 16px;
    padding: 1.75rem 1.25rem; text-align: center;
}
.l-savings-callout-num {
    font-size: 2.5rem; font-weight: 900; color: var(--chartreuse);
    letter-spacing: -1px; line-height: 1;
}
.l-savings-callout-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    margin-top: 0.5rem; line-height: 1.4;
}

/* ─── BYOS FLOW STRIP ────────────────────────────────────────────────────── */
.l-byos-flow {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-top: 2.5rem; flex-wrap: wrap;
}
.l-byos-flow-step {
    text-align: center; padding: 1.25rem 1.5rem;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 14px; min-width: 160px; flex: 1;
}
.l-byos-flow-step .step-label {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--muted); margin-bottom: 0.4rem;
}
.l-byos-flow-step .step-val {
    font-size: 1.35rem; font-weight: 800; color: var(--peacock);
}
.l-byos-flow-step .step-sub {
    font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem;
}
.l-byos-flow-step.step-total {
    background: var(--peacock); border-color: var(--peacock);
}
.l-byos-flow-step.step-total .step-label { color: rgba(255,255,255,0.5); }
.l-byos-flow-step.step-total .step-val { color: var(--chartreuse); }
.l-byos-flow-step.step-total .step-sub { color: rgba(255,255,255,0.5); }
.l-byos-flow-arrow {
    font-size: 1.1rem; color: var(--muted);
    padding: 0 0.5rem; flex-shrink: 0;
}

/* ─── BENTO + PRICING RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .l-bento { grid-template-columns: repeat(2, 1fr); }
    .l-bento-card--w2 { grid-column: span 2; }
    .l-bento-card--w3 { grid-column: span 2; }
    .l-feat-checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .l-byos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .l-bento { grid-template-columns: 1fr; }
    .l-bento-card--w2, .l-bento-card--w3 { grid-column: span 1; }
    .l-plans-annual { grid-template-columns: 1fr; }
    .l-feat-checklist-grid { grid-template-columns: 1fr; }
    .l-plan-feat-grid { grid-template-columns: 1fr; }
    .l-single-plan-price { font-size: 3.5rem; }
}

/* ─── SINGLE PLAN CARD ────────────────────────────────────────────────────── */
.l-single-plan-wrap {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.l-single-plan {
    background: var(--white);
    border: 2px solid var(--carrot);
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 12px 40px rgba(247,87,9,0.13), 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
}
.l-single-plan-badge {
    display: inline-block;
    background: var(--carrot);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.l-single-plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--peacock);
    margin-bottom: 0.75rem;
}
.l-single-plan-price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--peacock);
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.l-single-plan-price sup { font-size: 2.2rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.l-single-plan-price span { font-size: 1.6rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.l-single-plan-mo {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.l-single-plan-cta {
    display: inline-block;
    background: var(--carrot);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
}
.l-single-plan-cta:hover { background: #d94d07; transform: translateY(-1px); }
.l-single-plan-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
}
.l-single-plan-pill {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--peacock);
    background: var(--porcelain);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

/* ─── PLAN FEATURE GRID ───────────────────────────────────────────────────── */
.l-plan-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.l-plan-feat-col {
    background: var(--porcelain);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
}
.l-plan-feat-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--carrot);
    margin: 0 0 0.9rem;
}
.l-plan-feat-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.l-plan-feat-col ul li {
    font-size: 0.82rem;
    color: var(--body, var(--peacock));
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.45;
}
.l-plan-feat-col ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--carrot);
    font-weight: 700;
    font-size: 0.8rem;
}
@media (max-width: 900px) {
    .l-plan-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
