:root {
    --bg: #ece8df;
    --bg-cream: #f6f3ed;
    --surface: #ffffff;
    --surface-dark: #1a2025;
    --steel: #0f1418;
    --steel-soft: #1d262d;
    --ink: #14191d;
    --ink-soft: #56606a;
    --line: #d1d5db;
    --brand: #cf3a2b;
    --brand-dark: #a72a1d;
    --accent: #f0b429;
    --accent-warm: #ffd479;
    --success: #16a34a;
    --radius: 14px;
    --container: 1180px;
    --shadow: 0 14px 34px rgba(20, 25, 29, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 20, 24, 0.18);
    --font-display: "Oswald", "Bebas Neue", "Trebuchet MS", system-ui, sans-serif;
    --font-body: "Inter", "Segoe UI", "Trebuchet MS", Tahoma, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-transform: uppercase;
}

h3, h4 {
    letter-spacing: 0.02em;
}

[hidden] {
    display: none !important;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(11, 16, 20, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 1rem;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    padding-left: 0.85rem;
}

.brand::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--brand);
    border-radius: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.main-nav a {
    font-weight: 600;
    color: #d6dde3;
    font-size: 0.95rem;
    transition: color .15s ease;
}

.main-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.main-nav .btn {
    color: #fff;
}

.mobile-nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.8rem;
    font-weight: 700;
    color: #fff;
}

.btn {
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color .18s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(207, 58, 43, 0.35);
}

.btn-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 14px 30px rgba(207, 58, 43, 0.45);
}

.btn-outline {
    border: 1px solid var(--line);
    background: #fffdf8;
    color: var(--ink);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-small {
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-wide {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1100px 380px at 15% 0%, rgba(240, 180, 41, 0.18), transparent 60%),
        radial-gradient(900px 320px at 110% 10%, rgba(207, 58, 43, 0.22), transparent 60%),
        linear-gradient(180deg, #0f1418 0%, #161d23 60%, #1a2227 100%);
    color: #f4f1ea;
    padding: 5rem 0 5.5rem;
    border-bottom: 1px solid #2a3138;
}

.hero-stripes {
    position: absolute;
    inset: auto 0 0 0;
    height: 12px;
    background: repeating-linear-gradient(135deg, var(--accent) 0 14px, #14191d 14px 28px);
    opacity: 0.85;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #f0c96e;
    margin-bottom: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(240, 201, 110, 0.1);
    border: 1px solid rgba(240, 201, 110, 0.28);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #34d399;
    display: inline-block;
    position: relative;
}

/* Compositor-only pulse (transform + opacity) - no paint, no main-thread cost */
.live-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(52, 211, 153, 0.7);
    transform: scale(1);
    opacity: 1;
    animation: livePulse 2s infinite;
    will-change: transform, opacity;
    pointer-events: none;
}

@keyframes livePulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(2.6);  opacity: 0;   }
    100% { transform: scale(2.6);  opacity: 0;   }
}

h1 {
    font-size: clamp(2.4rem, 5.6vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: 0.005em;
}

.hero-accent {
    display: block;
    color: var(--accent);
}

.hero-copy {
    color: #c9d1d9;
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    max-width: 56ch;
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.hero-points {
    list-style: none !important;
    padding-left: 0;
    display: grid;
    gap: 0.6rem;
}

.hero-points li {
    color: #e3e8ec;
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.97rem;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 2px;
    background: var(--accent);
}

/* When hero-points appear inside a light card, flip text colour for readability */
.hero-card .hero-points li {
    color: var(--ink);
}

.hero-card .hero-points li::before {
    background: var(--brand);
}

.hero-card {
    background: linear-gradient(180deg, #ffffff, #faf6ed);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: none;
    color: var(--ink);
}

.hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hero-card-tag {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-card-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.metric-grid div {
    border: 1px solid #e5dcc9;
    border-radius: 10px;
    padding: 0.85rem;
    background: #fffdf8;
}

.metric-grid strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.price-locked-text {
    color: var(--brand) !important;
}

.metric-grid span {
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.hero-card-foot {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
    padding-top: 0.85rem;
    border-top: 1px dashed #e0d7c5;
}

.section {
    padding: 4.5rem 0;
}

.section-light {
    background: #f6f3ed;
}

.section-cream {
    background: #efeae0;
}

.section-dark {
    background: var(--surface-dark);
    color: #f1f5f9;
}

.section-heading {
    margin-bottom: 2.2rem;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.7rem;
    position: relative;
    padding: 0 0.85rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--brand);
    opacity: 0.5;
}

.section-eyebrow::before { right: 100%; }
.section-eyebrow::after { left: 100%; }

.section-heading h2 {
    font-size: clamp(1.9rem, 4.4vw, 2.8rem);
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.section-heading p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-dark .section-heading p {
    color: #cbd5e1;
}

/* A11y: ensure section-heading h2 stays readable on dark backgrounds (Lighthouse contrast fix) */
.section-dark .section-heading h2,
.section-dark h2 {
    color: #f8fafc;
}

/* A11y: footer-style inline links should not rely on colour alone (Lighthouse fix) */
.summary-foot a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.step-card {
    background: #fffdf8;
    border: 1px solid #ddd3c5;
    border-radius: 12px;
    padding: 1.1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 25, 29, 0.06);
    border-color: #cbbfa8;
}

.step-card span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ffe7c2;
    color: #9a6110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0;
    font-size: 0.95rem;
}

.step-card h3,
.step-card h4 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--ink);
    font-weight: 800;
}

.step-card p {
    color: var(--ink-soft);
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.5;
}

.divert-card {
    margin-top: 2rem;
    background: linear-gradient(180deg, #fffdf8, #f5efe4);
    border: 1px solid #dccfbf;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.divert-head {
    display: block;
    margin-bottom: 1.25rem;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.divert-card .divert-head h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.divert-card .divert-head > div > p {
    color: var(--ink-soft);
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.divert-highlight {
    border: 1px solid #f0cf89;
    background: #fff4d9;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
}

.divert-highlight strong {
    color: var(--ink);
    font-size: 1rem;
}

.divert-highlight span {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
}

.divert-diy-grid {
    margin-top: 0.4rem;
}

.divert-diy-grid .step-card {
    background: #fff9ef;
    border-color: #e5d8c7;
}

.divert-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    font-weight: 800;
    margin: 0 0 0.55rem;
}

.divert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.55rem;
    margin-bottom: 0;
}

.divert-badges span {
    border: 1px solid #e1d5c5;
    background: #fffaf1;
    color: #5f4b32;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.divert-sub {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px dashed #d8cdbd;
}

.divert-sub h4 {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.55rem;
    font-weight: 800;
}

.divert-points-list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.divert-points-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--ink);
    font-size: 0.95rem;
}

.divert-points-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
}

.divert-points {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.divert-points span {
    border: 1px solid #d8cdbd;
    background: #fffaf1;
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.plan-card {
    background: #fffdf8;
    border: 1px solid #ddd3c5;
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
}

.plan-card.featured {
    border: 2px solid var(--brand);
    box-shadow: var(--shadow);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.45rem 0;
}

.plan-price span {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.plan-setup {
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 0.9rem;
}

.plan-card li {
    margin-bottom: 0.45rem;
    color: var(--ink-soft);
}

.plan-card li::before {
    content: "• ";
    color: var(--accent);
    font-weight: 800;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
    align-items: start;
}

.price-gate-card {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.price-gate-card h2 {
    margin-bottom: 0.35rem;
}

.price-gate-card p {
    color: var(--ink-soft);
}

.price-gate-form {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0.7rem;
    align-items: end;
}

.price-gate-form label {
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.field-optional {
    color: #93c5fd;
    font-size: 0.82rem;
    font-weight: 600;
}

.price-gate-form input {
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    padding: 0.72rem;
    font-size: 0.96rem;
}

.price-gate-form input:focus {
    outline: 2px solid #38bdf8;
    border-color: transparent;
}

.order-form {
    background: #111f3f;
    border: 1px solid #2a3a62;
    border-radius: 14px;
    padding: 1rem;
}

.form-row {
    margin-bottom: 0.8rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.order-form label,
.order-form legend,
.small-note {
    font-size: 0.88rem;
    color: #dbeafe;
}

.order-form input,
.order-form select {
    width: 100%;
    margin-top: 0.35rem;
    border-radius: 9px;
    border: 1px solid #3a4c7d;
    background: #0e1934;
    color: #fff;
    padding: 0.72rem;
    font-size: 0.96rem;
}

.order-form input:focus,
.order-form select:focus {
    outline: 2px solid #38bdf8;
    border-color: transparent;
}

.addons {
    border: 1px solid #3a4c7d;
    border-radius: 9px;
    margin: 0.8rem 0;
    padding: 0.7rem;
    display: grid;
    gap: 0.5rem;
}

.addons label {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.addons input,
.terms input {
    width: auto;
    margin: 0;
}

.terms {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.terms a {
    color: #7dd3fc;
    font-weight: 700;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.hp-field input {
    display: none;
}

.order-summary {
    background: #fffdf8;
    color: var(--ink);
    border-radius: 14px;
    border: 1px solid #ddd3c5;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.order-summary h3 {
    margin-bottom: 0.7rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin: 0.55rem 0;
}

.summary-row span {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.summary-row strong {
    font-size: 1rem;
}

.summary-row.total strong {
    color: var(--brand);
    font-size: 1.2rem;
}

.summary-row.recurring strong {
    color: #0f766e;
}

.order-summary hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0.7rem 0;
}

.summary-foot {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.site-footer {
    background: linear-gradient(180deg, #0b1014 0%, #0a0e11 100%);
    color: #b9c1c8;
    padding: 3.5rem 0 1.5rem;
    border-top: 4px solid var(--brand);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    margin-bottom: 1rem;
    max-width: 30ch;
    color: #9da5ad;
    line-height: 1.55;
}

.site-footer h4 {
    margin-bottom: 0.9rem;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.site-footer ul a {
    color: #b9c1c8;
    font-size: 0.95rem;
    transition: color .15s ease;
}

.site-footer ul a:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    font-size: 0.85rem;
    color: #7a8088;
}

.footer-bottom a {
    color: #b9c1c8;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    z-index: 1200;
}

.whatsapp-float:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
}

/* ── Pricing cards ───────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    align-items: start;
}

.pricing-card {
    background: #fffdf8;
    border: 1.5px solid #ddd3c5;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-featured {
    border-color: var(--brand);
    box-shadow: 0 18px 42px rgba(207, 58, 43, 0.16);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-top {
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1ebe0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.pricing-icon svg {
    width: 22px;
    height: 22px;
    color: var(--ink-soft);
}

.pricing-icon-brand {
    background: #ffe4dc;
}

.pricing-icon-brand svg {
    color: var(--brand);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.pricing-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.1rem;
}

.pricing-setup {
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 0.45rem;
}
.pricing-locked-copy {
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.pricing-tagline {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.pricing-desc {
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.55rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.93rem;
    color: var(--ink);
    line-height: 1.4;
}

.feat-check {
    color: var(--success);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.pricing-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.legal-shell {
    padding: 3rem 0 4rem;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.legal-card h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 0.8rem;
}

.legal-card h2 {
    font-size: 1.2rem;
    margin: 1.4rem 0 0.6rem;
}

.legal-card p,
.legal-card li {
    color: var(--ink-soft);
}

.legal-card ul {
    margin-left: 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ── END Pricing cards ───────────────────────────────────── */

/* ── Trust strip ─────────────────────────────────────────── */
.trust-strip {
    background: #fff;
    border-top: 1px solid #e3ddd0;
    border-bottom: 1px solid #e3ddd0;
    padding: 1.6rem 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.trust-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--brand);
    background: #fdeeec;
    padding: 6px;
    border-radius: 10px;
    box-sizing: content-box;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.trust-item span {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

/* ── Service grid ────────────────────────────────────────── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.service-tile {
    background: #fff;
    border: 1px solid #e3ddd0;
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}

.service-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.service-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #d0c5b0;
}

.service-tile:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff4d9, #ffe7c2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--brand);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-tile h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.service-tile p {
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

/* ── Quote / results band ────────────────────────────────── */
.quote-band {
    background:
        radial-gradient(700px 260px at 0% 50%, rgba(240, 180, 41, 0.12), transparent 70%),
        radial-gradient(800px 280px at 100% 50%, rgba(207, 58, 43, 0.16), transparent 70%),
        linear-gradient(180deg, #14191d, #0f1418);
    color: #f4f1ea;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(135deg, var(--accent) 0 12px, transparent 12px 24px);
    opacity: 0.45;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.quote-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.quote-stats > div {
    border-left: 3px solid var(--accent);
    padding: 0.4rem 0 0.4rem 1.1rem;
}

.quote-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.quote-stats span {
    color: #c9d1d9;
    font-size: 0.97rem;
    line-height: 1.5;
}

.quote-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(6px);
}

.quote-mark {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 0.85rem;
    opacity: 0.85;
}

.quote-card blockquote {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #f4f1ea;
    margin-bottom: 1.2rem;
    font-style: normal;
    font-weight: 500;
}

.quote-card figcaption {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
}

.quote-card figcaption strong {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.quote-card figcaption span {
    color: #9da5ad;
    font-size: 0.88rem;
}

@media (max-width: 990px) {
    .hero-grid,
    .checkout-grid,
    .plan-grid,
    .footer-grid,
    .pricing-grid,
    .service-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-gate-form {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3.5rem 0 4rem;
    }
}

@media (max-width: 700px) {
    .steps-grid,
    .service-grid,
    .trust-strip-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .divert-card {
        padding: 1.25rem;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #0f1418;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.2rem 1.2rem;
        display: none;
        gap: 0.85rem;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        color: #e3e8ec;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 2.4rem 0;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* ---- SEO additions: hero tagline, VRM showcase, comparison table ---- */
.hero-tagline {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
    font-size: 1.05rem;
    margin: 0 0 0.9rem;
    font-weight: 600;
}

.section-vrm {
    background: linear-gradient(160deg, #0f1418 0%, #1d262d 100%);
    color: #f6f3ed;
    padding: 4.5rem 0;
    border-top: 4px solid var(--accent);
    border-bottom: 4px solid var(--brand);
}
.section-vrm .section-heading h2 { color: #fff; }
.section-vrm .section-heading p { color: #c9d1d9; }
.vrm-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
    align-items: center;
}
.vrm-copy h2 { margin-bottom: 0.8rem; }
.vrm-copy .vrm-lead {
    font-size: 1.15rem;
    color: #f6f3ed;
    margin-bottom: 1.4rem;
    line-height: 1.55;
}
.vrm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
}
.vrm-list li {
    padding: 0.55rem 0 0.55rem 1.8rem;
    position: relative;
    color: #e6ebef;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.vrm-list li:last-child { border-bottom: 0; }
.vrm-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(240,180,41,0.18);
}
.vrm-plate-card {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.06);
}
.vrm-plate {
    background: #ffd400;
    color: #14191d;
    font-family: "Charles Wright", "UK Number Plate", var(--font-display);
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 3px solid #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.vrm-rows { display: grid; gap: 0.55rem; }
.vrm-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.2rem;
    border-bottom: 1px solid #ebe5d6;
    font-size: 0.95rem;
}
.vrm-row:last-child { border-bottom: 0; }
.vrm-row span:first-child { color: var(--ink-soft); }
.vrm-row strong { color: var(--ink); }
.vrm-row .ok { color: #16a34a; font-weight: 700; }
.vrm-row .warn { color: #cf3a2b; font-weight: 700; }
.vrm-foot {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-align: center;
}
@media (max-width: 820px) {
    .vrm-grid { grid-template-columns: 1fr; }
    .vrm-plate { font-size: 2rem; }
}

/* Comparison table */
.section-compare { background: var(--bg-cream); }
.compare-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid var(--line);
    margin-top: 2rem;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.compare-table th,
.compare-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.compare-table thead th {
    background: var(--steel);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-display);
    font-size: 0.95rem;
}
.compare-table thead th.us {
    background: var(--brand);
}
.compare-table tbody tr:nth-child(even) { background: #faf8f3; }
.compare-table .feature {
    font-weight: 600;
    color: var(--ink);
}
.compare-table .them { color: var(--ink-soft); }
.compare-table .us {
    color: var(--ink);
    font-weight: 600;
}
.compare-table .us::before {
    content: "\2713";
    color: var(--success);
    font-weight: 900;
    margin-right: 0.4rem;
}

/* Solutions grid (for new SEO pages link block) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.solution-link {
    display: block;
    padding: 1.1rem 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.solution-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--brand);
}
.solution-link strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--ink);
}
.solution-link span { color: var(--ink-soft); font-size: 0.9rem; }

/* === Cartcom trust card (added 2026-05-18h) === */
.hero-trustline{margin-top:14px;font-size:.92rem;color:#54606f;line-height:1.55}
.hero-trustline a{color:#cf3a2b;text-decoration:none;font-weight:600}
.hero-trustline a:hover{text-decoration:underline}
.cartcom-trust{padding:36px 0 14px}
.cartcom-trust-card{display:grid;grid-template-columns:1.35fr 1fr;gap:32px;align-items:center;background:#fff;border:1px solid #e6e9ee;border-radius:14px;padding:28px 32px;box-shadow:0 6px 18px rgba(20,30,45,.04)}
.cartcom-trust-card .eyebrow{margin:0 0 8px;color:#cf3a2b;text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;font-weight:700}
.cartcom-trust-card h2{margin:0 0 12px;font-size:1.55rem;line-height:1.25;color:#172033}
.cartcom-trust-card p{margin:0 0 10px;color:#3d4757;line-height:1.6;font-size:1rem}
.cartcom-trust-card a{color:#cf3a2b;text-decoration:none;font-weight:600}
.cartcom-trust-card a:hover{text-decoration:underline}
.cartcom-trust-badge{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.cartcom-trust-badge .trustindex-widget{min-height:60px;width:100%;max-width:280px}
.cartcom-trust-disclaimer{font-size:.78rem;color:#6b7585;line-height:1.5;margin:0}
.cartcom-trust-more{margin:4px 0 0;font-size:.9rem}
@media (max-width:820px){
  .cartcom-trust{padding:22px 0 6px}
  .cartcom-trust-card{grid-template-columns:1fr;padding:22px;gap:20px}
  .cartcom-trust-card h2{font-size:1.3rem}
  .cartcom-trust-badge{align-items:stretch}
  .cartcom-trust-badge .trustindex-widget{max-width:100%}
}
/* About page */
.about-hero{padding:48px 0 24px;background:linear-gradient(180deg,#f7f9fc 0,#fff 100%);border-bottom:1px solid #eef1f5}
.about-hero h1{margin:6px 0 14px;font-size:2.1rem;line-height:1.15;color:#172033}
.about-hero p.lead{font-size:1.12rem;color:#3d4757;line-height:1.6;max-width:780px;margin:0}
.about-body{padding:32px 0 48px}
.about-body .container{max-width:820px}
.about-body h2{font-size:1.35rem;margin:28px 0 10px;color:#172033}
.about-body p{font-size:1.02rem;line-height:1.7;color:#2f3845;margin:0 0 14px}
.about-cta-row{display:flex;flex-wrap:wrap;gap:10px;margin:24px 0 8px}
@media (max-width:820px){.about-hero h1{font-size:1.6rem}.about-hero{padding:32px 0 18px}}
/* === Readable eyebrow + outline button on light surfaces (2026-05-18i) === */
.about-eyebrow{display:inline-block;font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:#cf3a2b;background:#fdecea;border:1px solid #f6c8c2;padding:.35rem .7rem;border-radius:999px;margin:0 0 12px}
.about-cta-row .btn-outline,.cartcom-trust-card .btn-outline{border:1.5px solid #cf3a2b;background:#fff;color:#cf3a2b}
.about-cta-row .btn-outline:hover,.cartcom-trust-card .btn-outline:hover{background:#cf3a2b;color:#fff}