:root {
    --bg: #050b14;
    --bg-soft: #0b1422;
    --card: #0f1c2e;
    --card-2: #101827;
    --cyan: #00d9ff;
    --cyan-soft: rgba(0, 217, 255, 0.16);
    --text: #f4f7fb;
    --muted: #a8b3c7;
    --line: rgba(255, 255, 255, .09);
    --green: #41e6a4;
    --warning: #ffd166;
    --danger: #ff6b6b;
    --radius: 24px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .35);
    --max: 1180px;
}

/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 217, 255, .18), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(65, 230, 164, .10), transparent 28%),
        linear-gradient(180deg, #050b14 0%, #07111e 45%, #050b14 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 78px 0;
}

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

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 11, 20, .72);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 1.15rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 500;
    font-size: .72rem;
    letter-spacing: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), #41e6a4);
    box-shadow: 0 0 28px rgba(0, 217, 255, .35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: .95rem;
}

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

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: .2s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: .2s ease;
    cursor: pointer;
}

.btn-primary {
    color: #001018;
    background: linear-gradient(135deg, var(--cyan), #41e6a4);
    box-shadow: 0 16px 42px rgba(0, 217, 255, .22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(0, 217, 255, .30);
}

.btn-secondary {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, .04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
}

/* HERO */
.hero {
    padding: 92px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: start;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: .96;
    letter-spacing: -.06em;
    margin-bottom: 24px;
}

.hero p {
    color: var(--muted);
    font-size: 1.18rem;
    max-width: 680px;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-visual-stack {
    display: grid;
    gap: 18px;
}

.hero-image {
    height: 230px;
}

.hero-image img {
    min-height: 230px;
}

/* TYPOGRAPHY / COMMON */
h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: 18px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--cyan) 55%, #41e6a4);
    -webkit-background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    background: var(--cyan-soft);
    border: 1px solid rgba(0, 217, 255, .22);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: .86rem;
    margin-bottom: 22px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 217, 255, .12);
}

.chip {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: .88rem;
}

.section-head {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-head.center {
    margin: 0 auto 46px;
    text-align: center;
}

.section-head p {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-kicker {
    color: var(--cyan);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .78rem;
}

/* CARDS */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    margin: 20px 0;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}

.card p,
.card li {
    color: var(--muted);
}

.icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--cyan-soft);
    border: 1px solid rgba(0, 217, 255, .18);
    color: var(--cyan);
    font-weight: 900;
    margin-bottom: 18px;
}

.check {
    color: var(--green);
    font-weight: 900;
    flex: 0 0 auto;
}

.badge {
    display: inline-flex;
    margin-bottom: 16px;
    background: var(--cyan-soft);
    color: var(--cyan);
    border: 1px solid rgba(0, 217, 255, .22);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

/* LAYOUTS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.split,
.problem-layout,
.solution-layout,
.human-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.problem-layout {
    grid-template-columns: 1.05fr .95fr;
}

.list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.list li {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
    color: var(--muted);
}

/* VISUAL CARDS / IMAGES */
.visual-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    filter: saturate(.95) contrast(1.02);
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 20, .05), rgba(5, 11, 20, .65)),
        radial-gradient(circle at 20% 10%, rgba(0, 217, 255, .22), transparent 36%);
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 18px;
    border-radius: 20px;
    background: rgba(5, 11, 20, .72);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.visual-caption strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.visual-caption span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
}

/* CHAT DEMO */
.demo-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .11);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border-radius: 32px;
    padding: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.demo-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, .28), transparent 35%);
    pointer-events: none;
}

.call-window {
    position: relative;
    background: #07111e;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.status {
    color: var(--green);
    font-weight: 700;
    font-size: .88rem;
}

.avatar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 217, 255, .15);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-row strong {
    display: block;
    font-size: 1.05rem;
}

.avatar-row span {
    color: var(--muted);
    font-size: .9rem;
}

.bubble {
    padding: 14px 16px;
    border-radius: 18px;
    margin: 10px 0;
    font-size: .95rem;
}

.bubble.ai {
    background: rgba(0, 217, 255, .11);
    border: 1px solid rgba(0, 217, 255, .18);
}

.bubble.user {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    margin-left: 28px;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.mini-stat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
}

.mini-stat b {
    display: block;
    color: var(--cyan);
    font-size: 1.2rem;
}

.mini-stat span {
    color: var(--muted);
    font-size: .78rem;
}

/* FLOW */
.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
}

.flow-visual {
    margin-bottom: 34px;
}

.flow-visual img {
    min-height: 280px;
}

.step {
    position: relative;
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    min-height: 150px;
}

.step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 1.8rem;
    font-weight: 900;
    z-index: 2;
}

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

.step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--muted);
    font-size: .92rem;
}

/* SCROLL VIDEO */
.scroll-video-section {
    position: relative;
    height: 180vh;
    margin-bottom: 34px;
}

.scroll-video-sticky {
    position: sticky;
    top: 110px;
}

.scroll-video-card {
    height: min(68vh, 620px);
}

.scroll-video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

/* INDUSTRIES */
.industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.industry {
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
}

.industry img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.industry-content {
    padding: 22px;
}

.industry strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.industry p {
    color: var(--muted);
    font-size: .92rem;
}

/* PRICING */
.setup-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
    padding: 30px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 217, 255, .16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    border: 1px solid rgba(0, 217, 255, .18);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.setup-box h3 {
    font-size: 1.7rem;
    letter-spacing: -.035em;
    margin: 10px 0;
}

.setup-box p {
    color: var(--muted);
}

.setup-box ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.setup-box li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
}

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

.price-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    overflow: hidden;
}

.price-card.featured {
    border-color: rgba(0, 217, 255, .42);
    box-shadow: 0 24px 70px rgba(0, 217, 255, .12);
    transform: translateY(-10px);
}

.price-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.price-card .desc {
    color: var(--muted);
    min-height: 52px;
    margin-bottom: 18px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 6px;
}

.price small {
    display: block;
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0;
}

.price-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.price-card li {
    color: var(--muted);
    display: flex;
    gap: 10px;
}

.setup-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: .92rem;
}

.setup-note strong {
    color: var(--cyan);
}

.pricing-disclaimer {
    max-width: 860px;
    margin: 26px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
}

.note {
    color: var(--muted);
    font-size: .88rem;
    margin-top: 18px;
}

/* CTA / FORM */
.cta {
    padding: 84px 0;
}

.cta-box {
    border-radius: 36px;
    padding: 52px;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 217, 255, .22), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-box p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
}

.demo-form-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
    text-align: left;
}

.demo-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 24px;
}

.demo-benefits {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 15px;
}

.demo-benefits span {
    color: var(--green);
    font-weight: 900;
}

.lead-form-card {
    background: rgba(7, 17, 30, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 18px 22px;
    background: rgba(0, 217, 255, .08);
    border-bottom: 1px solid rgba(0, 217, 255, .16);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
    white-space: nowrap;
}

.step-item span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--muted);
    font-size: .75rem;
}

.step-item.active {
    color: var(--text);
}

.step-item.active span {
    background: var(--cyan);
    color: #001018;
}

.step-line {
    height: 1px;
    flex: 1;
    min-width: 12px;
    background: rgba(255, 255, 255, .14);
}

.form-body {
    padding: 30px;
}

.form-body h3 {
    font-size: 1.6rem;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}

.form-body>p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 24px;
}

.lead-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 700;
}

.form-group label span {
    color: var(--cyan);
}

.form-group input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .055);
    color: var(--text);
    border-radius: 15px;
    padding: 14px 15px;
    font-size: .95rem;
    outline: none;
    transition: .2s ease;
}

.form-group input::placeholder {
    color: rgba(168, 179, 199, .62);
}

.form-group input:focus {
    border-color: rgba(0, 217, 255, .65);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, .12);
}

.form-group input.is-invalid {
    border-color: rgba(255, 107, 107, .8);
    background: rgba(255, 107, 107, .08);
}

.form-group input.is-valid {
    border-color: rgba(65, 230, 164, .65);
}

.phone-input {
    position: relative;
}

.phone-prefix {
    position: absolute;
    inset: 0 auto 0 0;
    width: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
    pointer-events: none;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.phone-input input {
    padding-left: 102px;
}

.phone-help,
.field-error {
    display: block;
    margin-top: 7px;
    font-size: .78rem;
}

.phone-help {
    color: var(--muted);
}

.phone-help.valid {
    color: var(--green);
}

.phone-help.invalid {
    color: var(--danger);
}

.field-error {
    color: var(--danger);
    min-height: 16px;
}

.privacy-note {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}

.form-submit {
    width: 100%;
    border: 0;
    min-height: 52px;
    font-size: .98rem;
}

.form-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    border: 1px solid rgba(65, 230, 164, .25);
    background: rgba(65, 230, 164, .10);
    color: var(--green);
    border-radius: 16px;
    padding: 13px 15px;
    font-size: .9rem;
    text-align: center;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, .035);
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--line);
    padding: 30px 0;
    color: var(--muted);
    font-size: .9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {

    .hero-grid,
    .split,
    .problem-layout,
    .solution-layout,
    .human-layout,
    .setup-box,
    .demo-form-wrap {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .pricing,
    .industries {
        grid-template-columns: 1fr 1fr;
    }

    .visual-card img {
        min-height: 280px;
    }

    .hero-image {
        height: auto;
    }

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

    .step:not(:last-child)::after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -24px;
        transform: translateX(50%);
    }

    .scroll-video-section {
        height: auto;
    }

    .scroll-video-sticky {
        position: relative;
        top: auto;
    }

    .scroll-video-card {
        height: auto;
    }

    .scroll-video {
        min-height: 280px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-inner {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px;
        background: rgba(5, 11, 20, .96);
        border: 1px solid var(--line);
        border-radius: 0 0 24px 24px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .035);
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 10px;
        border-radius: 16px;
    }

    .nav-links .btn-primary {
        background: linear-gradient(135deg, var(--cyan), #41e6a4);
        color: #001018;
        font-weight: 800;
        box-shadow: 0 12px 30px rgba(0, 217, 255, .25);
    }

    .nav-links .btn-primary:hover {
        transform: translateY(-1px);
    }
}

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

    .hero {
        padding-top: 60px;
    }

    .grid-3,
    .pricing,
    .industries,
    .mini-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 34px 22px;
    }

    .price-card.featured {
        transform: none;
    }

    .form-steps {
        align-items: flex-start;
        flex-direction: column;
    }

    .step-line {
        display: none;
    }

    .form-body {
        padding: 24px 20px;
    }
}