        :root {
            --bg: #ffffff;
            --surface: #fbfcfa;
            --surface-soft: #e7eeef;
            --slate-50: #edf2f3;
            --slate-100: #d9e2e3;
            --slate-200: #becfd2;
            --slate-300: #abc2cc;
            --slate-400: #91a5ad;
            --slate-500: #5f7785;
            --slate-600: #315468;
            --slate-700: #2d4350;
            --slate-800: #1c485f;
            --slate-900: #173646;
            --blue-50: #eef5f6;
            --blue-100: #dbe7eb;
            --blue-400: #557f97;
            --blue-500: #3f7087;
            --blue-600: #2a5c77;
            --blue-700: #1c485f;
            --cyan-400: #c39a67;
            --cyan-500: #936a3d;
            --orange-500: #f28c28;
            --red-100: #fee2e2;
            --red-500: #ef4444;
            --radius-xl: 24px;
            --radius-2xl: 32px;
            --pricing-sticky-offset: 96px;
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            background: var(--bg);
            color: var(--slate-900);
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            overflow-x: hidden;
        }

        ::selection {
            background: rgba(42, 92, 119, .18);
            color: var(--blue-700);
        }

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

        .page {
            position: relative;
            min-height: 100vh;
            background: var(--bg);
        }

        .bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: var(--bg);
        }

        .bg-grid {
            display: none;
        }

        .orb {
            position: absolute;
            border-radius: 999px;
            filter: blur(120px);
            mix-blend-mode: multiply;
            animation: orbPulse 12s ease-in-out infinite;
        }

        .orb--a {
            top: 0;
            left: -256px;
            width: 1000px;
            height: 800px;
            background: rgba(226, 232, 240, .55);
        }

        .orb--b {
            top: 20%;
            right: -256px;
            width: 800px;
            height: 800px;
            background: rgba(241, 245, 249, .9);
            animation-duration: 15s;
            animation-delay: 2s;
        }

        @keyframes orbPulse {
            0%, 100% {
                transform: scale(1);
                opacity: .3;
            }
            50% {
                transform: scale(1.12);
                opacity: .42;
            }
        }

        .content {
            position: relative;
            z-index: 10;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 60;
            border-bottom: 1px solid rgba(226, 232, 240, .5);
            background: #fbfcfa;
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
        }

        .nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        #menu-close {
            display: none;
        }

        .brand {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            text-decoration: none;
        }

        .brand img {
            height: 24px;
            width: auto;
            display: block;
        }

        .brand-tagline {
            margin-top: -5px;
            color: #64748b;
            font-size: 12px;
            font-weight: 650;
            line-height: 1.15;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links .link {
            font-size: 14px;
            font-weight: 700;
            color: var(--slate-600);
            transition: color .2s ease;
        }

        .nav-links .link:hover {
            color: var(--blue-600);
        }

        .divider {
            width: 1px;
            height: 20px;
            background: var(--slate-200);
        }

        .btn {
            min-height: 42px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid transparent;
            font-size: 14px;
            font-weight: 700;
            transition: all .25s ease;
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-login {
            color: var(--slate-600);
        }

        .btn-login:hover {
            color: var(--slate-900);
        }

        .btn-create {
            position: relative;
            overflow: hidden;
            padding: 0 24px;
            background: var(--slate-900);
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
        }

        .btn-create::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .btn-create:hover {
            background: var(--blue-600);
            box-shadow: 0 6px 20px rgba(42, 92, 119, .18);
            transform: translateY(-2px);
            animation: hero-btn-bounce .34s ease;
        }

        .btn-create:hover::before {
            transform: translateX(135%);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border: 0;
            background: transparent;
            color: var(--slate-600);
            padding: 0;
            cursor: pointer;
        }

        .menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: #fff;
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
            border-bottom: 1px solid var(--slate-200);
            padding: 24px;
            box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
        }

        .mobile-nav.is-open {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .mobile-nav a {
            font-size: 18px;
            font-weight: 800;
            color: var(--slate-800);
        }

        .mobile-nav hr {
            width: 100%;
            border: 0;
            border-top: 1px solid var(--slate-100);
            margin: 6px 0;
        }

        .mobile-nav .mobile-cta {
            position: relative;
            overflow: hidden;
            margin-top: 8px;
            min-height: 52px;
            border-radius: 12px;
            background: var(--blue-600);
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 24px rgba(42, 92, 119, .18);
        }

        .mobile-nav .mobile-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .3) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .mobile-nav .mobile-cta:hover {
            animation: hero-btn-bounce .34s ease;
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(147, 106, 61, .18);
        }

        .mobile-nav .mobile-cta:hover::before {
            transform: translateX(135%);
        }

        .hero {
            width: 100%;
            margin: 0;
            padding: 80px 0 0;
            background: #fff;
        }

        .hero-wrap {
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: center;
            position: relative;
        }

        .hero-copy {
            width: 100%;
            max-width: 1120px;
            padding: 0 clamp(32px, 6vw, 80px);
            text-align: center;
        }

        .hero-copy--overlay {
            position: absolute;
            z-index: 4;
            top: 0;
            right: 0;
            left: 0;
            max-width: none;
            height: clamp(640px, 62vw, 860px);
            padding: clamp(48px, 7vw, 112px) clamp(32px, 8vw, 144px);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            color: #fff;
            pointer-events: none;
            transform: translate3d(0, var(--hero-copy-parallax-y, 0px), 0);
            will-change: transform;
        }

        .hero-copy--overlay > * {
            pointer-events: auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--slate-200);
            box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
            margin-bottom: 28px;
        }

        .hero-copy--overlay .badge {
            background: rgba(15, 23, 42, .54);
            border-color: rgba(255, 255, 255, .32);
            box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--blue-500);
            animation: pulse 1.8s infinite;
        }

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

        .badge span {
            font-size: 11px;
            font-weight: 800;
            color: var(--slate-700);
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .hero-copy--overlay .badge span {
            color: #fff;
        }

        .hero h1 {
            margin: 0;
            font-size: clamp(42px, 6vw, 62px);
            line-height: 1.05;
            letter-spacing: -.03em;
            font-weight: 900;
            color: var(--slate-900);
        }

        .hero-copy--overlay h1 {
            max-width: 820px;
            color: #fff;
            font-size: clamp(44px, 5.4vw, 74px);
            line-height: 1.02;
            text-shadow: 0 3px 22px rgba(15, 23, 42, .48);
        }

        .hero h1 .hero-line {
            display: inline;
        }

        .hero h1 .hero-line + .hero-line {
            margin-left: .22em;
        }

        .hero h1 .hero-line--strong {
            font-weight: 900;
            font-variation-settings: "wght" 900;
        }

        .hero h1 .hero-line--highlight {
            display: inline-block;
            color: #fff;
            font-weight: 900;
            font-variation-settings: "wght" 900;
        }

        .hero h1 .hero-line--secondary {
            display: inline-block;
            font-size: .74em;
            color: var(--blue-600);
            font-weight: 900;
            font-variation-settings: "wght" 900;
            padding-bottom: .07em;
        }

        .hero h1 .hero-highlight-text {
            padding: .02em .14em .08em;
            border-radius: .12em;
            background: var(--orange-500);
            color: #fff;
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
            text-shadow: none;
        }

        .hero-copy--overlay h1 .hero-line {
            display: block;
        }

        .hero-copy--overlay h1 .hero-line + .hero-line {
            margin-left: 0;
            margin-top: .65em;
        }

        .hero-copy--overlay h1 .hero-line--highlight {
            color: #fff;
        }

        .hero-copy--overlay h1 .hero-line--secondary {
            color: #fff;
            font-size: .58em;
            white-space: nowrap;
        }

        .hero p {
            margin: 30px auto 0;
            max-width: 780px;
            font-size: clamp(18px, 2vw, 22px);
            line-height: 1.45;
            color: var(--slate-500);
            font-weight: 500;
        }

        .hero-copy--overlay p {
            margin-right: 0;
            margin-left: 0;
            max-width: 650px;
            color: rgba(255, 255, 255, .96);
            text-shadow: 0 2px 15px rgba(15, 23, 42, .48);
        }

        .hero-cta {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-cta .cta-primary,
        .hero-cta .cta-secondary {
            position: relative;
            overflow: hidden;
            min-height: 54px;
            padding: 0 26px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all .25s ease;
        }

        .hero-cta .cta-primary {
            background: var(--blue-600);
            color: #fff;
            box-shadow: 0 8px 25px rgba(42, 92, 119, .24);
        }

        .hero-copy--overlay .hero-cta .cta-primary {
            background: #fff;
            color: var(--slate-900);
            box-shadow: 0 12px 28px rgba(15, 23, 42, .25);
        }

        .hero-cta .cta-primary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .3) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .hero-cta .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(147, 106, 61, .22);
            animation: hero-btn-bounce .34s ease;
        }

        .hero-cta .cta-primary:hover::before {
            transform: translateX(135%);
        }

        .hero-cta .cta-primary svg {
            width: 20px;
            height: 20px;
        }

        .hero-cta .cta-secondary {
            background: #fff;
            border: 1px solid var(--slate-200);
            color: var(--slate-700);
            box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
        }

        .hero-copy--overlay .hero-cta .cta-secondary {
            border-color: rgba(255, 255, 255, .72);
            background: rgba(255, 255, 255, .16);
            color: #fff;
            box-shadow: none;
        }

        .hero-cta .cta-secondary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .7) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .hero-cta .cta-secondary svg {
            width: 20px;
            height: 20px;
        }

        .hero-cta .cta-secondary:hover {
            background: var(--slate-50);
            border-color: var(--slate-300);
            animation: hero-btn-bounce .34s ease;
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(15, 23, 42, .12);
        }

        .hero-copy--overlay .hero-cta .cta-secondary:hover {
            background: rgba(15, 23, 42, .78);
            border-color: #fff;
            color: #fff;
            box-shadow: 0 10px 22px rgba(15, 23, 42, .28);
        }

        .hero-cta .cta-secondary:hover::before {
            transform: translateX(135%);
        }

        @keyframes hero-btn-bounce {
            0% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-2px) scale(1.015);
            }
            100% {
                transform: translateY(-1px) scale(1);
            }
        }

        .hero-trust {
            margin-top: 38px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px 30px;
            color: var(--slate-500);
            font-size: 14px;
            font-weight: 700;
        }

        .hero-trust .item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust .item svg {
            width: 18px;
            height: 18px;
            color: var(--blue-500);
        }

        .hero-media {
            width: 100vw;
            max-width: none;
            margin-left: calc(50% - 50vw);
            position: relative;
        }

        .hero-media-glow {
            display: none;
        }

        .hero-media-shell {
            position: relative;
            width: 100%;
            height: clamp(640px, 62vw, 860px);
            overflow: hidden;
            border-top: 1px solid var(--slate-200);
            border-bottom: 1px solid var(--slate-200);
            background: var(--slate-900);
        }

        .hero-media-shell::after {
            content: "";
            position: absolute;
            z-index: 3;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .52) 35%, rgba(15, 23, 42, .14) 65%, rgba(15, 23, 42, .08) 100%);
            pointer-events: none;
        }

        .hero-media-photo {
            position: absolute;
            inset: 0;
        }

        .hero-media-photo picture,
        .hero-media-photo img {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-media-photo img {
            object-fit: cover;
            object-position: center 40%;
            transform: translate3d(0, calc(-13px + var(--hero-image-parallax-y, 0px)), 0) scale(1.04);
            transform-origin: right center;
            will-change: transform;
        }

        .hero-slide:nth-child(2) .hero-media-photo img {
            object-position: center 42%;
            transform-origin: center center;
        }

        .hero-carousel {
            position: absolute;
            inset: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.05s ease-in-out;
            pointer-events: none;
        }

        .hero-slide.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .hero-carousel-nav {
            position: absolute;
            z-index: 5;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            pointer-events: none;
        }

        .hero-carousel-arrow {
            width: 48px;
            height: 48px;
            border-radius: 999px;
            border: 1px solid rgba(226, 232, 240, .85);
            background: rgba(255, 255, 255, .72);
            backdrop-filter: blur(10px);
            color: var(--slate-700);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
            transition: background .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
        }

        .hero-carousel-arrow svg {
            width: 16px;
            height: 16px;
        }

        .hero-carousel-arrow:hover {
            background: rgba(255, 255, 255, .92);
            border-color: rgba(148, 163, 184, .85);
            color: var(--slate-900);
            transform: translateY(-1px);
        }

        .hero-carousel-arrow:focus-visible,
        .hero-carousel-dot:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 3px;
        }

        .hero-carousel-dots {
            position: absolute;
            z-index: 6;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            border: 1px solid rgba(255, 255, 255, .32);
            border-radius: 999px;
            background: rgba(15, 23, 42, .42);
            backdrop-filter: blur(10px);
        }

        .hero-carousel-dot {
            width: 9px;
            height: 9px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, .58);
            cursor: pointer;
            transition: width .22s ease, background .22s ease;
        }

        .hero-carousel-dot.is-active {
            width: 26px;
            background: #fff;
        }

        .hero-details {
            width: 100%;
            max-width: 1120px;
            padding: 44px clamp(32px, 6vw, 80px) 76px;
            text-align: center;
        }

        .hero-details .hero-points {
            margin-top: 0;
            text-align: left;
        }

        .hero-details .hero-trust {
            margin-top: 34px;
        }

        .hero-float {
            position: absolute;
            z-index: 3;
            border-radius: 18px;
            background: rgba(255, 255, 255, .9);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .6);
        }

        .hero-float--bottom {
            left: 20px;
            right: 20px;
            bottom: 20px;
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            box-shadow: 0 18px 26px rgba(15, 23, 42, .22);
        }

        .hero-float-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--blue-100);
            color: var(--blue-600);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-float-icon svg {
            width: 24px;
            height: 24px;
        }

        .hero-float-title {
            margin: 0;
            font-size: 11px;
            line-height: 1.25;
            font-weight: 700;
            color: var(--slate-900);
        }

        .hero-float--bottom .hero-float-title {
            font-size: 12px !important;
            line-height: 1.25 !important;
            font-weight: 700 !important;
        }

        .hero-float-premium-icon {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: var(--blue-600);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(42, 92, 119, .22);
            margin-right: 8px;
            vertical-align: -5px;
        }

        .hero-float-premium-icon svg {
            width: 14px;
            height: 14px;
        }

        .hero-float-sub {
            margin: 2px 0 0;
            font-size: 12px;
            font-weight: 600;
            color: var(--slate-500);
        }

        .hero-ready {
            height: 40px;
            padding: 0 14px;
            border-radius: 10px;
            background: #e6f4ef;
            border: 1px solid #b7ddd2;
            color: #1d6f63;
            font-size: 13px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .hero-ready svg {
            width: 14px;
            height: 14px;
        }

        .hero-float--top {
            top: 20px;
            right: 20px;
            padding: 9px 14px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            font-weight: 800;
            color: var(--slate-900);
            box-shadow: 0 10px 20px rgba(15, 23, 42, .16);
        }

        .hero-float--top .dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--blue-500);
            animation: pulse 1.8s infinite;
        }

        section {
            position: relative;
            z-index: 10;
        }

        .section {
            padding: 128px 0;
        }

        .section-white {
            background: #fff;
        }

        .section-soft {
            background: var(--surface-soft);
        }

        .section--with-top-border {
            border-top: 1px solid #f1f5f9;
        }

        .title-center {
            text-align: center;
            max-width: 840px;
            margin: 0 auto 70px;
        }

        .title-center h2 {
            margin: 0 0 18px;
            font-size: clamp(36px, 5.5vw, 52px);
            line-height: 1.1;
            letter-spacing: -.03em;
            color: var(--slate-900);
            font-weight: 900;
        }

        .title-center p {
            margin: 0;
            font-size: clamp(20px, 2vw, 20px);
            color: var(--slate-500);
            font-weight: 500;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px 44px;
            margin-bottom: 72px;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }

        .problem-icon {
            position: relative;
            overflow: hidden;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            border: 1px solid var(--blue-100);
            background: #ffffff;
            color: var(--blue-600);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 56px;
            box-shadow: 0 10px 22px rgba(42, 92, 119, .10), inset 0 1px 0 rgba(255, 255, 255, .75);
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }

        .problem-icon::before {
            content: "";
            position: absolute;
            inset: -20% auto -20% -120%;
            width: 70%;
            background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .64), transparent);
            transform: skewX(-18deg);
            transition: left .65s ease;
            pointer-events: none;
        }

        .problem-icon svg {
            width: 24px;
            height: 24px;
        }

        .problem-item:hover .problem-icon {
            transform: translateY(-2px) scale(1.04);
            border-color: var(--blue-400);
            box-shadow: 0 14px 28px rgba(42, 92, 119, .16), 0 0 0 3px rgba(85, 127, 151, .14);
        }

        .problem-item:hover .problem-icon::before {
            left: 150%;
        }

        .problem-item h4 {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 800;
            color: var(--slate-900);
            letter-spacing: -.01em;
        }

        .problem-item p {
            margin: 0;
            font-size: 16px;
            color: var(--slate-500);
            font-weight: 500;
            line-height: 1.45;
        }

        .problem-pill {
            margin: 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 32px;
            border-radius: 999px;
            background: var(--blue-600);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            box-shadow: 0 14px 28px rgba(42, 92, 119, .18);
        }

        .problem-pill-icon {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .22);
            border: 1px solid rgba(255, 255, 255, .5);
            box-shadow: 0 6px 12px rgba(42, 92, 119, .18);
            flex: 0 0 30px;
        }

        .problem-pill-icon svg {
            width: 20px;
            height: 20px;
        }

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

        .adv-card {
            border-radius: 40px;
            padding: 40px;
            background: #fff;
            border: 1px solid var(--slate-100);
            box-shadow: 0 20px 50px rgba(148, 163, 184, .24);
        }

        .adv-card.blue {
            background: var(--blue-600);
            color: #fff;
            transform: translateY(-22px);
            box-shadow: 0 26px 60px rgba(42, 92, 119, .18);
            border: 0;
        }

        .adv-icon {
            width: 46px;
            height: 46px;
            margin-bottom: 28px;
            color: var(--blue-600);
        }

        .adv-card.blue .adv-icon {
            color: #eef5f6;
        }

        .adv-card h3 {
            margin: 0 0 22px;
            font-size: 24px;
            line-height: 1.1;
            letter-spacing: -.02em;
            font-weight: 900;
        }

        .adv-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 16px;
        }

        .adv-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 16px;
            line-height: 1.35;
            color: var(--slate-600);
            font-weight: 500;
        }

        .adv-list li svg {
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
        }

        .adv-card.blue .adv-list li {
            color: #eef5f6;
        }

        .steps {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 26px;
        }

        .steps::before {
            content: "";
            position: absolute;
            left: 15%;
            right: 15%;
            top: 56px;
            height: 2px;
            background: linear-gradient(90deg, #dbe7eb, #abc2cc, #dbe7eb);
            z-index: 0;
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step-icon {
            width: 112px;
            height: 112px;
            margin: 0 auto 22px;
            border-radius: 26px;
            border: 1px solid var(--slate-100);
            background: #fff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-600);
        }

        .step-icon svg {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
        }

        .step h3 {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 800;
            color: var(--slate-900);
        }

        .step p {
            margin: 0;
            color: var(--slate-500);
            font-size: 16px;
            font-weight: 500;
        }

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

        .feature {
            background: #fff;
            border: 1px solid var(--slate-100);
            border-radius: 30px;
            padding: 34px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid var(--blue-100);
            color: var(--blue-600);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 6px 14px rgba(42, 92, 119, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
            transition: box-shadow .24s ease, transform .24s ease;
        }

        .feature:hover .feature-icon {
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(42, 92, 119, .16), 0 0 0 2px rgba(85, 127, 151, .14);
        }

        .feature h3 {
            margin: 0 0 10px;
            font-size: 20px;
            line-height: 1.15;
            font-weight: 800;
            color: var(--slate-900);
            letter-spacing: -.02em;
        }

        .feature p {
            margin: 0;
            color: var(--slate-500);
            font-size: 14px;
            line-height: 1.55;
            font-weight: 500;
        }

        .hero-points {
            margin: 24px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .hero-points li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--slate-700);
            font-size: 16px;
            line-height: 1.5;
            font-weight: 600;
        }

        .hero-points li svg {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            color: var(--blue-600);
            margin-top: 3px;
        }

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

        .hero-microproof {
            border-radius: 18px;
            border: 1px solid var(--slate-100);
            background: #fff;
            padding: 16px 18px;
            box-shadow: 0 8px 22px rgba(148, 163, 184, .14);
        }

        .hero-microproof strong {
            display: block;
            margin: 0 0 4px;
            color: var(--slate-900);
            font-size: 16px;
            font-weight: 800;
        }

        .hero-microproof span {
            display: block;
            color: var(--slate-500);
            font-size: 14px;
            line-height: 1.45;
            font-weight: 500;
        }

        .story-grid,
        .video-path-grid,
        .split-grid,
        .business-grid,
        .persona-grid {
            display: grid;
            gap: 24px;
        }

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

        .video-path-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin: 34px 0 24px;
        }

        .story-card,
        .video-tip-card,
        .split-panel,
        .persona-card {
            background: #fff;
            border: 1px solid var(--slate-100);
            border-radius: 30px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(148, 163, 184, .14);
        }

        .story-card {
            --story-accent: var(--blue-600);
            --story-accent-soft: rgba(42, 92, 119, .14);
            --story-accent-wash: rgba(42, 92, 119, .08);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            overflow: hidden;
            border-color: rgba(171, 194, 204, .55);
            background:
                radial-gradient(circle at top right, var(--story-accent-soft), transparent 36%),
                linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 252, .98));
            box-shadow: 0 18px 44px rgba(148, 163, 184, .16);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .story-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 5px;
            background: linear-gradient(90deg, var(--story-accent), color-mix(in srgb, var(--story-accent) 38%, white));
        }

        .story-card:hover {
            transform: translateY(-4px);
            border-color: color-mix(in srgb, var(--story-accent) 34%, white);
            box-shadow: 0 24px 56px rgba(148, 163, 184, .22);
        }

        .story-card--publish {
            --story-accent: #2a5c77;
            --story-accent-soft: rgba(42, 92, 119, .18);
            --story-accent-wash: rgba(42, 92, 119, .09);
        }

        .story-card--sell {
            --story-accent: #936a3d;
            --story-accent-soft: rgba(147, 106, 61, .18);
            --story-accent-wash: rgba(195, 154, 103, .12);
        }

        .story-card--manage {
            --story-accent: #3b7566;
            --story-accent-soft: rgba(59, 117, 102, .18);
            --story-accent-wash: rgba(59, 117, 102, .1);
        }

        .story-card__head,
        .story-card__body {
            position: relative;
            z-index: 1;
        }

        .story-card__head {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .story-card__eyebrow {
            display: inline-flex;
            align-items: center;
            margin: 0 0 8px;
            padding: 6px 12px;
            border-radius: 999px;
            background: var(--story-accent-soft);
            color: var(--story-accent);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .story-card__icon {
            flex: 0 0 auto;
            width: 56px;
            height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            color: var(--story-accent);
            background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--story-accent) 12%, white));
            border: 1px solid color-mix(in srgb, var(--story-accent) 18%, white);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
        }

        .story-card__icon svg {
            width: 28px;
            height: 28px;
            display: block;
        }

        .story-card h3,
        .video-tip-card h3,
        .split-panel h3,
        .persona-card h3 {
            margin: 0 0 12px;
            color: var(--slate-900);
            font-size: 24px;
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -.02em;
        }

        .story-card p,
        .video-tip-card p,
        .split-panel p,
        .persona-card p {
            margin: 0;
            color: var(--slate-500);
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        .story-card p + p,
        .story-card p + ul,
        .story-card ul + p {
            margin-top: 12px;
        }

        .story-card__body {
            display: flex;
            flex-direction: column;
        }

        .story-card__lead {
            color: var(--slate-700);
            font-size: 17px;
            font-weight: 700;
            line-height: 1.55;
        }

        .story-card ul {
            margin: 0;
            padding: 0;
            list-style: none;
            color: var(--slate-500);
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        .story-card li {
            position: relative;
            padding-left: 30px;
        }

        .story-card li + li {
            margin-top: 10px;
        }

        .story-card li::before {
            content: "";
            position: absolute;
            top: 9px;
            left: 0;
            width: 14px;
            height: 14px;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--story-accent), color-mix(in srgb, var(--story-accent) 48%, white));
            box-shadow: 0 0 0 5px color-mix(in srgb, var(--story-accent) 12%, white);
        }

        .video-path-intro {
            margin: 0 auto;
            max-width: 920px;
            text-align: center;
        }

        .video-path-intro h3 {
            margin: 0 0 10px;
            color: var(--slate-900);
            font-size: 30px;
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: -.02em;
        }

        .video-path-intro p {
            margin: 0;
            color: var(--slate-600);
            font-size: 17px;
            line-height: 1.65;
            font-weight: 500;
        }

        .video-tip-card {
            padding: 22px;
        }

        .video-tip-card__media {
            position: relative;
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            margin-bottom: 18px;
            border-radius: 22px;
            background: #0f172a;
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
        }

        .video-tip-card__media iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .video-tip-card__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--blue-700);
            font-size: 12px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .video-tip-card__eyebrow::before {
            content: "";
            width: 24px;
            height: 1px;
            background: currentColor;
            opacity: .45;
        }

        .video-tip-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .video-tip-card__badge,
        .video-tip-card__status {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }

        .video-tip-card__badge {
            color: var(--slate-700);
            background: var(--slate-50);
            border: 1px solid var(--slate-100);
        }

        .video-tip-card__status {
            color: var(--blue-700);
            background: rgba(37, 99, 235, .08);
            border: 1px solid rgba(37, 99, 235, .12);
        }

        .video-tip-card__link {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(37, 99, 235, .14);
            color: var(--blue-700);
            background: rgba(37, 99, 235, .06);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
        }

        .video-tip-card__link:hover,
        .video-tip-card__link:focus-visible {
            transform: translateY(-1px);
            background: rgba(37, 99, 235, .1);
            border-color: rgba(37, 99, 235, .2);
        }

        .split-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: stretch;
        }

        .split-panel ul {
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .split-panel li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--slate-600);
            font-size: 15px;
            line-height: 1.5;
            font-weight: 600;
        }

        .split-panel li svg {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            color: var(--blue-600);
            margin-top: 2px;
        }

        .split-panel--accent {
            background: linear-gradient(180deg, #1c485f 0%, #244f66 100%);
            border: 0;
            color: #fff;
            box-shadow: 0 24px 50px rgba(42, 92, 119, .22);
        }

        .split-panel--accent h3,
        .split-panel--accent p,
        .split-panel--accent li {
            color: #eef5f6;
        }

        .split-panel--accent li svg {
            color: #fff;
        }

        .section-note {
            margin: 0 auto 28px;
            max-width: 920px;
            text-align: center;
            color: var(--slate-600);
            font-size: 18px;
            line-height: 1.65;
            font-weight: 500;
        }

        .business-grid {
            grid-template-columns: 1.2fr .8fr;
            align-items: stretch;
        }

        .business-list {
            margin: 22px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 14px;
        }

        .business-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #e2e8f0;
            font-size: 15px;
            line-height: 1.5;
            font-weight: 600;
        }

        .business-list li svg {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            margin-top: 2px;
        }

        .business-side {
            display: grid;
            gap: 18px;
        }

        .business-kpi {
            border-radius: 24px;
            border: 1px solid var(--slate-100);
            background: #fff;
            padding: 24px;
            box-shadow: 0 10px 26px rgba(148, 163, 184, .14);
        }

        .business-kpi strong {
            display: block;
            margin-bottom: 6px;
            color: var(--slate-900);
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -.02em;
        }

        .business-kpi span {
            display: block;
            color: var(--slate-500);
            font-size: 15px;
            line-height: 1.55;
            font-weight: 500;
        }

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

        .persona-card {
            padding: 28px;
        }

        .persona-card p + p {
            margin-top: 12px;
        }

        .roi-card {
            background: var(--blue-700);
            border-radius: 48px;
            padding: 52px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 28px 60px rgba(15, 23, 42, .34);
        }

        .roi-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 420px;
            height: 420px;
            background: rgba(195, 154, 103, .18);
            filter: blur(100px);
            border-radius: 999px;
            pointer-events: none;
        }

        .roi-inner {
            display: grid;
            grid-template-columns: 1fr 1px 320px;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .roi-left .kicker {
            margin: 0 0 10px;
            color: var(--blue-400);
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: 12px;
            font-weight: 800;
        }

        .roi-left .line {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .roi-left .line .a {
            font-size: 60px;
            font-weight: 900;
            line-height: .95;
        }

        .roi-left .line .b {
            font-size: 30px;
            color: #94a3b8;
            font-weight: 600;
        }

        .roi-left .total {
            margin-top: 22px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            font-size: 32px;
            font-weight: 800;
        }

        .roi-sep {
            background: rgba(255, 255, 255, .1);
            height: 120px;
        }

        .roi-right {
            display: grid;
            gap: 14px;
        }

        .roi-net {
            background: var(--blue-600);
            border-radius: 18px;
            padding: 18px 20px;
            box-shadow: 0 12px 24px rgba(42, 92, 119, .24);
            transform: translateX(-14px);
        }

        .roi-net .k {
            margin: 0 0 4px;
            color: #eef5f6;
            text-transform: uppercase;
            letter-spacing: .09em;
            font-size: 11px;
            font-weight: 800;
        }

        .roi-net .v {
            margin: 0;
            font-size: 36px;
            line-height: 1;
            font-weight: 900;
        }

        .roi-fee {
            border-radius: 18px;
            padding: 16px 18px;
            border: 1px solid rgba(255, 255, 255, .1);
            background: rgba(255, 255, 255, .05);
            backdrop-filter: blur(8px);
        }

        .roi-fee .k {
            margin: 0 0 4px;
            color: #94a3b8;
            font-size: 13px;
            font-weight: 700;
        }

        .roi-fee .v {
            margin: 0;
            font-size: 30px;
            font-weight: 800;
            color: #cbd5e1;
        }

        .pricing {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 24px;
            align-items: stretch;
            max-width: 1180px;
            margin: 0 auto;
        }

        .price-card {
            grid-column: span 2;
            border-radius: 40px;
            padding: 34px 30px;
            background: rgba(248, 250, 252, .7);
            border: 1px solid var(--slate-200);
            box-shadow: 0 8px 24px rgba(148, 163, 184, .18);
        }

        .pricing .price-card:nth-child(4):nth-last-child(2) {
            grid-column: 2 / span 2;
        }

        .pricing .price-card:nth-child(5):last-child {
            grid-column: 4 / span 2;
        }

        .price-card.popular {
            background: #fff;
            border: 2px solid var(--blue-500);
            box-shadow: 0 30px 60px rgba(42, 92, 119, .12);
            transform: scale(1.02);
            position: relative;
            z-index: 2;
        }

        .price-card.info {
            background: linear-gradient(180deg, #f8fbfc 0%, #eef5f6 100%);
            border: 1px dashed rgba(63, 112, 135, .45);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85), 0 12px 28px rgba(42, 92, 119, .08);
            position: relative;
        }

        .price-info-kicker {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 12px;
            margin: 0 0 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .82);
            color: var(--blue-700);
            font-size: 12px;
            font-weight: 850;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .price-info-text {
            margin: 0 0 22px;
            color: var(--slate-600);
            font-size: 15px;
            line-height: 1.65;
            font-weight: 600;
        }

        .price-info-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .price-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--slate-700);
            font-size: 14px;
            line-height: 1.45;
            font-weight: 750;
        }

        .price-info-list svg {
            flex: 0 0 16px;
            width: 16px;
            height: 16px;
            margin-top: 2px;
            color: var(--blue-600);
        }

        .badge-pop {
            position: absolute;
            top: -16px;
            right: 28px;
            border-radius: 999px;
            background: var(--blue-600);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 7px 14px;
            box-shadow: 0 10px 24px rgba(42, 92, 119, .18);
        }

        .price-card h3 {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 800;
            color: var(--slate-900);
        }

        .pricing-card-note {
            margin: 0 0 18px;
            color: var(--slate-500);
            font-size: 14px;
            font-weight: 600;
        }

        .price-line {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 26px;
        }

        .price-line .num {
            font-size: 48px;
            line-height: .95;
            font-weight: 900;
            letter-spacing: -.02em;
        }

        .price-line .per {
            font-size: 16px;
            color: var(--slate-500);
            font-weight: 600;
        }

        .price-list {
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 14px;
        }

        .price-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--slate-600);
            font-weight: 600;
        }

        .price-list li svg {
            width: 16px;
            height: 16px;
            color: var(--blue-500);
        }

        .price-publication-note {
            margin: -10px 0 24px;
            color: var(--slate-500);
            font-size: 13px;
            line-height: 1.45;
            font-weight: 700;
        }

        .price-btn {
            position: relative;
            overflow: hidden;
            min-height: 54px;
            width: 100%;
            border-radius: 18px;
            font-size: 16px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
        }

        .price-btn::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .3) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .price-btn.primary {
            background: var(--blue-600);
            color: #fff;
            box-shadow: 0 10px 20px rgba(42, 92, 119, .18);
        }

        .price-btn.primary:hover {
            background: var(--blue-700);
            transform: translateY(-2px);
            animation: hero-btn-bounce .34s ease;
        }

        .price-btn:hover::before {
            transform: translateX(135%);
        }

        .price-btn.ghost {
            background: #fff;
            border: 1px solid var(--slate-200);
            color: var(--slate-900);
        }

        .price-btn.ghost:hover {
            background: var(--slate-50);
            border-color: var(--slate-300);
            animation: hero-btn-bounce .34s ease;
        }

        .recharge-panel {
            margin-top: 30px;
            border-radius: 30px;
            padding: 26px;
            background: #fff;
            border: 1px solid rgba(190, 207, 210, .72);
            box-shadow: 0 16px 36px rgba(42, 92, 119, .08);
        }

        .recharge-panel-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 22px;
        }

        .recharge-panel h3 {
            margin: 0 0 8px;
            color: var(--slate-900);
            font-size: 22px;
            line-height: 1.15;
            font-weight: 900;
        }

        .recharge-panel p {
            margin: 0;
            max-width: 790px;
            color: var(--slate-600);
            font-size: 15px;
            line-height: 1.65;
            font-weight: 600;
        }

        .recharge-panel-tag {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            background: var(--blue-50);
            color: var(--blue-700);
            font-size: 13px;
            font-weight: 850;
            white-space: nowrap;
        }

        .recharge-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .recharge-card {
            border-radius: 22px;
            padding: 20px;
            background: rgba(248, 250, 252, .72);
            border: 1px solid rgba(217, 226, 227, .92);
        }

        .recharge-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 14px;
            color: var(--slate-900);
            font-size: 16px;
            font-weight: 900;
        }

        .recharge-card-title svg {
            width: 20px;
            height: 20px;
            color: var(--blue-600);
        }

        .recharge-items {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .recharge-items li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            min-height: 40px;
            padding: 9px 12px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(217, 226, 227, .75);
        }

        .recharge-items strong {
            color: var(--slate-800);
            font-size: 14px;
            font-weight: 850;
        }

        .recharge-items span {
            color: var(--slate-600);
            font-size: 14px;
            font-weight: 800;
            white-space: nowrap;
        }

        .pricing-comparison {
            margin-top: 36px;
        }

        .pricing-comparison-head {
            max-width: 780px;
            margin: 0 auto 22px;
            text-align: center;
        }

        .pricing-comparison-head h3 {
            margin: 0 0 10px;
            color: var(--slate-900);
            font-size: 28px;
            line-height: 1.12;
            font-weight: 900;
        }

        .pricing-comparison-head p {
            margin: 0;
            color: var(--slate-600);
            font-size: 16px;
            line-height: 1.65;
            font-weight: 600;
        }

        .pricing-comparison-table-shell {
            position: relative;
            border-radius: 0 0 30px 30px;
            border: 1px solid rgba(190, 207, 210, .82);
            border-top: 0;
            background: #fff;
            box-shadow: 0 22px 52px rgba(42, 92, 119, .1);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .pricing-comparison-table {
            width: 100%;
            min-width: 1040px;
            border-collapse: separate;
            border-spacing: 0;
            table-layout: fixed;
        }

        .pricing-comparison-table caption {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        .pricing-comparison-table-shell:focus-visible {
            outline: 3px solid rgba(42, 92, 119, .2);
            outline-offset: 4px;
        }

        .pricing-comparison-table th,
        .pricing-comparison-table td {
            border-right: 1px solid rgba(226, 232, 240, .85);
            border-bottom: 1px solid rgba(226, 232, 240, .85);
            vertical-align: middle;
        }

        .pricing-comparison-table th:last-child,
        .pricing-comparison-table td:last-child {
            border-right: 0;
        }

        .pricing-comparison-sticky-head {
            position: sticky;
            top: var(--pricing-sticky-offset);
            z-index: 8;
            display: grid;
            grid-template-columns: 210px repeat(4, minmax(0, 1fr));
            min-width: 1040px;
            background: rgba(255, 255, 255, .94);
            -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
            box-shadow: 0 10px 22px rgba(42, 92, 119, .08);
            border: 1px solid rgba(190, 207, 210, .82);
            border-bottom: 1px solid rgba(226, 232, 240, .9);
            border-radius: 30px 30px 0 0;
            overflow: hidden;
        }

        .pricing-comparison-sticky-label,
        .pricing-comparison-sticky-plan {
            border-right: 1px solid rgba(226, 232, 240, .85);
        }

        .pricing-comparison-sticky-label {
            display: flex;
            align-items: center;
            padding: 16px 18px;
            color: var(--slate-600);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .pricing-comparison-sticky-plan {
            padding: 12px 14px;
        }

        .pricing-comparison-sticky-plan:last-child {
            border-right: 0;
        }

        .pricing-comparison-sticky-plan.is-recommended {
            background: linear-gradient(180deg, rgba(238, 245, 246, .94), rgba(255, 255, 255, .98));
        }

        .pricing-comparison-sticky-plan .pricing-compare-plan {
            min-height: 148px;
            gap: 6px;
        }

        .pricing-comparison-table col.pricing-comparison-feature-col {
            width: 210px;
        }

        .pricing-comparison-accessible-head {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        .pricing-comparison-table tbody th {
            padding: 18px 20px;
            background: #fbfcfd;
            color: var(--slate-800);
            font-size: 14px;
            line-height: 1.35;
            text-align: left;
            font-weight: 900;
        }

        .pricing-comparison-table tbody td {
            padding: 18px;
            color: var(--slate-700);
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
            font-weight: 700;
        }

        .pricing-comparison-table tbody tr:hover td,
        .pricing-comparison-table tbody tr:hover th {
            background: #f8fbfc;
        }

        .pricing-comparison-table .is-recommended {
            background: linear-gradient(180deg, rgba(238, 245, 246, .92), rgba(255, 255, 255, .96));
        }

        .pricing-compare-plan {
            min-height: 184px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 9px;
        }

        .pricing-compare-plan-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 28px;
            color: var(--slate-900);
            font-size: 16px;
            line-height: 1.1;
            font-weight: 900;
        }

        .pricing-compare-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 22px;
            padding: 0 8px;
            border-radius: 999px;
            background: var(--blue-600);
            color: #fff;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .06em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .pricing-compare-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 6px;
            color: var(--slate-900);
        }

        .pricing-compare-price strong {
            font-size: 24px;
            line-height: 1;
            font-weight: 950;
            letter-spacing: 0;
        }

        .pricing-compare-price span {
            color: var(--slate-500);
            font-size: 13px;
            font-weight: 800;
        }

        .pricing-compare-annual {
            min-height: 18px;
            color: var(--blue-700);
            font-size: 11px;
            line-height: 1.35;
            font-weight: 850;
            text-align: center;
        }

        .pricing-compare-note {
            min-height: 32px;
            margin: 0;
            color: var(--slate-500);
            font-size: 11px;
            line-height: 1.35;
            font-weight: 700;
            text-align: center;
        }

        .pricing-compare-btn {
            min-height: 36px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            border: 1px solid var(--slate-200);
            background: #fff;
            color: var(--slate-900);
            font-size: 12px;
            font-weight: 900;
            transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
        }

        .pricing-compare-btn.primary {
            border-color: var(--blue-600);
            background: var(--blue-600);
            color: #fff;
            box-shadow: 0 8px 18px rgba(42, 92, 119, .16);
        }

        .pricing-compare-btn:hover,
        .pricing-compare-btn:focus-visible {
            border-color: var(--blue-500);
            transform: translateY(-1px);
        }

        .pricing-compare-btn:focus-visible {
            outline: 3px solid rgba(42, 92, 119, .22);
            outline-offset: 3px;
        }

        .pricing-comparison-mobile {
            display: none;
        }

        .pricing-comparison-mobile-card {
            border-radius: 24px;
            padding: 22px;
            background: #fff;
            border: 1px solid rgba(190, 207, 210, .82);
            box-shadow: 0 14px 34px rgba(42, 92, 119, .08);
        }

        .pricing-comparison-mobile-card.is-recommended {
            border-color: rgba(63, 112, 135, .62);
            background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
        }

        .pricing-comparison-mobile-card-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 14px;
        }

        .pricing-comparison-mobile-card h4 {
            margin: 0 0 6px;
            color: var(--slate-900);
            font-size: 22px;
            line-height: 1.1;
            font-weight: 900;
        }

        .pricing-comparison-mobile-card p {
            margin: 0;
            color: var(--slate-500);
            font-size: 13px;
            line-height: 1.45;
            font-weight: 700;
        }

        .pricing-comparison-mobile-list {
            margin: 18px 0;
            display: grid;
            gap: 8px;
        }

        .pricing-comparison-mobile-list div {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
            gap: 12px;
            align-items: start;
            padding: 10px 0;
            border-top: 1px solid rgba(226, 232, 240, .86);
        }

        .pricing-comparison-mobile-list dt {
            color: var(--slate-600);
            font-size: 13px;
            line-height: 1.35;
            font-weight: 850;
        }

        .pricing-comparison-mobile-list dd {
            margin: 0;
            color: var(--slate-900);
            font-size: 13px;
            line-height: 1.4;
            text-align: right;
            font-weight: 800;
        }

        .cta-panel {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 48px;
            background: var(--blue-600);
            overflow: hidden;
            position: relative;
            box-shadow: 0 28px 60px rgba(42, 92, 119, .18);
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background-image: url('https://images.unsplash.com/photo-1540039155732-61ee476be1c0?q=80&w=2000&auto=format&fit=crop');
            opacity: .08;
            mix-blend-mode: overlay;
            filter: grayscale(100%);
            background-size: cover;
            background-position: center;
        }

        .cta-gradient {
            position: absolute;
            inset: 0;
            background: rgba(28, 72, 95, .14);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 110px 24px;
        }

        .section--cta-spaced {
            padding-top: 64px;
        }

        .cta-inner h2 {
            margin: 0 0 24px;
            color: #fff;
            font-size: clamp(36px, 6vw, 60px);
            line-height: 1.08;
            letter-spacing: -.03em;
            font-weight: 900;
        }

        .cta-inner p {
            margin: 0 auto 40px;
            max-width: 860px;
            color: #eef5f6;
            font-size: clamp(20px, 2.1vw, 24px);
            line-height: 1.4;
            font-weight: 500;
        }

        .cta-link {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 60px;
            border-radius: 999px;
            padding: 0 40px;
            font-size: 18px;
            font-weight: 800;
            background: #fff;
            color: var(--slate-900);
            box-shadow: 0 0 40px rgba(255, 255, 255, .3);
            transition: all .25s ease;
        }

        .cta-link__icon {
            width: 24px;
            height: 24px;
        }

        .cta-link::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .72) 45%, transparent 70%);
            transform: translateX(-135%);
            transition: transform .7s ease;
            pointer-events: none;
        }

        .cta-link:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 0 60px rgba(255, 255, 255, .5);
            animation: hero-btn-bounce .34s ease;
        }

        .cta-link:hover::before {
            transform: translateX(135%);
        }

        .landing-footer {
            background: #fff;
            border-top: 1px solid var(--slate-200);
            padding: 96px 0 48px;
        }

        .landing-footer__container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .landing-footer__grid {
            display: grid;
            grid-template-columns: 4fr 2fr 2fr;
            gap: 24px;
            margin-bottom: 80px;
        }

        .landing-footer__brand img {
            height: 28px;
            width: auto;
            display: block;
            margin-bottom: 28px;
        }

        .landing-footer__brand p {
            margin: 0;
            max-width: 340px;
            color: var(--slate-500);
            font-size: 14px;
            line-height: 1.65;
            font-weight: 500;
        }

        .landing-footer__col h4 {
            margin: 0 0 20px;
            color: var(--slate-900);
            font-size: 16px;
            font-weight: 800;
            letter-spacing: .01em;
        }

        .landing-footer__col ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .landing-footer__col a {
            color: var(--slate-500);
            font-size: 14px;
            font-weight: 600;
            transition: color .2s ease;
        }

        .landing-footer__col a:hover {
            color: var(--blue-600);
        }

        .landing-footer__bottom {
            padding-top: 24px;
            border-top: 1px solid var(--slate-100);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--slate-400);
            font-size: 14px;
            font-weight: 600;
        }

        .cmp-banner {
            position: fixed;
            left: 24px;
            right: 24px;
            bottom: 24px;
            z-index: 1350;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .cmp-banner__content {
            width: min(1100px, 100%);
            min-height: 92px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 18px 22px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 22px;
            background: rgba(15, 23, 42, .94);
            box-shadow: 0 24px 60px rgba(15, 23, 42, .28);
            color: #f8fafc;
            pointer-events: auto;
            backdrop-filter: blur(16px);
        }

        .cmp-banner__content p {
            margin: 0;
            max-width: 700px;
            color: rgba(248, 250, 252, .96);
            font-size: 15px;
            line-height: 1.55;
            font-weight: 500;
        }

        .cmp-banner__actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 10px;
            flex-shrink: 0;
        }

        .cmp-btn {
            min-height: 42px;
            padding: 0 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .06);
            color: #f8fafc;
            font-size: 14px;
            font-weight: 700;
            box-shadow: none;
        }

        .cmp-btn:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff;
        }

        .cmp-btn--ghost {
            background: rgba(255, 255, 255, .08);
        }

        .cmp-btn--primary {
            background: #f8fafc;
            border-color: #f8fafc;
            color: #0f172a;
        }

        .cmp-btn--primary:hover {
            background: #ffffff;
            color: #020617;
        }

        .cmp-modal {
            position: fixed;
            inset: 0;
            z-index: 1400;
            opacity: 0;
            transition: opacity .22s ease;
        }

        .cmp-modal[hidden] {
            display: none;
        }

        .cmp-modal.is-visible {
            opacity: 1;
        }

        .cmp-modal.is-closing {
            opacity: 0;
        }

        .cmp-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, .58);
            backdrop-filter: blur(4px);
        }

        .cmp-modal__panel {
            position: relative;
            width: min(620px, calc(100vw - 32px));
            margin: 12vh auto 0;
            background: #fff;
            border-radius: 24px;
            border: 1px solid rgba(190, 207, 210, .9);
            box-shadow: 0 28px 80px rgba(15, 23, 42, .24);
            overflow: hidden;
            transform: translateY(22px);
            opacity: 0;
            transition: transform .24s ease, opacity .24s ease;
        }

        .cmp-modal.is-visible .cmp-modal__panel {
            transform: translateY(0);
            opacity: 1;
        }

        .cmp-modal__header,
        .cmp-modal__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
        }

        .cmp-modal__header {
            border-bottom: 1px solid var(--slate-100);
            background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
        }

        .cmp-modal__header h2 {
            margin: 0;
            color: var(--slate-900);
            font-size: 20px;
            font-weight: 800;
        }

        .cmp-modal__close {
            min-height: 40px;
            min-width: 40px;
            border: 1px solid var(--slate-200);
            border-radius: 999px;
            background: #fff;
            color: var(--slate-700);
            font-size: 22px;
            line-height: 1;
            box-shadow: none;
        }

        .cmp-modal__intro,
        .cmp-modal__body {
            padding-left: 20px;
            padding-right: 20px;
        }

        .cmp-modal__intro {
            padding-top: 18px;
        }

        .cmp-modal__intro p {
            margin: 0;
            color: var(--slate-600);
            font-size: 15px;
            line-height: 1.6;
        }

        .cmp-modal__body {
            display: grid;
            gap: 12px;
            padding-top: 16px;
            padding-bottom: 20px;
        }

        .cmp-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px;
            border: 1px solid var(--slate-100);
            border-radius: 18px;
            background: var(--slate-50);
        }

        .cmp-toggle strong {
            display: block;
            margin-bottom: 4px;
            color: var(--slate-900);
            font-size: 15px;
        }

        .cmp-toggle small {
            display: block;
            color: var(--slate-500);
            font-size: 13px;
            line-height: 1.45;
        }

        .cmp-toggle input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--blue-600);
        }

        .cmp-modal__footer {
            border-top: 1px solid var(--slate-100);
            justify-content: flex-end;
        }

        .cmp-modal-open {
            overflow: hidden;
        }

        @media (max-width: 1200px) {
            .advantages,
            .features,
            .pricing,
            .story-grid,
            .video-path-grid,
            .split-grid,
            .business-grid,
            .persona-grid {
                grid-template-columns: 1fr;
            }

            .adv-card.blue {
                transform: none;
            }

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

            .pricing .price-card,
            .pricing .price-card:nth-child(4):nth-last-child(2),
            .pricing .price-card:nth-child(5):last-child {
                grid-column: auto;
            }

            .recharge-panel-head {
                flex-direction: column;
            }

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

            .pricing-comparison-sticky-head {
                grid-template-columns: 180px repeat(4, minmax(0, 1fr));
                min-width: 900px;
            }

            .pricing-comparison-table {
                min-width: 900px;
            }

            .pricing-comparison-table col.pricing-comparison-feature-col {
                width: 180px;
            }

            .roi-inner {
                grid-template-columns: 1fr;
            }

            .roi-sep {
                display: none;
            }

            .roi-net {
                transform: none;
            }

            .steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 28px 18px;
            }

            .steps::before {
                display: none;
            }

            .landing-footer__grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .hero-points {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 18px 26px;
                text-align: left;
            }
        }

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

            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .hero {
                padding-top: 80px;
            }

            .hero-wrap {
                gap: 0;
            }

            .hero-copy {
                padding-left: 20px;
                padding-right: 20px;
            }

            .hero h1 {
                font-size: clamp(36px, 10vw, 48px);
                line-height: 1.06;
            }

            .hero p {
                margin-top: 22px;
                font-size: 17px;
            }

            .hero-points {
                margin-top: 22px;
                gap: 10px;
            }

            .hero-points li {
                font-size: 15px;
            }

            .hero-cta {
                margin-top: 30px;
                display: grid;
                grid-template-columns: 1fr;
            }

            .hero-cta .cta-primary,
            .hero-cta .cta-secondary {
                width: 100%;
                min-height: 56px;
                justify-content: center;
            }

            .hero-trust {
                margin-top: 28px;
                gap: 12px 18px;
                font-size: 13px;
            }

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

            .problem-grid,
            .steps,
            .landing-footer__grid {
                grid-template-columns: 1fr;
            }

            .story-card,
            .split-panel,
            .persona-card {
                padding: 24px;
            }

            .problem-pill {
                font-size: 18px;
            }

            .landing-footer__bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .cmp-banner {
                left: 12px;
                right: 12px;
                bottom: 12px;
            }

            .cmp-banner__content {
                min-height: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 16px;
                border-radius: 18px;
            }

            .cmp-banner__actions {
                width: 100%;
                justify-content: flex-start;
            }

            .cmp-modal__panel {
                width: calc(100vw - 24px);
                margin-top: 10vh;
            }

            .cmp-modal__footer {
                flex-wrap: wrap;
            }

            .cta-inner {
                padding: 76px 20px;
            }

            .hero-media-shell {
                height: auto;
                aspect-ratio: 1;
            }

            .hero-media-photo img,
            .hero-slide:nth-child(2) .hero-media-photo img {
                object-position: center;
            }

            .hero-carousel-nav {
                padding: 0 10px;
            }

            .hero-carousel-arrow {
                width: 46px;
                height: 46px;
            }

            .hero-carousel-dots {
                top: 14px;
                bottom: auto;
            }

            .hero-copy--overlay {
                height: min(125vw, 720px);
                padding: 34px 24px 70px;
                justify-content: center;
            }

            .hero-copy--overlay h1 {
                max-width: 470px;
                font-size: clamp(34px, 9.5vw, 46px);
            }

            .hero-copy--overlay h1 .hero-line--secondary {
                font-size: .64em;
                white-space: normal;
            }

            .hero-media-photo img {
                transform: translate3d(0, calc(-10px + var(--hero-image-parallax-y, 0px)), 0) scale(1.03);
            }

            .hero-copy--overlay p {
                margin-top: 16px;
                max-width: 440px;
                font-size: 15px;
                line-height: 1.45;
            }

            .hero-copy--overlay .hero-cta {
                margin-top: 24px;
                display: flex;
            }

            .hero-copy--overlay .hero-cta .cta-primary {
                width: auto;
                min-height: 52px;
            }

            .hero-copy--overlay .hero-cta .cta-secondary {
                display: none;
            }

            .hero-media-shell {
                height: min(125vw, 720px);
                aspect-ratio: auto;
            }

            .hero-media-shell::after {
                background: linear-gradient(180deg, rgba(15, 23, 42, .72) 0%, rgba(15, 23, 42, .46) 54%, rgba(15, 23, 42, .30) 100%);
            }

            .hero-details {
                padding: 32px 20px 52px;
            }

            .hero-details .hero-points {
                margin-top: 0;
            }

            .hero-float--bottom {
                left: 14px;
                right: 14px;
                bottom: 14px;
                padding: 12px;
            }

            .hero-ready {
                height: 36px;
                padding: 0 10px;
                font-size: 12px;
            }

            .hero h1 .hero-line {
                display: block;
            }

            .hero h1 .hero-line + .hero-line {
                margin-left: 0;
            }
        }

        @media (max-width: 420px) {
            .hero {
                padding-top: 80px;
            }

            .hero-copy {
                padding-left: 16px;
                padding-right: 16px;
            }

            .badge {
                margin-bottom: 20px;
                padding: 7px 12px;
            }

            .badge span {
                font-size: 10px;
            }

            .hero h1 {
                font-size: clamp(32px, 10vw, 40px);
            }

            .hero-copy--overlay {
                padding: 28px 18px 58px;
            }

            .hero-copy--overlay h1 {
                font-size: clamp(34px, 9.5vw, 40px);
            }

            .hero-trust {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                text-align: left;
            }

            .hero-trust .item:last-child {
                grid-column: 1 / -1;
            }

            .hero-carousel-arrow {
                width: 44px;
                height: 44px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-copy--overlay {
                transform: none;
                will-change: auto;
            }

            .hero-media-photo img {
                height: 100%;
                transform: none;
                will-change: auto;
            }

            .hero-slide,
            .hero-carousel-dot,
            .hero-carousel-arrow {
                transition: none;
            }
        }

        @media (max-width: 760px) {
            .pricing-comparison {
                margin-top: 28px;
            }

            .pricing-comparison-head {
                text-align: left;
            }

            .pricing-comparison-head h3 {
                font-size: 24px;
            }

            .pricing-comparison-head p {
                font-size: 15px;
            }

            .pricing-comparison-table-shell {
                display: none;
            }

            .pricing-comparison-sticky-head {
                display: none;
            }

            .pricing-comparison-mobile {
                display: grid;
                gap: 16px;
            }

            .pricing-comparison-mobile-card-head {
                flex-direction: column;
            }

            .pricing-compare-badge {
                align-self: flex-start;
            }

            .pricing-compare-price {
                justify-content: flex-start;
            }

            .pricing-comparison-mobile-list div {
                grid-template-columns: 1fr;
                gap: 5px;
            }

            .pricing-comparison-mobile-list dd {
                text-align: left;
            }

            .pricing-compare-btn {
                width: 100%;
            }
        }
