:root {
    --bg: #fbfaf7;
    --ink: #0f172a;
    --muted: #64748b;
    --panel: #ffffff;
    --line: #e3e8ef;
    --soft: #eef6f3;
    --accent: #f05a43;
    --accent-dark: #cf3f2d;
    --teal: #0f766e;
    --blue: #2563eb;
    --violet: #7c3aed;
    --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px clamp(16px, 4vw, 56px);
    background: rgba(251, 250, 247, 0.9);
    border-bottom: 1px solid rgba(227, 232, 239, 0.9);
    backdrop-filter: blur(18px);
}

.logo {
    max-width: 58vw;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

.header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
    padding: clamp(34px, 7vw, 86px) clamp(16px, 4vw, 56px) clamp(46px, 7vw, 96px);
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    max-width: 840px;
    font-size: clamp(38px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.2;
}

.lead {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(18px, 2.1vw, 23px);
}

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

.button,
.inline-cta {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 14px 20px;
    font-weight: 900;
}

.button.primary,
.inline-cta {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(240, 90, 67, 0.24);
}

.button.primary:hover,
.inline-cta:hover {
    background: var(--accent-dark);
}

.button.secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.trust-list li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 11px;
    background: #fff;
}

.hero-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-showcase img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.showcase-note {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
}

.showcase-note span {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-note strong {
    text-align: right;
    font-size: 14px;
}

.conversion-section,
.examples-section,
.benefits-section,
.final-cta,
.steps-section {
    padding: clamp(46px, 7vw, 90px) clamp(16px, 4vw, 56px);
    border-top: 1px solid var(--line);
}

.conversion-section,
.benefits-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: clamp(24px, 5vw, 70px);
}

.section-heading {
    max-width: 760px;
}

.section-heading.wide {
    max-width: 900px;
    margin-bottom: 28px;
}

.section-heading.wide p:last-child,
.section-body,
.step p,
.example-card p,
.benefits,
.final-cta p {
    color: var(--muted);
}

.section-body {
    display: grid;
    gap: 18px;
    align-content: start;
    font-size: 18px;
}

.section-body p {
    margin-bottom: 0;
}

.inline-cta {
    width: fit-content;
    margin-top: 4px;
}

.steps-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    background: var(--soft);
}

.step {
    min-height: 210px;
    border: 1px solid #d6e8e2;
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
}

.step span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.example-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.example-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.example-copy {
    min-height: 136px;
    padding: 18px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.benefits li {
    min-height: 116px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.benefits strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.final-cta {
    text-align: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent 42%),
        linear-gradient(315deg, rgba(240, 90, 67, 0.32), transparent 42%),
        #0f172a;
}

.final-cta h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    max-width: 600px;
    margin: 14px auto 24px;
    color: #cbd5e1;
    font-size: 18px;
}

.final-cta .eyebrow {
    color: #99f6e4;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
    gap: 22px;
    padding: 30px clamp(16px, 4vw, 56px);
    color: var(--muted);
    background: #fff;
}

.site-footer p {
    margin-bottom: 0;
    font-weight: 900;
    color: var(--ink);
}

.site-footer nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer a {
    border-bottom: 1px solid transparent;
}

.site-footer a:hover {
    border-color: currentColor;
}

@media (max-width: 1060px) {
    .hero,
    .conversion-section,
    .benefits-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 30px;
    }

    .section-heading {
        max-width: 900px;
    }

    .example-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        position: static;
        padding: 12px 14px;
    }

    .logo {
        font-size: 14px;
    }

    .header-cta {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .hero {
        gap: 24px;
        padding: 28px 14px 44px;
    }

    h1 {
        font-size: clamp(36px, 12vw, 52px);
    }

    h2 {
        font-size: clamp(27px, 9vw, 38px);
    }

    .hero-actions,
    .button,
    .inline-cta {
        width: 100%;
    }

    .trust-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .showcase-note {
        position: static;
        border: 0;
        border-radius: 0;
        background: var(--ink);
    }

    .conversion-section,
    .examples-section,
    .benefits-section,
    .final-cta,
    .steps-section {
        padding: 42px 14px;
    }

    .steps-section,
    .example-grid,
    .benefits,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;
    }

    .step span {
        margin-bottom: 22px;
    }

    .example-copy {
        min-height: auto;
    }

    .site-footer nav {
        justify-content: flex-start;
        flex-direction: column;
    }
}
