:root {
    --bg: #ffffff;
    --surface: #fafafa;
    --surface-strong: #f4f4f5;
    --border: #ececec;
    --border-strong: #e0e0e0;
    --text: #0a0a0a;
    --muted: #6f6f76;
    --faint: #a1a1aa;
    --accent: #ff0000;
    --accent-hover: #e60000;
    --accent-soft: rgba(255, 0, 0, 0.08);
    --ink: #0a0a0a;

    --radius: 4px;
    --radius-sm: 3px;
    --radius-lg: 14px;

    --container: 1120px;
    --container-narrow: 760px;

    --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 10, 10, 0.06);
    --shadow-pop: 0 8px 30px rgba(10, 10, 10, 0.1);
    --shadow-float: 0 24px 60px rgba(10, 10, 10, 0.14);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur: 200ms;

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text);
}

p {
    margin: 0;
}

::selection {
    background: var(--accent-soft);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.accent {
    color: var(--accent);
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    height: 44px;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    background: var(--text);
    color: var(--bg);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform 120ms var(--ease),
        background var(--dur) var(--ease),
        border-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        opacity var(--dur) var(--ease);
}

.btn svg {
    width: 17px;
    height: 17px;
}

.btn:hover {
    box-shadow: var(--shadow-sm);
}

.btn:active {
    transform: translateY(1px);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.28);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    background: var(--surface);
    border-color: var(--text);
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-sm {
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
}

.btn-lg {
    height: 52px;
    padding: 0 26px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

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

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 26px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color var(--dur) var(--ease);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 84px 0 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.26), transparent 66%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    animation: ping 1.8s var(--ease) infinite;
}

.hero-title {
    margin-top: 22px;
    font-size: 60px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #fff;
}

.hero-sub {
    margin-top: 22px;
    max-width: 38ch;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-trust strong {
    color: #fff;
}

.stars {
    color: #ffb800;
    letter-spacing: 2px;
    font-size: 15px;
}

/* hero visual */

.hero-visual {
    position: relative;
    height: 460px;
    display: grid;
    place-items: center;
}

.phone {
    position: relative;
    width: 232px;
    height: 412px;
    border-radius: 30px;
    background: #060606;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-float);
    padding: 10px;
    animation: float 7s var(--ease) infinite;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 18px;
    border-radius: 999px;
    background: #000;
    z-index: 3;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 0, 0, 0.32), transparent 60%),
        linear-gradient(160deg, #2a2a30, #0c0c0d 70%);
}

.phone-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    z-index: 2;
}

.phone-score {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: var(--radius);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.phone-score svg {
    width: 12px;
    height: 12px;
    color: var(--accent);
}

.phone-score i {
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.7;
}

.phone-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1;
}

.phone-play span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-pop);
    position: relative;
}

.phone-play span::after {
    content: "";
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--ink);
}

.phone-captions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.cap {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.32);
    padding: 1px 8px;
    border-radius: 4px;
}

.cap-2 {
    color: var(--accent);
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-float);
    animation: float 7s var(--ease) infinite;
}

.float-card-1 {
    top: 36px;
    left: -8px;
    animation-delay: 0.6s;
}

.fc-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(21, 127, 59, 0.12);
    color: #157f3b;
    flex: 0 0 auto;
}

.fc-icon svg {
    width: 18px;
    height: 18px;
}

.fc-title {
    font-size: 13.5px;
    font-weight: 600;
}

.fc-sub {
    font-size: 12px;
    color: var(--muted);
}

.float-card-2 {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    bottom: 40px;
    right: -10px;
    width: 178px;
    animation-delay: 1.3s;
}

.fc-progress-label {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
}

.fc-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--surface-strong);
    overflow: hidden;
}

.fc-progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
}

.fc-progress-pct {
    align-self: flex-end;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--muted);
}

/* logos strip */

.logos {
    margin-top: 64px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.logos-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.logo-pill {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
}

/* ---------- stat band ---------- */

.band {
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0;
}

.stat-cell {
    padding: 36px 24px;
    text-align: center;
    border-left: 1px solid var(--border);
}

.stat-cell:first-child {
    border-left: none;
}

.stat-num {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text);
}

.stat-cap {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
}

/* ---------- sections ---------- */

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 660px;
    margin: 0 auto 56px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-lead {
    margin-top: 16px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---------- steps ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.step-num {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 18px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- features ---------- */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    padding: 28px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- showcase ---------- */

.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.showcase-copy .eyebrow {
    margin-bottom: 14px;
}

.showcase-copy .section-title {
    font-size: 34px;
    text-align: left;
}

.showcase-copy .section-lead {
    text-align: left;
}

.check-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.5;
}

.ck {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    margin-top: 1px;
}

.ck svg {
    width: 13px;
    height: 13px;
}

.pipeline {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pl-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--faint);
}

.pl-row:last-child {
    border-bottom: none;
}

.pl-row em {
    margin-left: auto;
    font-style: normal;
    font-family: var(--font-mono);
    font-size: 12.5px;
}

.pl-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    flex: 0 0 auto;
}

.pl-done {
    color: var(--text);
}

.pl-done .pl-dot {
    background: #157f3b;
    border-color: #157f3b;
}

.pl-done em {
    color: #157f3b;
}

.pl-run {
    color: var(--text);
    background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
}

.pl-run .pl-dot {
    background: var(--accent);
    border-color: var(--accent);
    animation: pulse 1.4s var(--ease) infinite;
}

.pl-run em {
    color: var(--accent);
    font-weight: 500;
}

/* ---------- quotes ---------- */

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quote {
    margin: 0;
    padding: 28px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
}

.quote .stars {
    font-size: 14px;
    margin-bottom: 14px;
}

.quote blockquote {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.quote figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--muted);
}

.q-avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    flex: 0 0 auto;
}

.quote figcaption strong {
    color: var(--text);
}

/* ---------- pricing ---------- */

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
}

.price-featured {
    border-color: var(--ink);
    box-shadow: var(--shadow-pop);
    transform: translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.price-name {
    font-size: 19px;
}

.price-desc {
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted);
    min-height: 40px;
}

.price-amount {
    margin: 18px 0 22px;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--faint);
    letter-spacing: 0;
}

.price-feats {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.price-feats li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    color: var(--text);
}

.price-feats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

/* ---------- faq ---------- */

.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    padding: 4px 22px;
    transition: border-color var(--dur) var(--ease);
}

.faq-item[open] {
    border-color: var(--border-strong);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    flex: 0 0 auto;
    transition: transform var(--dur) var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- final cta ---------- */

.cta {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    padding: 96px 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.55;
}

.cta-bg::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent 64%);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
}

.cta-sub {
    margin: 20px auto 0;
    max-width: 46ch;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.66);
}

.cta-actions {
    justify-content: center;
    margin-top: 32px;
}

.cta-fine {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- footer ---------- */

.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .brand-logo {
    height: 26px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 14.5px;
    color: var(--muted);
    max-width: 32ch;
    line-height: 1.6;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-head {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14.5px;
    color: var(--muted);
    transition: color var(--dur) var(--ease);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    font-size: 13px;
    color: var(--faint);
}

/* ---------- keyframes ---------- */

@keyframes float {
    50% {
        transform: translateY(-14px);
    }
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
    }

    .showcase {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .steps,
    .features,
    .quotes,
    .pricing {
        grid-template-columns: 1fr 1fr;
    }

    .price-featured {
        transform: none;
    }

    .stat-num {
        font-size: 32px;
    }
}

@media (max-width: 680px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 56px 0 56px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-sub {
        font-size: 16.5px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .cta-title {
        font-size: 34px;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-cell:nth-child(3) {
        border-left: none;
    }

    .stat-cell:nth-child(odd) {
        border-left: none;
    }

    .stat-cell {
        border-top: 1px solid var(--border);
        padding: 28px 16px;
    }

    .stat-cell:nth-child(-n + 2) {
        border-top: none;
    }

    .steps,
    .features,
    .quotes,
    .pricing {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
