:root {
    --bg: #f1f1ee;
    --surface: #ffffff;
    --surface-soft: #e8e8e3;
    --ink: #181818;
    --muted: #6d706b;
    --line: rgba(24, 24, 24, .10);
    --orange: #ef7d32;
    --orange-dark: #d9641b;
    --orange-soft: #fff0e4;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 24px 70px rgba(20,20,20,.08);
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

a { color: inherit; }

.pro-header { padding: 22px 0; }

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    gap: 7px;
    align-items: baseline;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand span {
    color: var(--orange);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.switch-link,
.login-link {
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
}

.switch-link { color: var(--muted); }

.login-link {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.6);
}

.hero { padding: 58px 0 84px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 72px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--orange-dark);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
}

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

h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    line-height: .93;
    letter-spacing: -.075em;
    font-weight: 950;
}

h1 span { color: var(--orange); }

.hero-text {
    max-width: 630px;
    margin-bottom: 30px;
    color: #575a55;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 850;
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 28px rgba(23,23,23,.15);
}

.text-link {
    color: var(--muted);
    font-weight: 750;
    text-decoration: none;
}

.proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.proof-row span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    border: 1px solid var(--line);
    color: #555851;
    font-size: .9rem;
    font-weight: 700;
}

.deal-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.deal-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.deal-top small,
.deal-info small {
    display: block;
    margin-bottom: 5px;
    color: #a9aba6;
}

.deal-top strong {
    display: block;
    font-size: 1.5rem;
}

.deal-badge {
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--orange);
    color: #151515;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
}

.deal-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 25px 0;
}

.deal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fake-btn {
    min-height: 48px;
    border: 0;
    border-radius: 13px;
    font: inherit;
    font-weight: 900;
}

.fake-btn-orange {
    background: var(--orange);
    color: #151515;
}

.fake-btn-dark {
    background: #2d2d2d;
    color: #fff;
}

.deal-note {
    margin: 16px 0 0;
    color: #999c97;
    font-size: .82rem;
    text-align: center;
}

.section { padding: 82px 0; }

.benefit-strip { padding-top: 0; }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-grid article {
    padding: 34px 25px 36px 0;
}

.benefit-grid article + article {
    padding-left: 25px;
    border-left: 1px solid var(--line);
}

.benefit-number {
    color: var(--orange);
    font-weight: 900;
    font-size: .8rem;
}

.benefit-grid h2 {
    margin: 12px 0 8px;
    font-size: 1.18rem;
    letter-spacing: -.03em;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.workflow-copy h2,
.pricing h2,
.final-card h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: 22px;
}

.workflow-copy > p:last-child {
    color: var(--muted);
    max-width: 520px;
    font-size: 1.05rem;
}

.workflow-list {
    background: rgba(255,255,255,.65);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.workflow-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
}

.workflow-item + .workflow-item {
    border-top: 1px solid var(--line);
}

.workflow-item > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--surface-soft);
    font-size: .85rem;
    font-weight: 900;
}

.workflow-item.active > span {
    background: var(--orange);
}

.workflow-item strong,
.workflow-item small {
    display: block;
}

.workflow-item small {
    margin-top: 3px;
    color: var(--muted);
}

.pricing-card {
    padding: 46px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.price-box {
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--bg);
}

.price-box.featured {
    background: var(--orange-soft);
    border-color: rgba(239,125,50,.35);
}

.price-box small,
.price-box strong,
.price-box span {
    display: block;
}

.price-box small { color: var(--muted); }

.price-box strong {
    margin-top: 5px;
    font-size: 1.25rem;
}

.price-box span {
    margin-top: 18px;
    font-size: 2.5rem;
    font-weight: 950;
    letter-spacing: -.05em;
}

.pricing-note {
    margin: 20px 0 0;
    color: var(--muted);
}

.final-cta { padding-top: 20px; }

.final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background: var(--orange);
}

.final-card .eyebrow { color: rgba(23,23,23,.62); }
.final-card h2 { margin-bottom: 0; }

.pro-footer {
    padding: 30px 0 40px;
    color: var(--muted);
    font-size: .9rem;
}

.pro-footer nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.pro-footer a { text-decoration: none; }

@media (max-width: 900px) {
    .hero-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .deal-card { transform: none; }

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
    }

    .benefit-grid article:nth-child(4) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .pro-header { padding: 17px 0; }

    .header-actions { gap: 9px; }

    .switch-link { display: none; }

    .hero { padding: 42px 0 62px; }

    h1 { font-size: clamp(3rem, 16vw, 4.3rem); }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { width: 100%; }

    .text-link { text-align: center; }

    .deal-info,
    .benefit-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid article,
    .benefit-grid article + article,
    .benefit-grid article:nth-child(3),
    .benefit-grid article:nth-child(4) {
        padding: 25px 0;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .benefit-grid article:first-child {
        border-top: 0;
    }

    .section { padding: 60px 0; }

    .pricing-card,
    .final-card {
        padding: 28px 22px;
    }

    .final-card,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
