:root {
    --primary: #5c1b49;
    --primary-dark: #3f1033;
    --primary-deep: #271021;
    --primary-soft: #f4e9f1;
    --accent: #d98ab8;
    --accent-soft: #f9edf5;
    --lilac: #d9c7ee;
    --ink: #211820;
    --muted: #6f626d;
    --line: #e9dfe6;
    --surface: #ffffff;
    --surface-soft: #fbf8fa;
    --success: #176c4a;
    --error: #9b2638;
    --shadow-sm: 0 10px 30px rgba(61, 19, 51, 0.08);
    --shadow-md: 0 24px 70px rgba(61, 19, 51, 0.13);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
    --header-height: 80px;
    --focus: 0 0 0 4px rgba(92, 27, 73, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--primary-dark);
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

::selection {
    color: #fff;
    background: var(--primary);
}

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

h1,
h2,
h3 {
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.22rem;
}

p {
    color: var(--muted);
}

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

.section-pad {
    position: relative;
    padding: 112px 0;
}

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

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(217, 138, 184, 0.19), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(217, 199, 238, 0.16), transparent 28%),
        linear-gradient(145deg, var(--primary-deep), var(--primary-dark));
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 12px 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    transform: translateY(-180%);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 99px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(92, 27, 73, 0.18);
    font-weight: 750;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    color: #fff;
    background: var(--primary-dark);
    box-shadow: 0 18px 38px rgba(92, 27, 73, 0.24);
    transform: translateY(-2px);
}

.button-secondary {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(92, 27, 73, 0.15);
    box-shadow: none;
}

.button-secondary:hover {
    color: var(--primary-dark);
    background: #fff;
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.button-full {
    width: 100%;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(58, 18, 48, 0.07);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    width: 168px;
    height: 48px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.5vw, 22px);
}

.primary-nav > a:not(.button) {
    position: relative;
    color: #4e414b;
    font-size: 0.88rem;
    font-weight: 680;
    text-decoration: none;
    white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary);
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: 76px;
    background:
        linear-gradient(180deg, rgba(250, 245, 248, 0.75), rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(92, 27, 73, 0.025) 80px),
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(92, 27, 73, 0.025) 80px);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
    gap: 64px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: clamp(1.05rem, 1.5vw, 1.23rem);
}

.hero-actions,
.hero-store-row,
.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-bottom: 24px;
}

.hero-store-row {
    margin-bottom: 26px;
}

.store-badge {
    position: relative;
    min-width: 168px;
    min-height: 58px;
    display: grid;
    align-content: center;
    padding: 9px 15px;
    color: #fff;
    background: #211820;
    border: 1px solid #211820;
    border-radius: 13px;
    line-height: 1.05;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
    color: #fff;
    box-shadow: 0 14px 28px rgba(32, 22, 30, 0.2);
    transform: translateY(-2px);
}

.store-badge span,
.store-badge small {
    font-size: 0.63rem;
    letter-spacing: 0.04em;
}

.store-badge strong {
    margin: 2px 0;
    font-size: 1rem;
}

.store-badge.is-placeholder::after {
    position: absolute;
    top: 6px;
    right: 7px;
    padding: 2px 5px;
    color: #3f1033;
    background: var(--lilac);
    border-radius: 5px;
    content: "Placeholder";
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-badge-large {
    min-width: 198px;
    min-height: 66px;
    padding: 12px 18px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-trust-list li {
    position: relative;
    padding-left: 18px;
    color: #594b55;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-trust-list li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--accent);
    border-radius: 50%;
}

.hero-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-stage {
    position: relative;
    width: min(100%, 500px);
    min-height: 625px;
}

.phone {
    position: absolute;
    filter: drop-shadow(0 30px 45px rgba(66, 17, 54, 0.18));
}

.phone-main {
    z-index: 2;
    top: 0;
    left: 48%;
    width: 325px;
    transform: translateX(-50%) rotate(-2deg);
}

.phone-side {
    z-index: 1;
    top: 74px;
    right: -15px;
    width: 265px;
    transform: rotate(8deg);
    opacity: 0.92;
}

.visual-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.91);
    border: 1px solid rgba(92, 27, 73, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 750;
}

.visual-card-top {
    top: 75px;
    left: -10px;
}

.visual-card-bottom {
    right: 0;
    bottom: 62px;
    display: grid;
    gap: 2px;
}

.visual-card-bottom span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #35a270;
    border: 3px solid #dff4e9;
    border-radius: 50%;
    box-sizing: content-box;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-glow-one {
    top: 8%;
    right: 7%;
    width: 270px;
    height: 270px;
    background: rgba(217, 138, 184, 0.28);
}

.hero-glow-two {
    right: 35%;
    bottom: -80px;
    width: 240px;
    height: 240px;
    background: rgba(217, 199, 238, 0.34);
}

.trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    padding: 0 0 26px;
    background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.trust-strip-grid div {
    min-height: 106px;
    display: grid;
    align-content: center;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
}

.trust-strip-grid div:last-child {
    border-right: 0;
}

.trust-strip-grid strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.trust-strip-grid span {
    color: var(--muted);
    font-size: 0.82rem;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 52px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    font-size: 1.04rem;
}

.section-heading-split {
    max-width: none;
    display: grid;
    align-items: end;
    grid-template-columns: 1fr minmax(300px, 0.7fr);
    gap: 60px;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .eyebrow {
    color: #fff;
}

.section-heading-light p {
    opacity: 0.74;
}

.steps-grid {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    list-style: none;
    counter-reset: step;
}

.step-card,
.category-card,
.feature-card,
.mini-feature,
.dispute-card,
.policy-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.step-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card::after {
    position: absolute;
    right: -25px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    content: "";
    background: var(--primary-soft);
    border-radius: 50%;
    transition: transform 220ms ease;
}

.step-card:hover {
    border-color: rgba(92, 27, 73, 0.22);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-card:hover::after {
    transform: scale(1.18);
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 14px;
    font-weight: 850;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

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

.category-card {
    min-height: 270px;
    padding: 26px;
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.category-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--primary);
    background: linear-gradient(145deg, var(--primary-soft), #fff);
    border: 1px dashed rgba(92, 27, 73, 0.32);
    border-radius: 18px;
    font-size: 0.84rem;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.placeholder-label {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 8px;
    color: #76536d;
    background: var(--accent-soft);
    border-radius: 7px;
    font-size: 0.68rem;
    font-weight: 750;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    gap: 70px;
}

.feature-layout > .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    align-self: start;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 215px;
    padding: 27px;
    border-radius: var(--radius-md);
    transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    border-color: rgba(92, 27, 73, 0.28);
    transform: translateY(-4px);
}

.feature-symbol {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    background: var(--accent-soft);
    border-radius: 12px;
    font-weight: 900;
}

.specialist-section {
    background:
        radial-gradient(circle at 7% 80%, rgba(217, 199, 238, 0.35), transparent 25%),
        linear-gradient(180deg, var(--surface-soft), #fff);
}

.specialist-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
}

.specialist-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialist-visual::before {
    position: absolute;
    width: 440px;
    height: 440px;
    content: "";
    background: var(--primary-soft);
    border-radius: 50%;
}

.specialist-visual img {
    position: relative;
    z-index: 2;
    width: 320px;
    filter: drop-shadow(0 30px 45px rgba(66, 17, 54, 0.16));
}

.specialist-stat-card {
    position: absolute;
    z-index: 3;
    right: -10px;
    bottom: 78px;
    max-width: 250px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.specialist-stat-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.check-list {
    padding: 0;
    margin: 28px 0 34px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 17px;
    color: var(--muted);
}

.check-list li::before {
    position: absolute;
    top: 0.12em;
    left: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 50%;
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.check-list.compact {
    margin-bottom: 24px;
}

.payment-flow {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
}

.payment-step {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.payment-step > span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary-dark);
    background: var(--lilac);
    border-radius: 10px;
    font-weight: 850;
}

.payment-step strong {
    margin-bottom: 10px;
    font-size: 1rem;
}

.payment-step small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.5;
}

.payment-arrow {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 1.25rem;
}

.payment-notes {
    display: grid;
    margin-top: 26px;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
}

.info-card h3 {
    color: var(--ink);
}

.info-card p {
    margin-bottom: 0;
}

.info-card-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 13px;
    font-weight: 900;
}

.dispute-grid,
.trust-safety-grid,
.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 70px;
}

.dispute-grid > .section-heading,
.trust-safety-grid > .section-heading,
.contact-copy {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.dispute-card {
    padding: 38px;
    border-radius: var(--radius-lg);
}

.decision-note {
    padding: 22px;
    margin-bottom: 0;
    color: #503d4c;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 14px 14px 0;
}

.feature-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mini-feature {
    min-height: 220px;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mini-feature > span {
    display: block;
    margin-bottom: 35px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.policy-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    color: var(--ink);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.policy-card:hover {
    color: var(--ink);
    border-color: rgba(92, 27, 73, 0.26);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.policy-card strong {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.08rem;
}

.policy-card span {
    color: var(--muted);
}

.policy-card small {
    align-self: flex-start;
    padding: 5px 8px;
    margin-top: auto;
    color: #76536d;
    background: var(--accent-soft);
    border-radius: 7px;
    font-weight: 750;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    gap: 70px;
}

.faq-layout > .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    align-self: start;
}

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

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(61, 19, 51, 0.05);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
    border-color: rgba(92, 27, 73, 0.25);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    position: relative;
    padding: 22px 60px 22px 24px;
    color: var(--ink);
    font-weight: 750;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 9px;
    content: "+";
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 24px 24px;
    margin: 0;
}

.download-section {
    padding-top: 50px;
}

.download-card {
    min-height: 450px;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 50px;
    padding: 62px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(217, 199, 238, 0.32), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--primary-deep));
    border-radius: 38px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.download-card h2,
.download-card p,
.download-card .eyebrow {
    color: #fff;
}

.download-card p {
    max-width: 650px;
    opacity: 0.74;
}

.download-visual {
    position: relative;
    height: 390px;
}

.download-visual img {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 245px;
    transform: translateX(-50%) rotate(5deg);
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.22));
}

.contact-copy h2 {
    max-width: 500px;
}

.contact-detail {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.contact-detail strong,
.contact-detail span,
.contact-detail small {
    display: block;
}

.contact-detail span {
    color: var(--primary);
    font-weight: 750;
}

.contact-detail small {
    color: var(--muted);
}

.contact-form-card {
    padding: 38px;
    border-radius: var(--radius-lg);
}

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

.field {
    margin-bottom: 18px;
}

.field label {
    display: inline-block;
    margin-bottom: 8px;
    color: #493a45;
    font-size: 0.88rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #dcd0d9;
    border-radius: 12px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #c4afbe;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: var(--focus);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--error);
    background: #fff9fa;
}

.field-error {
    display: block;
    min-height: 19px;
    margin-top: 5px;
    color: var(--error);
    font-size: 0.78rem;
    font-weight: 650;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 0.75rem;
}

.consent-row {
    display: grid;
    align-items: start;
    margin: 4px 0 4px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    color: var(--muted);
    font-size: 0.85rem;
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-note {
    margin: 14px 0 0;
    font-size: 0.78rem;
    text-align: center;
}

.form-alert {
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
}

.form-alert-success {
    color: var(--success);
    background: #eaf7f1;
    border: 1px solid #bce5d2;
}

.form-alert-error {
    color: var(--error);
    background: #fff0f2;
    border: 1px solid #f1c4cb;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding: 74px 0 24px;
    color: rgba(255, 255, 255, 0.82);
    background: #1f101b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 0.9fr;
    gap: 50px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 9px;
}

.footer-domain {
    color: var(--accent) !important;
    font-weight: 800;
}

.footer-downloads {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-downloads .store-badge {
    min-width: 0;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.75rem;
}

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

.legal-hero {
    padding: 78px 0 38px;
}

.legal-hero .container {
    max-width: 900px;
}

.legal-content {
    padding: 0 0 100px;
}

.legal-card {
    max-width: 900px;
    padding: 48px;
    margin-inline: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-notice {
    padding: 16px 18px;
    margin-bottom: 34px;
    color: #6e435e;
    background: var(--accent-soft);
    border: 1px solid #edd3e3;
    border-radius: 12px;
    font-weight: 700;
}

.legal-card h2 {
    margin-top: 38px;
    font-size: 1.65rem;
}

.legal-card h3 {
    margin-top: 28px;
    font-size: 1.16rem;
}

.legal-card ul {
    color: var(--muted);
}

.error-page {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    padding: 80px 0;
    text-align: center;
}

.error-card {
    max-width: 640px;
    padding: 52px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1120px) {
    .primary-nav {
        gap: 12px;
    }

    .primary-nav > a:not(.button) {
        font-size: 0.8rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 30px;
    }

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

    .payment-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .payment-arrow {
        display: none;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .section-pad {
        padding: 86px 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav > a:not(.button) {
        padding: 11px 8px;
        font-size: 0.94rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid,
    .specialist-grid,
    .dispute-grid,
    .trust-safety-grid,
    .contact-grid,
    .faq-layout,
    .feature-layout {
        grid-template-columns: 1fr;
    }

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

    .feature-layout > .section-heading,
    .faq-layout > .section-heading,
    .dispute-grid > .section-heading,
    .trust-safety-grid > .section-heading,
    .contact-copy {
        position: static;
    }

    .specialist-grid {
        gap: 30px;
    }

    .specialist-copy {
        grid-row: 1;
    }

    .specialist-visual {
        min-height: 590px;
        grid-row: 2;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .steps-grid,
    .category-grid,
    .feature-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-card {
        grid-template-columns: 1fr 260px;
        padding: 44px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .section-pad {
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-store-row,
    .download-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .store-badge {
        min-width: 0;
    }

    .hero-trust-list {
        display: grid;
    }

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

    .phone-stage {
        min-height: 490px;
    }

    .phone-main {
        width: 245px;
    }

    .phone-side {
        top: 58px;
        right: 0;
        width: 190px;
    }

    .visual-card-top {
        top: 20px;
        left: 0;
    }

    .visual-card-bottom {
        right: 0;
        bottom: 20px;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .trust-strip-grid div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .steps-grid,
    .category-grid,
    .feature-grid,
    .feature-list-grid,
    .payment-notes,
    .policy-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .payment-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialist-visual::before {
        width: 340px;
        height: 340px;
    }

    .specialist-visual img {
        width: 260px;
    }

    .specialist-stat-card {
        right: 0;
        bottom: 60px;
        max-width: 220px;
    }

    .download-card {
        grid-template-columns: 1fr;
        padding: 36px 26px 0;
        border-radius: 28px;
    }

    .download-visual {
        height: 340px;
    }

    .contact-form-card,
    .dispute-card,
    .legal-card,
    .error-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 480px) {
    .brand img {
        width: 145px;
    }

    .hero-store-row,
    .download-actions,
    .trust-strip-grid,
    .payment-flow {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-strip-grid div:last-child {
        border-bottom: 0;
    }

    .phone-main {
        left: 43%;
        width: 225px;
    }

    .phone-side {
        right: -15px;
        width: 170px;
    }

    .visual-card {
        max-width: 190px;
        font-size: 0.75rem;
    }

    .specialist-visual {
        min-height: 500px;
    }

    .specialist-visual::before {
        width: 280px;
        height: 280px;
    }

    .specialist-stat-card {
        right: 4px;
        left: 4px;
        bottom: 24px;
        max-width: none;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
