:root {
    --bg: #f6f7fb;
    --bg-2: #eef2ff;
    --card: #ffffff;
    --ink: #0b172e;
    --text: #17213a;
    --muted: #39435c;
    --line: #e1e5ef;
    --accent: #6142f5;
    --accent-2: #4f78ff;
    --accent-dark: #26324c;
    --orange: #ff9f24;
    --green: #4fca67;
    --blue: #4979ff;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow: 0 24px 70px rgba(31, 45, 80, .12);
    --shadow-soft: 0 16px 45px rgba(31, 45, 80, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.loyalcard-site-body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 12% 4%, rgba(91, 66, 245, .14), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(79, 120, 255, .13), transparent 34%),
        var(--bg);
    color: var(--text);
    font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

body.loyalcard-site-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(97, 66, 245, .08), transparent 28%),
        radial-gradient(circle at 18% 30%, rgba(79, 120, 255, .09), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(255, 159, 36, .08), transparent 28%);
    pointer-events: none;
}

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

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(225, 229, 239, .72);
    background: rgba(246, 247, 251, .82);
    backdrop-filter: blur(20px);
    transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-open {
    z-index: 120;
    background: #fff;
    backdrop-filter: none;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 34px rgba(31, 45, 80, .08);
}

.header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
}

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

.site-menu-panel {
    display: contents;
}

.menu-support {
    display: none;
}

.mobile-menu-head {
    display: none;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 182px;
    line-height: 0;
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-logo {
    width: 178px;
    margin-bottom: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 999px;
    color: #4c556c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.site-nav a:hover {
    background: #eef0fb;
    color: var(--ink);
}

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

.header-actions {
    justify-content: flex-end;
}

.hero-copy .hero-actions,
.section-head.align-left .hero-actions {
    margin-top: 20px;
}

.link-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.link-button:hover {
    transform: translateY(-1px);
}

.link-button i {
    transition: transform .2s ease;
}

.link-button:hover i {
    transform: translateX(1px);
}

.link-button.primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #fff;
    box-shadow: 0 15px 32px rgba(94, 65, 245, .28);
}

.link-button.soft {
    background: #edeaff;
    color: #5748dd;
}

.link-button.ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
}

.link-button.big {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    display: block;
    height: 2.5px;
    border-radius: 999px;
    background: var(--ink);
    transform: translateX(-50%);
    transition: top .2s ease, width .2s ease, transform .2s ease, opacity .2s ease;
}

.nav-toggle span:nth-child(1) {
    top: 14px;
    width: 21px;
}

.nav-toggle span:nth-child(2) {
    top: 21px;
    width: 15px;
    transform: translateX(-30%);
}

.nav-toggle span:nth-child(3) {
    top: 28px;
    width: 23px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 76px);
    display: flex;
    align-items: center;
    padding: 28px 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(97, 66, 245, .18), transparent 32%),
        radial-gradient(circle at 84% 20%, rgba(79, 120, 255, .15), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(236,239,255,.74));
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 10% 4% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 54px;
    background: linear-gradient(135deg, rgba(97,66,245,.1), rgba(79,120,255,.04));
    transform: rotate(18deg);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(22px);
    opacity: .5;
    pointer-events: none;
}

.hero-glow-a {
    top: -180px;
    left: -120px;
    background: rgba(95, 71, 247, .24);
}

.hero-glow-b {
    right: -160px;
    top: 80px;
    background: rgba(255, 159, 36, .18);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 22px 48px;
    align-items: center;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(97, 66, 245, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: #5748dd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 0 0 5px rgba(97, 66, 245, .1);
}

.hero-copy h1 {
    max-width: 650px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(42px, 5.4vw, 68px);
    line-height: 1.01;
    letter-spacing: -.045em;
    font-weight: 800;
    animation: premiumFadeUp .65s ease both;
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    animation: premiumFadeUp .72s ease .05s both;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
    animation: premiumFadeUp .8s ease .14s both;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #333948;
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 548px;
    display: grid;
    place-items: center;
    animation: premiumFloatIn .8s ease .08s both;
}

.phone-card {
    position: relative;
    z-index: 2;
    width: min(430px, 90vw);
    padding: 9px;
    border: 6px solid #121419;
    border-radius: 44px;
    background: #15171d;
    box-shadow: 0 30px 80px rgba(16, 24, 40, .22);
}

.phone-card::after {
    content: "";
    position: absolute;
    top: 84px;
    right: -11px;
    width: 5px;
    height: 74px;
    border-radius: 999px;
    background: #20232b;
}

.phone-frame-top {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 50%;
    width: 116px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #090a0d;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 18px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 0 0, rgba(97, 66, 245, .08), transparent 32%),
        #fff;
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.phone-top i {
    width: 44px;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ink) 0 25%, transparent 25% 32%, var(--ink) 32% 54%, transparent 54% 64%, var(--ink) 64% 100%);
    opacity: .85;
}

.phone-browser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    margin: 16px 0 14px;
    padding: 0 12px;
    border-radius: 13px;
    background: #edf0f6;
    color: #191f2d;
    font-size: 13px;
    font-weight: 700;
}

.phone-browser b {
    font-size: 18px;
    font-weight: 700;
}

.phone-app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.phone-logo {
    width: 154px;
    flex: 0 0 154px;
}

.phone-app-head em {
    width: 27px;
    height: 18px;
    display: block;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    position: relative;
}

.phone-app-head em::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: var(--ink);
}

.loyal-preview-card {
    padding: 20px 20px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5478ff, #643cf3);
    color: #fff;
    box-shadow: 0 18px 40px rgba(92, 68, 245, .28);
}

.preview-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-card-head small,
.preview-card-head span {
    display: block;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 600;
}

.preview-card-head b {
    display: block;
    margin: 2px 0 0;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.gift-bubble {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: var(--accent);
    font-size: 30px;
}

.reward-line {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 700;
}

.reward-dots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.reward-dots span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
}

.reward-dots span:last-child {
    background: rgba(255, 255, 255, .78);
    color: var(--accent);
}

.loyal-preview-card > a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    border-radius: 12px;
    background: rgba(38, 50, 76, .32);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.partners-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: 14px;
}

.partners-head b {
    font-weight: 800;
}

.partners-head span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

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

.partner-row span {
    min-height: 66px;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 12px;
    background: #050608;
    color: #fff;
    text-align: center;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;
}

.partner-row span:nth-child(1) {
    color: #0eb2cf;
}

.partner-row span:nth-child(2) {
    color: #ff8bd4;
}

.partner-row span:nth-child(3) {
    color: #ffffff;
    background: linear-gradient(135deg, #151515, #0e1020);
}

.partner-row span:nth-child(4) {
    color: #ffc66a;
}

.phone-slider {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 16px;
}

.phone-slider i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8dcec;
}

.phone-slider i:first-child {
    background: var(--accent);
}

.phone-register {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.phone-login {
    margin-top: 9px;
    text-align: center;
    color: #6d7486;
    font-size: 12px;
    font-weight: 600;
}

.phone-login span {
    color: var(--accent);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.quick-grid span {
    min-height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #596276;
    font-size: 11px;
    font-weight: 800;
}

.mini-offer {
    margin-top: 14px;
    padding: 15px;
    border-radius: 18px;
    color: #fff;
}

.mini-offer.orange {
    background: linear-gradient(135deg, #ff9f24, #ffbd4a);
}

.mini-offer b,
.mini-offer span {
    display: block;
}

.mini-offer span {
    margin-top: 4px;
    font-size: 12px;
    opacity: .82;
}

.floating-panel {
    position: absolute;
    z-index: 3;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 220px;
    padding: 13px;
    border: 1px solid rgba(225, 229, 239, .8);
    border-radius: 20px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.panel-stats {
    top: 52px;
    right: 0;
}

.panel-jobs {
    bottom: 72px;
    left: 0;
}

.panel-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eceaff;
    color: #5748dd;
    font-weight: 800;
}

.panel-icon.green {
    background: #eaf8ef;
    color: #2f9c49;
}

.floating-panel b,
.floating-panel small {
    grid-column: 2;
}

.floating-panel b {
    color: var(--ink);
    line-height: 1.1;
}

.floating-panel small {
    color: var(--muted);
    font-size: 12px;
}

.hero-benefit-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(225, 229, 239, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 44px rgba(31, 45, 80, .08);
    backdrop-filter: blur(18px);
}

.hero-benefit-strip div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 64px;
    padding: 10px 12px;
    border-right: 1px solid #dbe0ee;
}

.hero-benefit-strip div:last-child {
    border-right: 0;
}

.hero-benefit-strip i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #edeaff;
    color: var(--accent);
    font-size: 18px;
}

.hero-benefit-strip b,
.hero-benefit-strip span {
    display: block;
    line-height: 1.15;
}

.hero-benefit-strip b {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

.hero-benefit-strip span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.section {
    padding: 74px 0;
}

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

.section-head.align-left {
    margin-left: 0;
    text-align: left;
}

.section-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #5748dd;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4.5vw, 50px);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 800;
}

.section-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.feature-grid,
.pricing-grid,
.showcase-grid,
.steps-grid {
    display: grid;
    gap: 16px;
}

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

.feature-card,
.price-card,
.promo-card,
.steps-grid > div,
.dashboard-card,
.content-card,
.simple-page .content-card,
.faq-list details,
.final-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-soft);
}

.feature-card {
    padding: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #edeaff, #f7f5ff);
    color: #5748dd;
    font-size: 20px;
    font-weight: 800;
}

.feature-card h3,
.promo-card h3,
.steps-grid h3,
.price-card h3 {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.feature-card h3 {
    font-size: 20px;
}

.feature-card p,
.promo-card p,
.steps-grid p,
.price-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.audience-section {
    padding-top: 54px;
    background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(246,247,251,.72));
}

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

.audience-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 34px rgba(31, 45, 80, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(31, 45, 80, .11);
}

.audience-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, #edeaff, #f7f5ff);
    color: var(--accent);
    font-size: 20px;
}

.audience-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.audience-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.reveal-card {
    animation: premiumFadeUp .6s ease both;
}

.reveal-card:nth-child(2) { animation-delay: .04s; }
.reveal-card:nth-child(3) { animation-delay: .08s; }
.reveal-card:nth-child(4) { animation-delay: .12s; }
.reveal-card:nth-child(5) { animation-delay: .16s; }
.reveal-card:nth-child(6) { animation-delay: .2s; }

.split-section {
    padding: 84px 0;
    background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(237,240,255,.7));
}

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

.dashboard-card {
    padding: 26px;
    border-radius: var(--radius-xl);
}

.dash-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.dash-head b {
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
}

.dash-head span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eaf8ef;
    color: #2f9c49;
    font-size: 12px;
    font-weight: 800;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.dash-grid div {
    padding: 14px;
    border-radius: 18px;
    background: #f5f6fa;
}

.dash-grid span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.dash-grid b {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
}

.dash-list {
    display: grid;
    gap: 9px;
}

.dash-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #333948;
    font-weight: 700;
}

.dash-list i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 10px;
    background: #edeaff;
    color: var(--accent);
    font-size: 13px;
}

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

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 26px;
    color: #fff;
    border: 0;
}

.promo-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -62px;
    bottom: -78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.promo-card.orange {
    background: linear-gradient(135deg, #ff9f24, #f68120);
}

.promo-card.green {
    background: linear-gradient(135deg, #56c96d, #31a84f);
}

.promo-card.purple {
    background: linear-gradient(135deg, #526cff, #653df4);
}

.promo-card h3,
.promo-card p,
.promo-card a {
    position: relative;
    z-index: 1;
    color: #fff;
}

.promo-card h3 {
    margin-top: 46px;
    font-size: 28px;
    line-height: 1.08;
}

.promo-card p {
    color: rgba(255, 255, 255, .86);
}

.promo-card a {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 800;
}

.tag,
.plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.tag {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, .2);
}

.pricing-section {
    background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(246,247,251,.9));
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.price-card.is-orange::before {
    background: linear-gradient(90deg, #ff9f24, #ffbd4a);
}

.price-card.is-purple::before {
    background: linear-gradient(90deg, #526cff, #653df4);
}

.price-card.is-blue::before {
    background: linear-gradient(90deg, #38bdf8, #4979ff);
}

.price-card h3 {
    margin-top: 16px;
    font-size: 23px;
}

.price-card > p {
    min-height: 20px;
}

.plan-badge {
    width: fit-content;
    background: #edeaff;
    color: #5748dd;
}

.price {
    margin: 18px 0 10px;
}

.price strong {
    color: var(--ink);
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.035em;
}

.price span {
    color: var(--muted);
    font-weight: 800;
}

.price-card ul {
    display: grid;
    gap: 9px;
    align-content: start;
    min-height: 142px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 24px;
    color: #333948;
    font-size: 14px;
    font-weight: 700;
}

.price-card li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eaf8ef;
    box-shadow: inset 0 0 0 4px #4fca67;
}

.price-card .link-button {
    margin-top: auto;
    width: 100%;
    min-height: 52px;
}

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

.steps-grid > div {
    padding: 22px;
}

.steps-grid b {
    display: block;
    margin-bottom: 18px;
    color: #5748dd;
    font-size: 13px;
    font-weight: 800;
}

.steps-grid h3 {
    font-size: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 38px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 20px 22px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
}

.final-cta {
    padding: 30px 0 84px;
}

.final-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 6vw, 54px);
    border: 0;
    background:
        radial-gradient(circle at 92% 10%, rgba(255,255,255,.22), transparent 32%),
        linear-gradient(135deg, #526cff, #653df4);
    color: #fff;
}

.final-card h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 800;
}

.final-card p {
    max-width: 620px;
    margin: 16px 0 26px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.final-card .link-button,
.final-card .link-button.primary,
.final-card .link-button.ghost {
    border-color: rgba(255, 255, 255, .56);
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(16, 24, 40, .12);
}

.final-card .link-button:hover {
    background: #fff;
    color: var(--ink);
}

.site-footer {
    padding: 54px 0 24px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr;
    gap: 34px;
}

.site-footer p,
.footer-cta span {
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links a {
    color: #333948;
    font-weight: 800;
    text-decoration: none;
}

.footer-cta {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-cta strong {
    color: var(--ink);
    font-size: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.fallback-page {
    padding: 80px 0;
}

.content-card {
    padding: 34px;
}

.content-card h1 {
    margin-top: 0;
    color: var(--ink);
}

@keyframes premiumFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumFloatIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-ready {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .58s ease,
        transform .58s cubic-bezier(.2, .72, .24, 1),
        box-shadow .22s ease,
        background .22s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.animate-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .animate-ready {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
        position: relative;
        z-index: 140;
        transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .site-header.is-open .nav-toggle {
        position: fixed;
        top: calc(16px + env(safe-area-inset-top));
        right: 18px;
        background: #fff;
        border-color: #dfe4f0;
        box-shadow: 0 14px 36px rgba(21, 32, 56, .12);
    }

    .site-header.is-open .nav-toggle span:nth-child(1) {
        top: 21px;
        width: 24px;
        transform: translateX(-50%) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(4px);
    }

    .site-header.is-open .nav-toggle span:nth-child(3) {
        top: 21px;
        width: 24px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .site-header.is-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 80;
        background: #fff;
    }

    .site-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 100;
        width: 100vw;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: calc(18px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
        overflow-y: auto;
        background:
            radial-gradient(circle at 0 0, rgba(97, 66, 245, .09), transparent 28%),
            linear-gradient(180deg, #fff 0%, #f8f9fd 100%);
        box-shadow: none;
        transform: translateX(106%);
        opacity: 0;
        pointer-events: none;
        transition: transform .24s ease, opacity .24s ease;
    }

    .site-header.is-open .site-menu-panel {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-head {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 0 64px 10px 0;
    }

    .mobile-menu-logo {
        width: 178px;
    }

    .mobile-menu-head > span:last-child {
        color: #7a8294;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .site-nav {
        display: grid;
        gap: 9px;
        justify-content: stretch;
        margin-top: 0;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-height: 56px;
        padding: 0 17px;
        border: 1px solid #e7eaf3;
        border-radius: 18px;
        background: rgba(255, 255, 255, .92);
        color: var(--ink);
        box-shadow: 0 10px 28px rgba(31, 45, 80, .06);
        font-size: 17px;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 2px;
        justify-content: stretch;
    }

    .site-header.is-open .header-actions .link-button {
        width: 100%;
        min-height: 54px;
        border-radius: 18px;
        font-size: 17px;
    }

    .menu-support {
        display: grid;
        gap: 7px;
        margin-top: auto;
        padding: 16px;
        border: 1px solid #e7eaf3;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(31, 45, 80, .06);
    }

    .menu-support span {
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }

    .menu-support a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent);
        font-size: 18px;
        font-weight: 800;
    }

    .hero-grid,
    .split-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

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

    .hero-benefit-strip div:nth-child(2) {
        border-right: 0;
    }

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

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

@media (max-width: 720px) {
    .site-container {
        width: min(100% - 24px, 1160px);
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand-logo {
        width: 156px;
    }

    .hero-section {
        min-height: auto;
        padding: 22px 0 30px;
    }

    .hero-copy {
        padding-top: 15px;
    }

    .hero-copy h1 {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.06;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .hero-copy p,
    .section-head p,
    .final-card p {
        font-size: 15px;
    }

    .hero-copy p {
        margin-bottom: 0;
    }

    .hero-copy .hero-actions,
    .section-head.align-left .hero-actions {
        margin-top: 16px;
    }

    .hero-actions,
    .site-header.is-open .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hero-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 16px;
    }

    .hero-points span {
        justify-content: center;
        min-height: 48px;
        border-radius: 18px;
    }

    .link-button {
        width: 100%;
        min-height: 50px;
        border-radius: 15px;
    }

    .hero-visual {
        display: none;
    }

    .section {
        padding: 46px 0;
    }

    .section-head {
        text-align: left;
    }

    .feature-grid,
    .audience-grid,
    .showcase-grid,
    .pricing-grid,
    .steps-grid,
    .hero-benefit-strip,
    .dash-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-benefit-strip div,
    .hero-benefit-strip div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #dbe0ee;
        min-height: 58px;
    }

    .hero-benefit-strip div:last-child {
        border-bottom: 0;
    }

    .price-card > p,
    .price-card ul {
        min-height: 0;
    }

    .price-card {
        padding: 18px;
    }

    .promo-card {
        min-height: 240px;
    }

    .dash-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .phone-card {
        width: 100%;
        border-width: 8px;
        border-radius: 38px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

}
