*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* JuiceMe design system tokens */
    --text-1: #0d121c; /* text-primary */
    --text-2: #475467; /* text-secondary */
    --text-3: #98a2b3; /* text-disabled */
    --bg: hsl(230, 50%, 98%); /* page background */
    --surface: #f2f4f7;
    --primary: #6941c6; /* action purple (gradient anchor) */
    --primary-soft: #9e77ed;
    --primary-deep: #2c1c5f; /* primary-darken-2 */
    --primary-100: #ede9fc;
    --primary-50: #f9f5ff; /* primary-lighten-2 */
    --success: #087443; /* success-darken-1 (text on tint) */
    --success-50: #edfcf2;
    --border-1: #d0d5dd;
    --border-2: #eaecf0;
    --shadow-sm:
        0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --pill: 9999px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Outfit", sans-serif;
    background: var(--bg);
    color: var(--text-1);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: 1.15;
}
.gradient-text {
    background: linear-gradient(
        90deg,
        #ec66cd 7.85%,
        #7f56d9 53.85%,
        #344054 90.3%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── BUTTONS (DS: pill, 500–600 weight) ─── */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition:
        background 0.15s,
        border-color 0.15s,
        transform 0.1s;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-soft);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-ghost:hover {
    background: var(--primary-50);
}
.btn-white {
    background: #fff;
    color: var(--primary-deep);
    font-weight: 700;
}
.btn-white:hover {
    transform: translateY(-1px);
}
.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}
.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: hsla(230, 50%, 98%, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-2);
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    gap: 40px;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo img {
    height: 26px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-login {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: var(--pill);
    transition: background 0.15s;
}
.nav-login:hover {
    background: var(--surface);
}
.nav-right .btn {
    padding: 8px 18px;
    font-size: 14px;
}
.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-1);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
}
.nav-menu {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-2);
    box-shadow: var(--shadow-sm);
    padding: 8px 5vw 16px;
    flex-direction: column;
    gap: 2px;
}
.nav-menu.open {
    display: flex;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-1);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 8px;
    border-radius: var(--radius);
}
.nav-menu a:hover {
    background: var(--bg);
    color: var(--primary);
}

/* ─── HERO ─── */
.hero {
    padding: 88px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--pill);
    margin-bottom: 24px;
    border: 1px solid var(--primary-100);
}
.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-soft);
    border-radius: 50%;
}
.hero h1 {
    font-weight: 600;
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 500px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-2);
}
.hero-proof-avatars {
    display: flex;
}
.hero-proof-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    background: var(--primary);
}
.hero-proof-avatars span:first-child {
    margin-left: 0;
}
.hero-proof-avatars span:nth-child(2n) {
    background: var(--primary-deep);
}
.hero-proof-avatars span:nth-child(4n) {
    background: var(--primary-soft);
}

/* Platform mockup */
.hero-visual {
    position: relative;
    padding-top: 8px;
}
.platform-shell {
    background: #fff;
    border: 1px solid var(--border-1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(16, 24, 40, 0.12),
        0 4px 16px rgba(16, 24, 40, 0.06);
}
.shell-bar {
    background: var(--text-1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shell-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.shell-dot:nth-child(1) {
    background: #ff5f57;
}
.shell-dot:nth-child(2) {
    background: #ffbd2e;
}
.shell-dot:nth-child(3) {
    background: #28c840;
}
.shell-bar-title {
    margin: 0 auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}
.shell-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 400px;
}
.shell-sidebar {
    background: var(--text-1);
    padding: 16px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.shell-sidebar-logo {
    padding: 0 16px 16px;
    font-weight: 800;
    font-size: 14px;
    color: var(--primary-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}
.shell-nav-item {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shell-nav-item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}
.shell-nav-item.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}
.shell-nav-item.active::before {
    opacity: 1;
    background: var(--primary-soft);
}
.shell-main {
    padding: 20px;
    background: var(--bg);
}
.shell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.shell-header h4 {
    font-weight: 700;
    font-size: 14px;
}
.shell-badge {
    background: var(--primary-50);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.shell-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.shell-stat {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 10px 12px;
}
.shell-stat-label {
    font-size: 10px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.shell-stat-val {
    font-weight: 700;
    font-size: 17px;
}
.shell-stat-val.hl {
    color: var(--primary);
}
.shell-employees {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    overflow: hidden;
}
.shell-table-head,
.shell-row {
    display: grid;
    grid-template-columns: 1fr 80px 70px 70px;
    padding: 8px 12px;
    align-items: center;
}
.shell-table-head {
    background: var(--surface);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 7px 12px;
}
.shell-table-head span:last-child {
    text-align: right;
}
.shell-row {
    border-top: 1px solid var(--border-2);
    font-size: 11px;
}
.shell-name {
    font-weight: 600;
    font-size: 11px;
}
.shell-country {
    color: var(--text-2);
    font-size: 11px;
}
.status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--pill);
    white-space: nowrap;
}
.s-active {
    background: var(--success-50);
    color: var(--success);
}
.s-pending {
    background: var(--primary-100);
    color: var(--primary-deep);
}
.shell-amt {
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}
.hero-float-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
                67.98deg,
                #ecc866 21.53%,
                #ff8ce4 68.93%,
                #c385f8 122.86%
            )
            border-box;
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    min-width: 180px;
}
.float-card-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}
.float-card-val {
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
}
.float-card-sub {
    font-size: 11px;
    color: var(--text-2);
    margin-top: 2px;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--text-1);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 80px;
}
.ticker-inner {
    display: inline-flex;
    gap: 60px;
    animation: ticker 28s linear infinite;
}
@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}
.ticker-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.ticker-item strong {
    color: rgba(255, 255, 255, 0.85);
}
.ticker-item::after {
    content: "·";
    color: rgba(255, 255, 255, 0.2);
    margin-left: 14px;
}

/* ─── SECTIONS ─── */
section {
    padding: 96px 5vw;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-weight: 600;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 680px;
    margin-bottom: 16px;
}
.section-body {
    font-size: 17px;
    color: var(--text-2);
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 52px;
}

/* ─── DIFFERENTIATORS ─── */
.diff {
    background: #fff;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.diff-item {
    padding: 40px 36px;
    border-right: 1px solid var(--border-2);
}
.diff-item:last-of-type {
    border-right: none;
}
.icon-tile {
    width: 44px;
    height: 44px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 18px;
}
.diff-item h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}
.diff-item p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}
.diff-callout {
    background: var(--text-1);
    grid-column: 1/-1;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: var(--radius-lg);
}
.diff-callout p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.65;
}
.diff-callout p strong {
    color: #fff;
}
.diff-callout .btn {
    padding: 10px 22px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── PLATFORM TABS ─── */
.platform {
    background: var(--surface);
}
.platform-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border-2);
    padding: 5px;
    border-radius: var(--pill);
    width: fit-content;
    margin-bottom: 48px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.ptab {
    padding: 9px 20px;
    border-radius: var(--pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    background: transparent;
    font-family: inherit;
}
.ptab.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}
.panel {
    display: none;
}
.panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.panel-list li {
    position: relative;
    padding-left: 36px;
}
.panel-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
}
.panel-list h4 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
}
.panel-list p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}
.panel-visual {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 28px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}
.panel-visual-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}
.pv-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
}
.pv-flag {
    font-size: 20px;
    width: 32px;
    text-align: center;
}
.pv-info {
    flex: 1;
}
.pv-info h5 {
    font-size: 13px;
    font-weight: 600;
}
.pv-info small {
    font-size: 11px;
    color: var(--text-3);
}
.pv-amt {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

/* ─── PRICING (centered) ─── */
.pricing {
    background: #fff;
    text-align: center;
}
.pricing .section-title,
.pricing .section-body {
    margin-left: auto;
    margin-right: auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.price-card {
    border: 1px solid var(--border-1);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    background: #fff;
}
.price-card.featured {
    border-color: var(--primary);
    background: var(--primary-50);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--pill);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}
.price-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-2);
    margin-bottom: 12px;
}
.price-amount {
    font-weight: 700;
    font-size: 42px;
    letter-spacing: -1.5px;
    line-height: 1;
}
.price-amount sup {
    font-size: 20px;
    vertical-align: top;
    margin: 6px 2px 0 0;
    font-weight: 600;
}
.price-amount sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    vertical-align: bottom;
    margin-left: 2px;
}
.price-note {
    font-size: 13px;
    color: var(--text-2);
    margin: 8px 0 20px;
}
.price-divider {
    border: none;
    border-top: 1px solid var(--border-2);
    margin: 20px 0;
}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li {
    font-size: 13px;
    color: var(--text-2);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.check-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.price-card .btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    padding: 11px 18px;
    font-size: 14px;
}
.pricing-note {
    margin: 32px auto 0;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-2);
    max-width: 900px;
    text-align: left;
}
.pricing-note p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}
.pricing-note strong {
    color: var(--text-1);
}

/* ─── COMPARE ─── */
.compare {
    background: var(--surface);
}
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-table th {
    font-weight: 600;
    font-size: 13px;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border-1);
    color: var(--text-2);
}
.compare-table th:first-child {
    width: 34%;
}
.compare-table th.hl {
    color: var(--primary);
    background: var(--primary-50);
    border-radius: var(--radius) var(--radius) 0 0;
}
.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-2);
    color: var(--text-2);
    vertical-align: top;
}
.compare-table td.hl {
    background: var(--primary-50);
    font-weight: 500;
    color: var(--text-1);
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.check-yes {
    color: var(--success);
    font-weight: 700;
}
.compare-table a {
    color: inherit;
}
.check-no {
    color: var(--text-3);
}

/* ─── PARTNERS ─── */
.partners {
    background: #fff;
    border-top: 1px solid var(--border-2);
}
.partners-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.partner-type {
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: border-color 0.15s;
}
.partner-type:hover {
    border-color: var(--primary);
}
.partner-type h3 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 8px;
}
.partner-type p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 16px;
}
.economics {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-2);
}
.economics strong {
    color: var(--text-1);
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.economics-cta {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.economics-cta:hover {
    text-decoration: underline;
}
.partners-cta {
    text-align: center;
    margin-top: 8px;
}

/* ─── FORM ─── */
.form-section {
    background: var(--surface);
    border-top: 1px solid var(--border-2);
}
.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.form-intro {
    font-size: 16px;
    color: var(--text-2);
    margin-bottom: 32px;
    line-height: 1.65;
}
.form-card {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form-card h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 6px;
}
.form-sub {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 24px;
}
.field {
    margin-bottom: 16px;
}
.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.field input,
.field select {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--border-1);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-1);
    background: var(--bg);
    outline: none;
    transition:
        border-color 0.15s,
        background 0.15s;
    appearance: none;
}
.field input:focus,
.field select:focus {
    border-color: var(--primary);
    background: #fff;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.submit-btn {
    width: 100%;
    margin-top: 8px;
}
.submit-btn:disabled,
.submit-btn:disabled:hover {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--primary);
    transform: none;
}
.form-disclaimer {
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.form-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}
.form-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.form-point-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.form-point h5 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}
.form-point p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
}

/* ─── FINAL CTA ─── */
.final {
    background: var(--primary-deep);
    padding: 96px 5vw;
    text-align: center;
}
.final h2 {
    font-weight: 600;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 auto 20px;
    max-width: 680px;
}
.final p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 36px;
}
.final-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.final-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.final-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.final-meta span:not(:last-child)::after {
    content: "·";
    color: rgba(255, 255, 255, 0.25);
    margin-left: 16px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-1);
    padding: 64px 5vw 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}
.footer-brand-logo {
    font-weight: 800;
    font-size: 22px;
    color: var(--primary-soft);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}
.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── RESPONSIVE / A11Y ─── */
@media (max-width: 960px) {
    nav {
        gap: 16px;
    }
    nav .nav-links {
        display: none;
    }
    .nav-right .btn {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
        gap: 40px;
    }
    .hero-visual {
        max-width: 540px;
    }
    .hero-float-card {
        right: 0;
        bottom: -16px;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .diff-item {
        border-right: none;
        border-bottom: 1px solid var(--border-2);
    }
    .diff-callout {
        flex-direction: column;
        align-items: flex-start;
    }
    .panel.active {
        grid-template-columns: 1fr;
    }
    .form-wrap {
        grid-template-columns: 1fr;
    }
    .partners-types {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    section,
    .final {
        padding: 64px 5vw;
    }
    .hero {
        padding-top: 40px;
    }
    .hero h1 {
        letter-spacing: -1px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .platform-tabs {
        width: 100%;
        border-radius: var(--radius-lg);
    }
    .ptab {
        flex: 1 1 auto;
        text-align: center;
        padding: 9px 12px;
    }
    .pv-row {
        flex-wrap: wrap;
    }
    .price-amount {
        font-size: 36px;
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 24px 20px;
    }
    .partner-type {
        padding: 24px 20px;
    }
    .diff-item,
    .diff-callout {
        padding: 28px 20px;
    }
    .final-actions .btn {
        width: 100%;
        text-align: center;
    }
    .final-meta {
        flex-direction: column;
        gap: 8px;
    }
    .final-meta span:not(:last-child)::after {
        content: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-inner {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
