:root {
    --brand: #1d155f;
    --brand2: #31277f;
    --brand-soft: #f5f1ff;
    --brand-accent: #8f69ff;
    --font-heading: "Arapey", serif;
    --font-body: Inter, sans-serif;
    --rose: #1d155f;
    --rose-light: #f5f1ff;
    --rose-mid: #31277f;
    --rose-dark: #22195f;
    --gold: #8f69ff;
    --gold-light: #f5f1ff;
    --cream: #ffffff;
    --ink: #1d155f;
    --ink-mid: #22195f;
    --ink-soft: #31277f;
    --white: #ffffff;
    --color-heading: #1d155f;
    --color-body-text: #22195f;
    --border: rgba(29, 21, 95, 0.2);
    --border-hover: rgba(29, 21, 95, 0.45);
    --btn-solid-hover-bg: #22195f;
    --btn-solid-hover-border: #22195f;
    --btn-solid-hover-text: #ffffff;
    --btn-outline-hover-bg: transparent;
    --btn-outline-hover-border: #1d155f;
    --btn-outline-hover-text: #1d155f;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --brand: #b9a9ff;
    --brand2: #d5ccff;
    --brand-soft: #211c3d;
    --brand-accent: #a78bfa;
    --rose: #b9a9ff;
    --rose-light: #211c3d;
    --rose-mid: #d5ccff;
    --rose-dark: #f6f1ff;
    --gold: #a78bfa;
    --gold-light: #2c2550;
    --cream: #11101c;
    --ink: #f7f3ff;
    --ink-mid: #ded6ff;
    --ink-soft: #bcb2e3;
    --white: #171529;
    --color-heading: #f7f3ff;
    --color-body-text: #ded6ff;
    --border: rgba(220, 211, 255, 0.18);
    --border-hover: rgba(220, 211, 255, 0.38);
    --btn-solid-hover-bg: #d5ccff;
    --btn-solid-hover-border: #d5ccff;
    --btn-solid-hover-text: #151325;
    --btn-outline-hover-bg: rgba(185, 169, 255, 0.12);
    --btn-outline-hover-border: #b9a9ff;
    --btn-outline-hover-text: #f7f3ff;
}

/* :root {
    --brand: #6b0f16;
    --brand2: #8b1e24;
    --brand-soft: #fff8ef;
    --brand-accent: #d4a23a;

    --font-heading: "Arapey", serif;
    --font-body: Inter, sans-serif;

    --rose: #6b0f16;
    --rose-light: #fff4f0;
    --rose-mid: #8b1e24;
    --rose-dark: #3a070b;

    --gold: #c99325;
    --gold-light: #f8e7b8;

    --cream: #fffaf2;
    --ink: #2b0b0d;
    --ink-mid: #4b1015;
    --ink-soft: #7a3a3e;

    --white: #ffffff;

    --color-heading: #6b0f16;
    --color-body-text: #3a070b;

    --border: rgba(107, 15, 22, 0.18);
    --border-hover: rgba(201, 147, 37, 0.55);

    --btn-solid-hover-bg: #3a070b;
    --btn-solid-hover-border: #3a070b;
    --btn-solid-hover-text: #ffffff;

    --btn-outline-hover-bg: #fff8ef;
    --btn-outline-hover-border: #c99325;
    --btn-outline-hover-text: #6b0f16;
} */


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    /* background: linear-gradient(180deg, #ffffff 0%, #faf7ff 52%, #f1eaff 100%); */
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    backdrop-filter: blur(12px);
    width: 100%;
}

.nav-inner {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    height: 74px;
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
    align-items: center;
}

.logo {
    justify-self: start;
    font-family: "Arapey", serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--rose);
}

.logo-img {
    display: block;
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-bottom: unset !important;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-hover);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-mid);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--rose);
    background: var(--rose-light);
    color: var(--rose-dark);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle-moon {
    display: none;
}

html[data-theme="dark"] .theme-toggle-sun {
    display: none;
}

html[data-theme="dark"] .theme-toggle-moon {
    display: block;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.nav-back:hover {
    color: var(--rose-dark);
}

.nav-back svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.nav-menu {
    display: contents;
}

.nav-menu .nav-links {
    grid-column: 2;
    justify-content: center;
    justify-self: center;
}

.nav-menu .nav-actions {
    grid-column: 3;
    justify-content: flex-end;
    justify-self: end;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: 1px solid var(--border-hover);
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
    border-color: var(--rose);
    background: var(--rose-light);
    box-shadow: 0 10px 24px rgba(29, 21, 95, 0.08);
}

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

.nav-toggle span:nth-child(1) {
    transform: translateY(calc(-50% - 7px));
}

.nav-toggle span:nth-child(3) {
    transform: translateY(calc(-50% + 7px));
}

.nav-backdrop {
    display: none;
}

.nav-close {
    display: none;
}

.nav-panel-head {
    display: none;
}

.btn-outline {
    padding: 0.45rem 1.25rem;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    background: transparent;
    color: var(--ink-mid);
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--btn-outline-hover-bg);
    border-color: var(--btn-outline-hover-border);
    color: var(--btn-outline-hover-text);
}

.btn-primary {
    padding: 0.45rem 1.5rem;
    background: var(--rose);
    border: 1px solid var(--rose);
    border-radius: 10px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--btn-solid-hover-bg);
    border-color: var(--btn-solid-hover-border);
    color: var(--btn-solid-hover-text);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
    padding: 3.75rem 0 3.5rem;
}

.hero-left {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 1.65rem;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    background: #ddd4f3;
}

/* .hero-eyebrow::before {
    content: "";
    width: 12px;
    height: 1px;
    background: var(--brand);
} */

.hero-title {
    font-family: "Arapey", serif;
    font-size: clamp(2.8rem, 5.6vw, 5rem);
    font-weight: 700 !important;
    line-height: 1.12;
    color: var(--brand);
    letter-spacing: -0.02em;
    margin-bottom: 1.35rem;
    max-width: 70%;
}

.hero-title em {
    font-style: normal;
    color: var(--brand);
}

.hero-sub {
    font-size: 2rem;
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    font-weight: 300;
    color: #575757;
    line-height: 1.75;
    max-width: 900px;
    margin-bottom: 1.8rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.35rem;
}

.hero-cta .btn-hero,
.hero-cta .btn-ghost {
    border-radius: 999px;
}

.btn-hero {
    padding: 0.85rem 2.25rem;
    background: var(--brand-accent);
    border: 1px solid var(--brand-accent);
    border-radius: 10px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s;
}

.btn-hero:hover {
    background: var(--btn-solid-hover-bg);
    border-color: var(--btn-solid-hover-border);
    color: var(--btn-solid-hover-text);
    transform: translateY(-1px);
}

.btn-ghost {
    padding: 0.85rem 2.25rem;
    background: transparent;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    color: var(--ink-mid);
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s;
}

.btn-ghost:hover {
    background: var(--btn-outline-hover-bg);
    border-color: var(--btn-outline-hover-border);
    color: var(--btn-outline-hover-text);
}

.hero-stats {
    display: none;
}

.stat-num {
    font-family: "Arapey", serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
}

.stat-divider {
    width: 1px;
    background: var(--border-hover);
    align-self: stretch;
}

/* ── HERO RIGHT ── */
.hero-right {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.hero-bg-pattern {
    display: none;
}

.hero-ornament {
    display: none;
}

.hero-ornament::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(196, 116, 90, 0.1);
    border-radius: 50%;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.2rem;
    padding-top: 0.6rem;
}

.member-card {
    border: 0;
    border-radius: 20px;
    overflow: visible;
    text-decoration: none;
    color: var(--brand);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    animation: floatIn 0.6s ease both;
}

.member-card:hover {
    transform: translateY(-3px);
}

.member-card.member-locked {
    cursor: pointer;
}

.member-card.member-locked .member-card-img,
.member-card.member-locked .member-card-placeholder {
    filter: grayscale(0.1) brightness(0.9);
}

.member-card-lock {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(29, 21, 95, 0.9);
    padding: 0.35rem 0.7rem;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.member-card-viewed {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
    display: inline-flex;
    gap: 0.3rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(29, 21, 95, 0.88);
    padding: 0.35rem 0.65rem;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.member-card-viewed svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-card:nth-child(1) {
    animation-delay: 0.1s;
}

.member-card:nth-child(2) {
    animation-delay: 0.2s;
}

.member-card:nth-child(3) {
    animation-delay: 0.3s;
}

.member-card:nth-child(4) {
    animation-delay: 0.4s;
}

.member-card:nth-child(5) {
    animation-delay: 0.5s;
}

.member-card:nth-child(6) {
    animation-delay: 0.6s;
}

.member-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    background: var(--rose-mid);
    border-radius: 20px;
}

.member-card-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #cfd3da, #bcc3ce);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Arapey", serif;
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
}

.member-card-placeholder::after {
    content: "Free";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--brand);
    background: #d9ecff;
    border-radius: 999px;
    padding: 0.12rem 0.55rem;
    font-family: "DM Sans", sans-serif;
}

.member-card-body {
    padding: 0.8rem 0 0;
    flex: 1;
}

.member-card-name {
    font-family: "Arapey", serif;
    font-size: 2rem;
    font-size: clamp(1.05rem, 1.05vw, 2rem);
    font-weight: 600;
    color: var(--brand);
}

.member-card-meta {
    font-size: 1rem;
    font-size: clamp(0.9rem, 0.92vw, 1rem);
    color: var(--brand);
    margin-top: 2px;
}

.verified-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #8f69ff;
    background: transparent;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
}

/* ── TRUST STRIP ── */
.trust-strip {
    background: #3a327f;
}

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

.trust-item {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    align-items: center;
    text-align: center;
    background: #3a327f;
}

.trust-item:nth-child(even) {
    background: #1d155f;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-wrap svg {
    width: 36px;
    height: 36px;
    stroke: var(--brand-accent);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.trust-text p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 300;
    opacity: 0.9;
}

/* ── HOW IT WORKS ── */
.why-choose {
    background: #f1eaff;
    padding: 6rem 2rem;
}

.why-choose-inner {
    max-width: 1420px;
    margin: 0 auto;
}

.why-title {
    font-family: "Arapey", serif;
    font-size: clamp(2.3rem, 4.2vw, 4.2rem);
    color: var(--brand);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: end;
}

.why-list {
    display: grid;
    gap: 1.1rem;
}

.why-item {
    border: unset;
    border-radius: 8px;
    padding: 1.2rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(170px, 260px) 1fr auto;
    align-items: center;
    gap: 1.1rem;
}

.why-item h3 {
    font-family: "Arapey", serif;
    font-size: clamp(1.8rem, 1.2vw, 3rem);
    font-weight: 400;
    color: var(--brand);
    line-height: 1.1;
}

.why-item p {
    font-size: clamp(1rem, 1vw, 1.5rem);
    color: #615a97;
    line-height: 1.4;
    max-width: 560px;
}

.why-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #332b86;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    transition:
        transform 0.2s,
        background 0.2s;
}

.why-arrow:hover {
    background: #22195f;
    transform: translateY(-2px);
}

.why-figure {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.why-couple {
    width: min(100%, 520px);
    max-height: 520px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    border-radius: 100%;
}

.nearby-cities {
    background: #f1eaff;
    padding: 0 1.5rem 5.5rem;
    text-align: center;
}

.nearby-cities-title {
    font-family: "Arapey", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 2.15rem;
}

.nearby-cities-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.nearby-cities-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    background: #1d155f;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nearby-cities-list a:hover {
    background: #31277f;
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 6rem 0;
}

.section-inner {
    max-width: 1420px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--rose);
}

.section-title {
    font-family: "Arapey", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 3rem;
}

#how-it-works .section-title {
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 720px;
    color: #3e376f;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.step-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: var(--rose-light);
}

.step-num {
    font-family: "Arapey", serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--rose-mid);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.87rem;
    color: #3e376f;
    font-weight: 300;
    line-height: 1.65;
}

.step-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #22195f;
    text-decoration: none;
    margin-top: 1.2rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    text-transform: uppercase;
}

.step-card a:hover {
    color: #120c45;
}

.step-card a::after {
    content: "→";
    transition: transform 0.2s;
}

.step-card a:hover::after {
    transform: translateX(4px);
}

.section-closing {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 2rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--ink);
    padding: 6rem;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonials-section .section-eyebrow {
    color: #f5e9ff;
    font-weight: 500;
}

.testimonials-section .section-eyebrow::before {
    background: #f5e9ff;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(143, 105, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.testimonial-card {
    background: #1f175f;
    padding: 2rem 1.75rem;
    position: relative;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: var(--rose-light);
    border-color: rgba(143, 105, 255, 0.35);
    box-shadow: 0 12px 26px rgba(29, 21, 95, 0.18);
}

.testimonial-card:hover .testimonial-quote {
    color: var(--rose);
}

.testimonial-card:hover .testimonial-text {
    color: var(--ink-mid);
}

.testimonial-card:hover .testimonial-name {
    color: var(--ink);
}

.testimonial-card:hover .testimonial-role {
    color: var(--ink-soft);
}

.testimonial-card:hover .testimonial-avatar {
    background: #e9ddff;
    color: var(--rose-dark);
}

.testimonial-quote {
    font-family: "Arapey", serif;
    font-size: 3rem;
    color: #f5e9ff;
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-avatar-img {
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 1px;
}

/* ── FAQ ── */
.faq-section {
    background: var(--white);
    padding: 6rem 0;
}

.faq-grid {
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.faq-left {
    padding-right: 5rem;
    border-right: 1px solid var(--border);
}

.faq-right {
    padding-left: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #22195f;
    line-height: 1.4;
}

.faq-toggle {
    width: 22px;
    height: 22px;
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--rose);
    transition: all 0.2s;
    background: none;
    cursor: pointer;
}

.faq-item.open .faq-toggle {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.faq-answer {
    font-size: 0.85rem;
    color: #3e376f;
    line-height: 1.7;
    font-weight: 300;
    overflow: hidden;
    max-height: 0;
    transition:
        max-height 0.3s ease,
        padding-top 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 1.2rem;
}

.faq-cta-box {
    background: var(--rose-light);
    border: 1px solid var(--rose-mid);
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.faq-cta-box h3 {
    font-family: "Arapey", serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.faq-cta-box p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.65;
}

/* ── FOOTER ── */
footer {
    /* background: var(--rose-light);
    padding: 4rem 0 2rem;
    color: var(--ink-soft); */
    background: #fefcfb;
    padding: 4rem 0 2rem;
    color: var(--ink-soft);
    border-top: 1px solid #e3e3e3;
}

.footer-top {
    max-width: 1420px;
    margin: 0 auto 2rem;
    padding: 0 0 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    color: var(--ink);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(29, 21, 95, 0.16);
    color: var(--ink);
    background: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--brand-accent);
    background: var(--brand-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
}

.footer-col a {
    font-size: 0.95rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--rose-mid);
}

.footer-bottom {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom > div {
    display: grid;
    gap: 0.35rem;
}

.footer-credit {
    display: block;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.footer-credit a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--rose-mid);
}

.footer-payment-icons {
    display: block;
    width: auto;
    max-width: min(100%, 280px);
    height: 44px;
    object-fit: contain;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    animation: fadeUp 0.6s ease 0.1s both;
}

.hero-sub {
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-cta {
    animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
    animation: fadeUp 0.6s ease 0.4s both;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero {
        padding: 2rem 1.4rem 2.8rem;
    }

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

    .hero-title {
        max-width: 860px;
    }

    .section {
        padding: 4rem 2rem;
    }

    .testimonials-section {
        padding: 4rem 2rem;
    }

    .faq-section {
        padding: 4rem 1rem;
    }

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

    .why-choose {
        padding: 4rem 1.2rem;
    }

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

    .why-figure {
        min-height: 420px;
    }

    .faq-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }

    .faq-right {
        padding-left: 0;
    }

    footer {
        padding: 3rem 0 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .step-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .step-card:last-child {
        border-bottom: none;
    }

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

    .trust-item {
        border-right: none;
    }

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

    nav .nav-links {
        display: none;
    }

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

    .nav-inner {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    body.nav-lock {
        overflow: hidden;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 180;
        background: rgba(20, 16, 28, 0.5);
        backdrop-filter: blur(2px);
        border: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0 3.25rem 1.1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-panel-logo {
        width: 58px;
        height: auto;
        flex: 0 0 auto;
    }

    .nav-panel-head strong,
    .nav-panel-head span {
        display: block;
    }

    .nav-panel-head strong {
        color: var(--ink);
        font-family: var(--font-heading);
        font-size: 1.45rem;
        font-weight: 500;
        line-height: 1;
    }

    .nav-panel-head span {
        margin-top: 0.2rem;
        color: var(--ink-soft);
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border-hover);
        border-radius: 10px;
        background: var(--white);
        color: var(--ink);
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .nav-close:hover {
        border-color: var(--rose);
        background: var(--rose-light);
    }

    .nav-close span {
        position: absolute;
        width: 18px;
        height: 1px;
        background: currentColor;
    }

    .nav-close span:first-child {
        transform: rotate(45deg);
    }

    .nav-close span:last-child {
        transform: rotate(-45deg);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 360px);
        min-height: 100dvh;
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border-left: 1px solid var(--border);
        box-shadow: -18px 0 42px rgba(28, 20, 43, 0.14);
        padding: 1.2rem 1.25rem 1.35rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        margin-left: 0;
        z-index: 200;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.24s ease, visibility 0.24s ease;
    }

    nav.nav-open .nav-menu {
        transform: translateX(0);
        visibility: visible;
    }

    nav.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    nav.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    nav.nav-open .nav-links a {
        display: block;
        padding: 0.95rem 0.2rem;
        border-bottom: 1px solid var(--border);
        color: var(--ink);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.08em;
    }

    nav.nav-open .nav-links a:hover {
        color: var(--rose);
        padding-left: 0.45rem;
    }

    nav.nav-open .nav-actions {
        width: 100%;
        padding-top: 0.25rem;
        border-top: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    nav.nav-open .nav-actions .btn-outline,
    nav.nav-open .nav-actions .btn-primary,
    nav.nav-open .nav-actions form {
        width: 100%;
        text-align: center;
    }

    nav.nav-open .nav-actions .btn-outline,
    nav.nav-open .nav-actions .btn-primary {
        display: block;
        padding: 0.85rem 1rem;
        border-radius: 14px;
        font-weight: 600;
    }

    nav.nav-open .nav-actions .btn-outline {
        background: #ffffff;
        border-color: var(--border);
    }

    nav.nav-open .nav-actions form .btn-primary {
        width: 100%;
    }

    nav.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(calc(-50% - 7px));
    }

    nav.nav-open .nav-toggle span:nth-child(2) {
        opacity: 1;
    }

    nav.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(calc(-50% + 7px));
    }
}

@media (max-width: 640px) { 
    .nav-inner {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 100vw;
        border-left: 0;
    }

    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .why-item {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .why-arrow {
        justify-self: start;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero,
    .btn-ghost {
        width: min(100%, 320px);
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
    }

    .footer-payment-icons {
        max-width: min(100%, 240px);
        height: 36px;
    }
}

/* -- PRICING PAGE -- */
.pricing-page-header {
    background: var(--ink);
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-page-header::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pricing-page-header .page-header-inner {
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: pricingFadeUp 0.6s ease both;
}

.pricing-page-header .page-header-eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-soft);
    margin-bottom: 0.75rem;
}

.pricing-page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}

.pricing-page-header h1 em {
    color: var(--brand-soft);
    font-style: italic;
}

.pricing-page-header .page-header-meta {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
}

.pricing-wrap {
    max-width: 1420px;
    margin: 0 auto;
    padding: 2.9rem 0 1rem;
}

.pricing-wrap .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}

.pricing-wrap .plan {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
    padding: 1.4rem;
    animation: pricingFadeUp 0.6s ease 0.12s both;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-wrap .plan:nth-child(2) {
    animation-delay: 0.22s;
}

.pricing-wrap .plan:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(29, 21, 95, 0.1);
}

.pricing-wrap .plan.highlight {
    border-color: var(--rose);
    box-shadow: 0 16px 40px rgba(29, 21, 95, 0.12);
}

.pricing-wrap .plan-tag {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.pricing-wrap .plan-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 0.5rem;
    color: var(--ink);
}

.pricing-wrap .plan-price {
    font-size: 2rem;
    color: var(--rose);
    line-height: 1;
    margin: 0.8rem 0 0.4rem;
}

.pricing-wrap .plan-desc {
    color: var(--ink-soft);
    font-size: 0.86rem;
    margin-bottom: 0.5rem;
}

.pricing-wrap .plan ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    margin: 0.8rem 0 1.2rem;
}

.pricing-wrap .plan li {
    color: var(--ink-mid);
    font-size: 0.86rem;
}

.pricing-wrap .plan li::before {
    content: "* ";
    color: var(--rose);
}

.pricing-wrap .plan .cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-hover);
    border-radius: 999px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pricing-wrap .plan .cta:hover {
    transform: translateY(-2px);
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.pricing-wrap .plan.highlight .cta {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
    animation: pricingFadeUp 0.6s ease 0.32s both;
}

@keyframes pricingFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .pricing-page-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-wrap {
        padding: 2rem 1rem 1rem;
    }

    .pricing-wrap .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-page-header .page-header-inner,
    .pricing-wrap .plan,
    .pricing-note {
        animation: none;
    }

    .pricing-wrap .plan,
    .pricing-wrap .plan .cta {
        transition: none;
    }
}

/* -- FAQ PAGE -- */
.faq-page-header {
    background: var(--ink);
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.faq-page-header::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.faq-page-header .page-header-inner {
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: faqPageFadeUp 0.6s ease both;
}

.faq-page-header .page-header-eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--brand-soft);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-page-header h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
}

.faq-page-header h1 em {
    color: var(--brand-soft);
    font-style: italic;
}

.faq-page-header .page-header-meta {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.faq-page {
    padding: 3rem 0 4rem;
}

.faqs-inner {
    max-width: 1420px;
    margin: 0 auto;
    animation: faqPageFadeUp 0.6s ease 0.12s both;
}

.faq-page-title {
    margin-bottom: 1.5rem;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.faq-tab-btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-soft);
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-tab-btn:hover {
    border-color: var(--rose);
    color: var(--rose-dark);
    transform: translateY(-2px);
}

.faq-tab-btn.active {
    border-color: var(--rose);
    background: var(--rose-light);
    color: var(--rose-dark);
}

.faq-panel {
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
    padding: 1rem 1.25rem;
    animation: faqPanelFadeIn 0.35s ease both;
}

.faq-panel[hidden] {
    display: none;
}

.faq-panel .faq-item:last-child {
    border-bottom: none;
}

.faq-page .faq-panel {
    display: grid;
    gap: 1.4rem;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.faq-page .faq-panel[hidden] {
    display: none;
}

.faq-page .faq-item,
.faq-page .faq-item:first-child,
.faq-page .faq-panel .faq-item:last-child {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f7f8fc;
    padding: 0;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-page .faq-item.open {
    border-color: var(--ink);
    background: var(--ink);
}

.faq-page .faq-panel .faq-item.open:last-child {
    border-color: var(--ink);
    background: var(--ink);
}

.faq-page .faq-question {
    min-height: 106px;
    padding: 1.75rem 1.85rem;
}

.faq-page .faq-question h3 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 400;
}

.faq-page .faq-item.open .faq-question {
    min-height: auto;
    padding-bottom: 0.7rem;
}

.faq-page .faq-item.open .faq-question h3 {
    color: var(--white);
}

.faq-page .faq-toggle {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--white);
    color: var(--ink);
    font-size: 0;
}

.faq-page .faq-toggle::before {
    content: "\2198";
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
}

.faq-page .faq-item.open .faq-toggle {
    border-color: transparent;
    background: var(--white);
    color: var(--ink);
}

.faq-page .faq-item.open .faq-toggle::before {
    content: "\2197";
}

.faq-page .faq-answer {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-page .faq-item.open .faq-answer {
    max-height: 220px;
    padding: 0 1.85rem 1.75rem;
}

@keyframes faqPageFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faqPanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .faq-page-header {
        padding: 2.6rem 1rem 2.3rem;
    }

    .faq-page {
        padding: 2rem 1rem 3rem;
    }

    .faq-page .faq-panel {
        gap: 1rem;
    }

    .faq-page .faq-question {
        min-height: 90px;
        padding: 1.3rem;
    }

    .faq-page .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-page .faq-item.open .faq-answer {
        padding: 0 1.3rem 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-page-header .page-header-inner,
    .faqs-inner,
    .faq-panel {
        animation: none;
    }

    .faq-tab-btn {
        transition: none;
    }
}

/* -- CONTACT PAGE -- */
.contact-page-header {
    background: var(--ink);
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.contact-page-header::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-page-header .page-header-inner {
    max-width: 1420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: contactPageFadeUp 0.6s ease both;
}

.contact-page-header .page-header-eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--brand-soft);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page-header h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
}

.contact-page-header h1 em {
    color: var(--brand-soft);
    font-style: italic;
}

.contact-page-header .page-header-meta {
    max-width: 760px;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 1.35rem;
    border: 1px solid var(--brand-accent);
    border-radius: 999px;
    background: var(--brand-accent);
    padding: 0.75rem 1.5rem;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-header-btn:hover {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.contact-wrap {
    max-width: 1420px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.1rem;
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
    padding: 1.6rem;
    animation: contactPageFadeUp 0.6s ease 0.12s both;
}

.contact-card:nth-child(2) {
    animation-delay: 0.22s;
}

.contact-card h2 {
    margin-bottom: 0.3rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
}

.contact-card p {
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.contact-wrap .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-wrap .form-grid .full {
    grid-column: 1 / -1;
}

.contact-wrap .field {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    padding: 0.78rem 0.9rem;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-wrap .field:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(145, 105, 247, 0.12);
}

.contact-wrap textarea.field {
    min-height: 140px;
    resize: vertical;
}

.contact-wrap .field.is-invalid,
.contact-captcha-input.is-invalid {
    border-color: #c04040;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-captcha {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 105px;
    gap: 1rem;
    align-items: center;
    margin-top: 0.15rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8f5ff;
    padding: 1rem;
}

.contact-captcha-copy {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.contact-captcha-copy > span:last-child {
    display: grid;
}

.contact-captcha-copy strong {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-captcha-copy small {
    margin-top: 0.1rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
}

.contact-captcha-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
}

.contact-captcha-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-captcha-question {
    display: flex;
    gap: 0.35rem;
    align-items: baseline;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    white-space: nowrap;
}

.contact-captcha-question strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
}

.contact-captcha-input {
    width: 100%;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    padding: 0.7rem 0.75rem;
    color: var(--ink);
    font-size: 0.9rem;
    text-align: center;
}

.contact-captcha-input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(145, 105, 247, 0.12);
}

.contact-field-error {
    margin-top: -0.35rem;
    color: #c04040;
    font-size: 0.75rem;
}

.contact-wrap .send-btn {
    margin-top: 0.9rem;
    border: 1px solid var(--rose);
    border-radius: 999px;
    background: var(--rose);
    padding: 0.7rem 1.55rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-wrap .send-btn:hover {
    border-color: var(--rose-dark);
    background: var(--rose-dark);
    transform: translateY(-2px);
}

.contact-wrap .info-item {
    border-top: 1px solid var(--border);
    padding: 0.85rem 0;
}

.contact-wrap .info-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.contact-wrap .info-label {
    margin-bottom: 0.2rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-wrap .info-value {
    color: var(--ink-mid);
    font-size: 0.92rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid rgba(29, 21, 95, 0.16);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-social-links a:hover {
    border-color: var(--brand-accent);
    background: var(--brand-accent);
    color: var(--white);
}

@keyframes contactPageFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .contact-page-header {
        padding: 2.6rem 1rem 2.3rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 2rem 1rem 3rem;
    }
}

@media (max-width: 640px) {
    .contact-wrap .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap .form-grid .full {
        grid-column: auto;
    }

    .contact-captcha {
        grid-template-columns: 1fr 100px;
    }

    .contact-captcha-copy {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page-header .page-header-inner,
    .contact-card {
        animation: none;
    }

    .contact-wrap .field,
    .contact-wrap .send-btn {
        transition: none;
    }
}

/* -- ABOUT PAGE -- */
.about-page {
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #faf8ff 52%, #fff 100%);
}

.about-shell {
    width: min(1420px, calc(100% - 4rem));
    margin: 0 auto;
}

.about-kicker {
    display: inline-flex;
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero {
    padding: 4.5rem 0;
    background: var(--ink);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 4rem;
    align-items: center;
}

.about-hero-copy {
    animation: aboutFadeUp 0.65s ease both;
}

.about-hero-copy h1 {
    max-width: 760px;
    margin: 0.8rem 0 1rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 300;
    line-height: 0.98;
}

.about-hero-copy h1 em {
    color: var(--brand-soft);
    font-style: italic;
}

.about-hero-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.78rem 1.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

.about-btn-primary {
    background: var(--rose);
    color: var(--white);
}

.about-btn-primary:hover {
    background: var(--rose-dark);
    color: var(--white);
}

.about-btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.about-btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.about-hero-visual {
    position: relative;
    animation: aboutFadeUp 0.65s ease 0.14s both;
}

.about-hero-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1.12;
    border-radius: 24px;
    object-fit: cover;
}

.about-hero-note {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    width: min(280px, 78%);
    border-radius: 16px;
    background: var(--white);
    padding: 1rem 1.1rem;
    box-shadow: 0 18px 42px rgba(9, 5, 44, 0.22);
}

.about-hero-note strong,
.about-hero-note span {
    display: block;
}

.about-hero-note strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
}

.about-hero-note span {
    margin-top: 0.25rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.5;
}

.about-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-section-copy h2,
.about-section-heading h2,
.about-trust-copy h2,
.about-cta-copy h2 {
    margin: 0.65rem 0 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.04;
}

.about-story-text {
    color: var(--ink-mid);
    font-size: 1rem;
    line-height: 1.85;
}

.about-story-text p + p {
    margin-top: 1rem;
}

.about-story-gallery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.92fr 1.16fr 0.92fr;
    gap: 1.8rem;
    align-items: center;
    padding: 1.5rem 2.5rem;
}

.about-story-gallery img {
    display: block;
    width: 100%;
    height: 430px;
    border-radius: 12px;
    object-fit: cover;
}

.about-story-gallery img:first-child {
    transform: rotate(-10deg);
}

.about-story-gallery img:nth-child(2) {
    height: 500px;
}

.about-story-gallery img:last-child {
    transform: rotate(10deg);
}

.about-values {
    background: #efebf6;
    padding: 5.5rem 0;
}

.about-section-heading {
    max-width: 680px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-value-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    padding: 1.7rem;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    background: var(--white);
}

.about-value-card span,
.about-process-step span {
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.about-value-card h3,
.about-process-step h3 {
    margin: 1.1rem 0 0.5rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 400;
}

.about-value-card p,
.about-process-step p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-trust {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 4.5rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-trust-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.08;
    border-radius: 22px;
    object-fit: cover;
}

.about-trust-copy p {
    margin: 1rem 0 1.5rem;
    color: var(--ink-mid);
    line-height: 1.8;
}

.about-trust-points {
    display: grid;
    gap: 0.8rem;
}

.about-trust-points div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
}

.about-trust-points strong {
    color: var(--ink);
    font-size: 0.9rem;
}

.about-trust-points span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.about-process {
    background: var(--ink);
    padding: 5.5rem 0;
}

.about-process .about-kicker {
    color: var(--brand-soft);
}

.about-process .about-section-heading h2 {
    color: var(--white);
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2.2rem;
}

.about-process-step {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.3rem 1.2rem 0.3rem 1.4rem;
}

.about-process-step:first-child {
    padding-left: 0;
    border-left: 0;
}

.about-process-step h3 {
    color: var(--white);
}

.about-process-step p {
    color: rgba(255, 255, 255, 0.68);
}

.about-cta {
    position: relative;
    min-height: 390px;
    margin-top: 6rem;
    margin-bottom: 6rem;
    overflow: hidden;
    border-radius: 24px;
}

.about-cta img,
.about-cta-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-cta img {
    object-fit: cover;
}

.about-cta-overlay {
    background: linear-gradient(90deg, rgba(18, 12, 79, 0.94) 0%, rgba(18, 12, 79, 0.7) 52%, rgba(18, 12, 79, 0.18) 100%);
}

.about-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 690px;
    padding: 4rem;
}

.about-cta-copy .about-kicker {
    color: var(--brand-soft);
}

.about-cta-copy h2 {
    color: var(--white);
}

.about-cta-copy p {
    margin: 0.9rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-btn-light {
    background: var(--white);
    color: var(--ink);
}

.about-btn-light:hover {
    background: var(--brand-soft);
    color: var(--ink);
}

@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .about-shell {
        width: min(100% - 2rem, 760px);
    }

    .about-hero {
        padding: 3.5rem 0 4.5rem;
    }

    .about-hero-grid,
    .about-story,
    .about-trust {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-hero-visual {
        max-width: 640px;
    }

    .about-story,
    .about-trust {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .about-values,
    .about-process {
        padding: 4rem 0;
    }

    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem 0;
    }

    .about-process-step:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .about-cta {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 640px) {
    .about-values-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-story-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .about-story-gallery img,
    .about-story-gallery img:nth-child(2) {
        height: 320px;
        transform: none;
    }

    .about-hero-note {
        right: 0.8rem;
        bottom: -1.5rem;
    }

    .about-process-step,
    .about-process-step:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
        padding: 1.2rem 0 0;
    }

    .about-process-step:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .about-cta {
        min-height: 360px;
    }

    .about-cta-copy {
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-copy,
    .about-hero-visual {
        animation: none;
    }

    .about-btn,
    .about-value-card {
        transition: none;
    }
}

/* -- PROFILE DETAILS PAGE -- */
.profile-page {
    min-height: 100vh;
}

.profile-page .profile-header {
    padding: 2.6rem 2rem 0;
    background: linear-gradient(180deg, #fff 0%, #f7f4ff 100%);
}

.profile-page .profile-header-inner {
    gap: 1.6rem;
}

.profile-page .avatar {
    width: 124px;
    height: 124px;
    border-color: var(--border);
    border-radius: 22px;
    overflow: visible;
}

.profile-page .avatar img {
    display: block;
}

.profile-page .profile-name {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.profile-page .profile-tagline {
    max-width: 760px;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.profile-page .profile-meta {
    gap: 0.45rem;
}

.profile-page .meta-chip {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    padding: 0.34rem 0.7rem;
    color: var(--ink-mid);
    font-size: 0.75rem;
}

.profile-page .profile-tabs {
    gap: 0.25rem;
    margin-top: 1.1rem;
}

.profile-page .ptab {
    margin-right: 0;
}

.profile-page .profile-body {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 1.5rem;
    padding: 2rem 0;
}

.profile-page .card,
.profile-page .s-card {
    border-color: rgba(29, 21, 95, 0.14);
    box-shadow: none;
}

.profile-page .card-header,
.profile-page .s-card-header {
    background: rgba(245, 241, 255, 0.46);
}

.profile-page .card-header-icon {
    background: transparent;
}

.profile-page .profile-subheading {
    margin-top: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.profile-page .qf-row {
    gap: 1rem;
}

.profile-page .qf-val {
    text-align: right;
}

.profile-page .profile-view-all {
    margin-top: 0.8rem;
    text-align: center;
}

.profile-page .profile-view-all a,
.profile-page .profile-report a {
    color: var(--rose);
    font-size: 0.75rem;
    text-decoration: none;
}

.profile-page .profile-view-all a:hover,
.profile-page .profile-report a:hover {
    color: var(--rose-dark);
}

.profile-page .profile-report {
    padding: 0.9rem 1.1rem;
    text-align: center;
}

.profile-page .profile-report a {
    color: var(--ink-soft);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .profile-page .profile-header {
        padding: 1.5rem 1rem 0;
    }

    .profile-page .profile-header-inner {
        gap: 1rem;
    }

    .profile-page .avatar {
        width: 92px;
        height: 92px;
        border-radius: 18px;
    }

    .profile-page .profile-body {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .profile-page .sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .profile-page .sidebar .s-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .profile-page .profile-header-inner {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .profile-page .avatar {
        width: 72px;
        height: 72px;
        border-radius: 14px;
        font-size: 2rem;
    }

    .profile-page .profile-name {
        font-size: 2rem;
    }

    .profile-page .profile-tagline,
    .profile-page .profile-meta {
        grid-column: 1 / -1;
    }

    .profile-page .profile-tabs {
        margin-top: 0.85rem;
        padding-bottom: 0.15rem;
        white-space: nowrap;
    }

    .profile-page .ptab {
        flex: 0 0 auto;
        padding: 0.62rem 0.85rem;
        font-size: 0.7rem;
    }

    .profile-page .meta-chip {
        font-size: 0.7rem;
    }

    .profile-page .sidebar {
        grid-template-columns: 1fr;
    }

    .profile-page .sidebar .s-card:last-child {
        grid-column: auto;
    }
}

/* -- LOGIN PAGE -- */
.login-page {
    position: relative;
    display: grid;
    min-height: 720px;
    place-items: center;
    overflow: hidden;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}

.login-page::before,
.login-page::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(29, 21, 95, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.login-page::before {
    top: -130px;
    right: -120px;
    width: 420px;
    height: 420px;
}

.login-page::after {
    bottom: -110px;
    left: -100px;
    width: 320px;
    height: 320px;
}

.login-card {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    padding: 2.6rem 2.4rem;
    box-shadow: 0 18px 44px rgba(29, 21, 95, 0.08);
    animation: loginPageFadeUp 0.55s ease both;
}

.login-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--brand-accent));
}

.login-card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.login-card-logo {
    display: inline-block;
    margin-bottom: 1.15rem;
}

.login-card-logo img {
    display: block;
    width: auto;
    height: 120px;
}

.login-card-header h1 {
    margin-bottom: 0.35rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
}

.login-card-header p,
.login-register-link {
    color: var(--ink-soft);
    font-size: 0.83rem;
}

.login-card a {
    color: var(--rose);
    font-weight: 500;
    text-decoration: none;
}

.login-field {
    margin-bottom: 1.2rem;
}

.login-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ink-mid);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 0.9rem;
    display: flex;
    pointer-events: none;
}

.login-input-icon svg,
.login-password-toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.login-input-icon {
    color: var(--ink-soft);
}

.login-input {
    width: 100%;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    padding: 0.78rem 2.55rem;
    color: var(--ink);
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-input:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(143, 105, 255, 0.12);
}

.login-input.is-invalid {
    border-color: #c04040;
}

.login-password-toggle {
    position: absolute;
    right: 0.85rem;
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
}

.login-error {
    margin-top: 0.3rem;
    color: #c04040;
    font-size: 0.72rem;
}

.login-options,
.login-remember {
    display: flex;
    align-items: center;
}

.login-options {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.login-remember {
    gap: 0.4rem;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.login-forgot {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.login-submit {
    width: 100%;
    border: 1px solid var(--rose);
    border-radius: 999px;
    background: var(--rose);
    padding: 0.82rem;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.login-submit:hover {
    border-color: var(--rose-dark);
    background: var(--rose-dark);
    transform: translateY(-2px);
}

.login-register-link {
    margin-top: 1.4rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

@keyframes loginPageFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .login-page {
        min-height: 620px;
        padding: 2.5rem 1rem;
    }

    .login-card {
        padding: 2rem 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-card {
        animation: none;
    }

    .login-input,
    .login-submit {
        transition: none;
    }
}

/* -- EMAIL VERIFICATION PAGE -- */
.email-verify-page {
    position: relative;
    display: grid;
    min-height: 660px;
    place-items: center;
    overflow: hidden;
    padding: 4.5rem 1.5rem;
    background:
        radial-gradient(circle at 8% 12%, rgba(143, 105, 255, 0.12), transparent 25rem),
        linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}

.email-verify-page::after {
    position: absolute;
    right: -180px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(29, 21, 95, 0.06);
    border-radius: 50%;
    content: "";
}

.email-verify-shell {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 1020px);
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(29, 21, 95, 0.12);
    animation: loginPageFadeUp 0.55s ease both;
}

.email-verify-visual {
    position: relative;
    display: flex;
    min-height: 570px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 3.2rem;
    background: var(--ink);
    color: var(--white);
}

.email-verify-visual::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #f174e9, var(--brand-accent));
    content: "";
}

.email-verify-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.email-verify-orbit-one {
    top: -120px;
    right: -140px;
    width: 360px;
    height: 360px;
}

.email-verify-orbit-two {
    right: 60px;
    bottom: -170px;
    width: 280px;
    height: 280px;
}

.email-verify-visual-content,
.email-verify-envelope {
    position: relative;
    z-index: 1;
}

.email-verify-kicker,
.email-verify-label {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.email-verify-kicker {
    color: #d7caff;
}

.email-verify-visual h2 {
    max-width: 400px;
    margin-top: 1rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.35rem);
    font-weight: 400;
    line-height: 1.02;
}

.email-verify-visual h2 em {
    color: #d7caff;
    font-weight: 400;
}

.email-verify-visual-content > p {
    max-width: 390px;
    margin-top: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.email-verify-benefits {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.email-verify-benefits > div {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.email-verify-check {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(215, 202, 255, 0.35);
    border-radius: 50%;
    background: rgba(215, 202, 255, 0.1);
    color: #d7caff;
    font-size: 0.72rem;
}

.email-verify-envelope {
    width: 160px;
    margin-top: 2.5rem;
    margin-left: auto;
    opacity: 0.9;
}

.email-verify-envelope svg {
    display: block;
    width: 100%;
    fill: rgba(255, 255, 255, 0.04);
    stroke: #d7caff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.email-verify-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3.8rem;
}

.email-verify-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 1.3rem;
    place-items: center;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--ink);
}

.email-verify-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.email-verify-label {
    color: var(--rose);
}

.email-verify-card h1 {
    margin: 0.55rem 0 0.6rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4vw, 3.15rem);
    font-weight: 400;
    line-height: 1;
}

.email-verify-lead,
.email-verify-help {
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.email-verify-lead {
    margin-bottom: 0.45rem;
}

.email-verify-address {
    overflow-wrap: anywhere;
    margin-bottom: 1.7rem;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
}

.email-verify-instructions {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
}

.email-verify-instructions > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #f4f0ff;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
}

.email-verify-instructions p {
    margin: 0.2rem 0 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.email-verify-instructions strong {
    color: var(--ink);
    font-weight: 500;
}

.email-verify-submit {
    display: inline-flex;
    width: 100%;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.4rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.email-verify-submit svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.email-verify-submit:hover {
    border-color: var(--rose-dark);
    background: var(--rose-dark);
    transform: translateY(-2px);
}

.email-verify-help {
    margin: 1rem 0 0;
    text-align: center;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .email-verify-shell {
        width: min(100%, 620px);
        grid-template-columns: 1fr;
    }

    .email-verify-visual {
        min-height: auto;
        padding: 2.5rem;
    }

    .email-verify-visual h2,
    .email-verify-visual-content > p {
        max-width: none;
    }

    .email-verify-benefits,
    .email-verify-envelope {
        display: none;
    }

    .email-verify-card {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 520px) {
    .email-verify-page {
        min-height: auto;
        padding: 1.5rem 1rem 2.5rem;
    }

    .email-verify-shell {
        border-radius: 18px;
    }

    .email-verify-visual {
        padding: 2rem 1.5rem;
    }

    .email-verify-visual h2 {
        font-size: 2.2rem;
    }

    .email-verify-card {
        padding: 2.4rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .email-verify-shell {
        animation: none;
    }

    .email-verify-submit {
        transition: none;
    }
}

/* -- PRIVACY POLICY PAGE -- */
.policy-shell {
    width: min(100% - 3rem, 1420px);
    margin-inline: auto;
}

.policy-hero {
    position: relative;
    overflow: hidden;
    padding: 5.2rem 0 4.5rem;
    background: var(--ink);
    color: var(--white);
}

.policy-hero::before,
.policy-hero::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.policy-hero::before {
    top: -120px;
    right: -90px;
    width: 330px;
    height: 330px;
}

.policy-hero::after {
    right: 16%;
    bottom: -115px;
    width: 190px;
    height: 190px;
}

.policy-hero .policy-shell {
    position: relative;
    z-index: 1;
}

.policy-eyebrow,
.policy-index-label {
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.policy-hero h1 {
    max-width: 680px;
    margin-top: 0.8rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 0.98;
}

.policy-hero h1 em {
    color: #c9b9ff;
    font-weight: 400;
}

.policy-hero p {
    max-width: 650px;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-page {
    background: #fbfaff;
    padding: 4rem 0 5rem;
}

.policy-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.policy-index {
    position: sticky;
    top: 100px;
    border-left: 1px solid var(--border);
    padding-left: 1.1rem;
}

.policy-index nav {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.policy-index a {
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.policy-index a:hover {
    color: var(--ink);
    transform: translateX(3px);
}

.policy-content {
    min-width: 0;
}

.policy-intro,
.policy-section,
.policy-help {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.policy-intro {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.25rem 1.4rem;
}

.policy-intro-mark {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.policy-intro p,
.policy-section p,
.policy-section ul {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.policy-intro p {
    margin: 0;
}

.policy-section {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    scroll-margin-top: 100px;
}

.policy-section-number {
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.policy-section h2,
.policy-help h2 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.1;
}

.policy-section p {
    margin: 0.55rem 0 0;
}

.policy-section a {
    color: var(--ink);
    font-weight: 600;
}

.policy-section ul {
    margin: 0.55rem 0 0 1.1rem;
}

.policy-section li + li {
    margin-top: 0.3rem;
}

.policy-feature {
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid rgba(49, 39, 127, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(143, 105, 255, 0.09), transparent 34%),
        linear-gradient(180deg, #fffefe 0%, #fcfaff 100%);
    scroll-margin-top: 100px;
}

.policy-feature-head {
    padding: 1.6rem 1.7rem 1.35rem;
    border-bottom: 1px solid rgba(49, 39, 127, 0.1);
}

.policy-feature-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.policy-feature h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.08;
}

.policy-feature-head p {
    max-width: 760px;
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

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

.policy-feature-card {
    padding: 1.5rem 1.7rem 1.7rem;
}

.policy-feature-card + .policy-feature-card {
    border-left: 1px solid rgba(49, 39, 127, 0.1);
}

.policy-feature-number {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.policy-feature-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.policy-feature-card p {
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.policy-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--brand-soft);
}

.policy-help span {
    color: var(--ink-soft);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-help a {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--ink);
    padding: 0.72rem 1.1rem;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.policy-layout-no-index {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.managed-page-content {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 3rem);
    color: var(--ink-soft);
}

.managed-page-content h2 {
    margin: 2rem 0 0.7rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 400;
    scroll-margin-top: 100px;
}

.managed-page-content h2:first-child {
    margin-top: 0;
}

.managed-page-content h3 {
    margin: 1.5rem 0 0.55rem;
    color: var(--ink);
    font-size: 1.1rem;
}

.managed-page-content p,
.managed-page-content ul,
.managed-page-content ol {
    margin: 0.7rem 0 0;
    line-height: 1.75;
}

.managed-page-content ul,
.managed-page-content ol {
    padding-left: 1.4rem;
}

.managed-page-content a {
    color: var(--ink);
    font-weight: 600;
}

.managed-page-content blockquote {
    margin: 1.5rem 0;
    border-left: 3px solid var(--brand-accent);
    background: var(--brand-soft);
    padding: 1rem 1.2rem;
}

@media (max-width: 800px) {
    .policy-shell {
        width: min(100% - 2rem, 680px);
    }

    .policy-hero {
        padding: 3.8rem 0 3.4rem;
    }

    .policy-layout {
        display: block;
    }

    .policy-index {
        position: static;
        margin-bottom: 1.4rem;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--white);
        padding: 1rem;
    }

    .policy-index nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 1rem;
    }
}

@media (max-width: 520px) {
    .policy-page {
        padding: 2rem 0 3rem;
    }

    .policy-index nav {
        display: none;
    }

    .policy-section {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 1.2rem;
    }

    .policy-feature-head,
    .policy-feature-card {
        padding: 1.25rem;
    }

    .policy-feature h2 {
        font-size: 1.65rem;
    }

    .policy-feature-grid {
        grid-template-columns: 1fr;
    }

    .policy-feature-card + .policy-feature-card {
        border-top: 1px solid rgba(49, 39, 127, 0.1);
        border-left: 0;
    }

    .policy-help {
        display: block;
    }

    .policy-help a {
        margin-top: 1rem;
    }
}

/* -- PRICING PAGE REFINEMENTS -- */
.pricing-page-header {
    padding: 5rem 2.5rem 4.4rem;
}

.pricing-page-header::before {
    width: 320px;
    height: 320px;
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-page-header h1 {
    max-width: 850px;
    font-size: clamp(3rem, 6vw, 5rem);
}

.pricing-page-header h1 em {
    color: #c9b9ff;
}

.pricing-page-header .page-header-meta {
    max-width: 620px;
    margin-top: 1rem;
}

.pricing-wrap {
    max-width: 1420px;
    padding: 4rem 0 4.5rem;
}

.pricing-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-kicker {
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-heading h2,
.pricing-empty h2 {
    margin-top: 0.35rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1;
}

.pricing-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.pricing-wrap .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.pricing-wrap .plan {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border-radius: 20px;
    padding: 1.75rem;
}

.pricing-wrap .plan.highlight::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--brand-accent);
    content: "";
}

.pricing-wrap .plan.current {
    border: 2px solid var(--brand-accent);
    background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
    box-shadow: 0 20px 48px rgba(92, 59, 190, 0.2);
    transform: translateY(-6px);
}

.pricing-wrap .plan.current:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 24px 54px rgba(92, 59, 190, 0.24);
}

.pricing-wrap .plan.current::before {
    height: 6px;
    background: var(--brand-accent);
}

.plan-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-wrap .plan-tag {
    display: inline-flex;
    border-radius: 999px;
    background: var(--brand-soft);
    padding: 0.3rem 0.65rem;
    font-weight: 600;
}

.plan-current {
    border-radius: 999px;
    background: var(--brand-accent);
    padding: 0.3rem 0.65rem;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-wrap .plan-name {
    margin-top: 1.4rem;
}

.pricing-wrap .plan-price {
    display: flex;
    gap: 0.45rem;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 3.1rem;
}

.plan-currency {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.plan-duration {
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-wrap .plan-desc {
    min-height: 2.8rem;
    margin-top: 0.8rem;
}

.pricing-wrap .plan ul {
    flex-grow: 1;
    margin: 1.1rem 0 1.4rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.pricing-wrap .plan li::before {
    color: var(--brand-accent);
    content: "\2713  ";
    font-weight: 700;
}

.pricing-wrap .plan .cta {
    padding: 0.78rem 1rem;
}

.pricing-wrap .plan .cta-current {
    border-color: var(--brand-accent);
    background: var(--brand-accent);
    color: #fff;
    cursor: default;
}

.pricing-support {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
    margin-top: 2rem;
    border-radius: 18px;
    background: #efebf6;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.pricing-support-intro {
    position: sticky;
    top: 96px;
}

.pricing-support-intro h2 {
    margin-top: 0.55rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.45rem);
    font-weight: 400;
    line-height: 1;
}

.pricing-support-intro p {
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.7;
}

.pricing-support-list {
    display: grid;
    gap: 1rem;
}

.support-plan {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) max-content;
    gap: 1.2rem;
    align-items: start;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    padding: 1.35rem;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.support-plan:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.support-plan-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(92, 59, 190, 0.2);
    border-radius: 50%;
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.support-plan-tag {
    color: var(--brand-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-plan h3 {
    margin: 0.45rem 0 0.45rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2vw, 2.15rem);
    font-weight: 400;
    line-height: 1;
}

.support-plan p {
    max-width: 680px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.support-plan-aside {
    display: grid;
    gap: 0.75rem;
    justify-items: end;
}

.support-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    justify-content: flex-end;
    min-width: 150px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1;
    white-space: nowrap;
}

.support-plan-price span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.support-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    padding: 0.62rem 1rem;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.support-plan-action:hover {
    border-color: var(--brand-accent);
    background: var(--brand-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.support-plan-action.is-current {
    border-color: rgba(92, 59, 190, 0.2);
    background: var(--brand-soft);
    color: var(--ink);
    cursor: default;
}

.support-plan-action.is-current:hover {
    transform: none;
}

.support-plan-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.95rem;
}

.support-plan-notes span {
    border: 1px solid rgba(92, 59, 190, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0.32rem 0.65rem;
    color: var(--ink);
    font-size: 0.74rem;
    line-height: 1.2;
}

.pricing-community {
    display: grid;
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-top: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.pricing-community-image {
    overflow: hidden;
    border-radius: 14px;
}

.pricing-community-image img {
    display: block;
    width: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
}

.pricing-community-copy {
    padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.25rem, 1vw, 0.75rem);
}

.pricing-community-copy h2 {
    margin-top: 0.45rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 0.98;
}

.pricing-community-copy p {
    max-width: 720px;
    margin: 0.85rem 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.75;
}

.pricing-assurance,
.pricing-empty {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--brand-soft);
}

.pricing-empty {
    padding: 2rem;
}

.pricing-empty p {
    margin: 0.6rem 0 1rem;
    color: var(--ink-soft);
}

.pricing-empty .cta {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-assurance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
}

.pricing-assurance strong,
.pricing-assurance span {
    display: block;
}

.pricing-assurance strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
}

.pricing-assurance span {
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.pricing-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.pricing-methods span {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
}

@media (max-width: 980px) {
    .pricing-page-header {
        padding: 3.8rem 1rem 3.4rem;
    }

    .pricing-wrap {
        padding: 2.6rem 1rem 3rem;
    }

    .pricing-heading,
    .pricing-assurance {
        display: block;
    }

    .pricing-heading p {
        margin-top: 0.75rem;
    }

    .pricing-support {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-support-intro {
        position: static;
    }

    .support-plan {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .support-plan-price {
        justify-content: flex-start;
        min-width: 0;
    }

    .support-plan-aside {
        grid-column: 2;
        justify-items: start;
    }

    .pricing-community {
        grid-template-columns: 1fr;
    }

    .pricing-community-image img {
        min-height: 240px;
        max-height: 320px;
    }

    .pricing-methods {
        justify-content: flex-start;
        margin-top: 0.75rem;
    }
}

/* -- BLOG -- */
.blog-page-header {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: 5rem 2.5rem 4.4rem;
}

.blog-page-header::before {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.blog-page-header .page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 1420px;
    margin: 0 auto;
    animation: pricingFadeUp 0.6s ease both;
}

.blog-page-header .page-header-eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--brand-soft);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-page-header h1 {
    max-width: 820px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
}

.blog-page-header h1 em {
    color: #c9b9ff;
    font-style: italic;
}

.blog-page-header .page-header-meta {
    max-width: 620px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-wrap,
.blog-article,
.blog-related {
    width: min(100% - 3rem, 1420px);
    margin-inline: auto;
}

.blog-wrap {
    padding: 4rem 0 4.5rem;
}

.blog-empty {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--brand-soft);
    padding: 2rem;
}

.blog-empty h2,
.blog-featured-copy h2,
.blog-related-heading h2 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
}

.blog-empty h2 {
    margin-top: 0.45rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-empty p {
    max-width: 520px;
    margin-top: 0.65rem;
    color: var(--ink-soft);
}

.blog-featured {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    background: #efebf6;
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.blog-featured-image,
.blog-card-image {
    display: grid;
    overflow: hidden;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand-accent);
    text-decoration: none;
}

.blog-featured-image {
    min-height: 390px;
    border-radius: 14px;
}

.blog-featured-image img,
.blog-card-image img,
.blog-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-image span,
.blog-card-image span {
    font-family: var(--font-heading);
    font-size: 5rem;
}

.blog-featured-copy {
    padding: clamp(0.5rem, 2vw, 1.5rem);
}

.blog-date {
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-featured-copy h2 {
    margin: 0.65rem 0 0.85rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.blog-featured-copy h2 a,
.blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-featured-copy p,
.blog-card p {
    color: var(--ink-soft);
    line-height: 1.75;
}

.blog-read-link {
    display: inline-flex;
    margin-top: 1.2rem;
    border-radius: 999px;
    background: var(--ink);
    padding: 0.78rem 1.15rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.blog-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card h2 {
    margin: 0.45rem 0 0.55rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.05;
}

.blog-card p {
    margin: 0;
    font-size: 0.9rem;
}

.blog-pagination {
    margin-top: 2rem;
}

.blog-article {
    padding: 4rem 0 4.5rem;
}

.blog-article-hero {
    max-width: 920px;
    margin: 0 auto 2rem;
    text-align: center;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-article-meta a {
    color: inherit;
    text-decoration: none;
}

.blog-article-hero h1 {
    margin-top: 0.8rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 0.98;
}

.blog-article-hero p {
    max-width: 740px;
    margin: 1rem auto 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-article-image {
    overflow: hidden;
    margin: 0 0 2.5rem;
    border-radius: 18px;
    aspect-ratio: 16 / 7;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 820px);
    gap: 3rem;
    justify-content: center;
    align-items: start;
}

.blog-article-side {
    position: sticky;
    top: 96px;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
}

.blog-article-side span {
    color: var(--brand-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-article-side strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
}

.blog-article-side a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.82rem;
    text-decoration: none;
}

.blog-article-content {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin: 2rem 0 0.7rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

.blog-article-content h2 {
    font-size: 2.1rem;
}

.blog-article-content h3 {
    font-size: 1.65rem;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol {
    margin: 0.85rem 0 0;
}

.blog-article-content ul,
.blog-article-content ol {
    padding-left: 1.25rem;
}

.blog-article-content a {
    color: var(--ink);
    font-weight: 600;
}

.blog-related {
    padding: 0 0 4.5rem;
}

.blog-related-heading {
    margin-bottom: 1.25rem;
}

.blog-related-heading h2 {
    margin-top: 0.35rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.home-blog-section {
    max-width: 1420px;
    margin: 0 auto;
    padding: 5rem 0;
}

.home-blog-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.home-blog-heading .section-title {
    margin-bottom: 0;
}

.home-blog-link {
    display: inline-flex;
    flex: 0 0 auto;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 0.72rem 1.1rem;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-blog-link:hover {
    background: var(--ink);
    color: var(--white);
}

html[data-theme="dark"] nav {
    background: rgba(23, 21, 41, 0.94);
    border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .pricing-page-header,
html[data-theme="dark"] .faq-page-header,
html[data-theme="dark"] .contact-page-header,
html[data-theme="dark"] .blog-page-header,
html[data-theme="dark"] .policy-hero {
    background: #171529;
}

html[data-theme="dark"] .pricing-page-header h1,
html[data-theme="dark"] .faq-page-header h1,
html[data-theme="dark"] .contact-page-header h1,
html[data-theme="dark"] .blog-page-header h1,
html[data-theme="dark"] .policy-hero h1 {
    color: #f7f3ff;
}

html[data-theme="dark"] .pricing-page-header h1 em,
html[data-theme="dark"] .pricing-page-header .page-header-eyebrow,
html[data-theme="dark"] .faq-page-header h1 em,
html[data-theme="dark"] .faq-page-header .page-header-eyebrow,
html[data-theme="dark"] .contact-page-header h1 em,
html[data-theme="dark"] .contact-page-header .page-header-eyebrow,
html[data-theme="dark"] .blog-page-header h1 em,
html[data-theme="dark"] .blog-page-header .page-header-eyebrow,
html[data-theme="dark"] .policy-hero h1 em {
    color: #b9a9ff;
}

html[data-theme="dark"] .pricing-page-header .page-header-meta,
html[data-theme="dark"] .faq-page-header .page-header-meta,
html[data-theme="dark"] .contact-page-header .page-header-meta,
html[data-theme="dark"] .blog-page-header .page-header-meta,
html[data-theme="dark"] .policy-hero p {
    color: #c9c0ee;
}

html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .btn-hero,
html[data-theme="dark"] .avatar-badge,
html[data-theme="dark"] .member-card-lock,
html[data-theme="dark"] .btn-interest {
    color: #ffffff;
}

html[data-theme="dark"] .btn-primary:hover,
html[data-theme="dark"] .btn-hero:hover,
html[data-theme="dark"] .btn-interest:hover,
html[data-theme="dark"] .btn-interest:focus {
    color: #151325;
}

html[data-theme="dark"] .bg-soft,
html[data-theme="dark"] main,
html[data-theme="dark"] .section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .blog-page-header,
html[data-theme="dark"] .blog-wrap,
html[data-theme="dark"] .blog-article,
html[data-theme="dark"] .blog-related,
html[data-theme="dark"] .profile-page,
html[data-theme="dark"] .profile-page .profile-header,
html[data-theme="dark"] .about-hero,
html[data-theme="dark"] .register-simple-theme,
html[data-theme="dark"] .auth-flow {
    background: var(--cream);
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .testimonials-section {
    background: linear-gradient(180deg, #11101c 0%, #171529 100%);
}

html[data-theme="dark"] .hero-title,
html[data-theme="dark"] .hero-title em,
html[data-theme="dark"] .member-card-name,
html[data-theme="dark"] .member-card-meta {
    color: #b9a9ff;
}

html[data-theme="dark"] .hero-eyebrow {
    background: #211c3d;
    color: #d5ccff;
}

html[data-theme="dark"] .hero-sub,
html[data-theme="dark"] .section-intro,
html[data-theme="dark"] .section-closing {
    color: #c9c0ee;
}

html[data-theme="dark"] #how-it-works.section,
html[data-theme="dark"] .why-choose,
html[data-theme="dark"] .nearby-cities {
    background: #211c3d !important;
}

html[data-theme="dark"] #how-it-works .section-title,
html[data-theme="dark"] .why-title,
html[data-theme="dark"] .nearby-cities-title {
    color: #f7f3ff;
}

html[data-theme="dark"] .step-card {
    background: #171529;
    border-color: var(--border);
}

html[data-theme="dark"] .step-card:hover {
    background: #241f42;
}

html[data-theme="dark"] .step-num,
html[data-theme="dark"] .step-card a {
    color: #b9a9ff;
}

html[data-theme="dark"] .step-card h3,
html[data-theme="dark"] .why-item h3 {
    color: #f7f3ff;
}

html[data-theme="dark"] .step-card p,
html[data-theme="dark"] .why-item p {
    color: #c9c0ee;
}

html[data-theme="dark"] .why-arrow,
html[data-theme="dark"] .nearby-cities-list a {
    background: #b9a9ff;
    color: #151325;
}

html[data-theme="dark"] .why-arrow:hover,
html[data-theme="dark"] .nearby-cities-list a:hover {
    background: #d5ccff;
    color: #151325;
}

html[data-theme="dark"] .testimonial-card:hover {
    background: #241f42;
}

html[data-theme="dark"] .testimonial-card:hover .testimonial-text,
html[data-theme="dark"] .testimonial-card:hover .testimonial-name,
html[data-theme="dark"] .testimonial-card:hover .testimonial-role {
    color: #f7f3ff;
}

html[data-theme="dark"] .home-blog-section,
html[data-theme="dark"] .faq-section {
    background: #11101c;
}

html[data-theme="dark"] .home-blog-section .section-title,
html[data-theme="dark"] .faq-section .section-title,
html[data-theme="dark"] .blog-card h2 a,
html[data-theme="dark"] .faq-question h3,
html[data-theme="dark"] .faq-cta-box h3 {
    color: #f7f3ff;
}

html[data-theme="dark"] .blog-card p,
html[data-theme="dark"] .faq-answer,
html[data-theme="dark"] .faq-cta-box p {
    color: #c9c0ee;
}

html[data-theme="dark"] .home-blog-link,
html[data-theme="dark"] .blog-read-link {
    border-color: #b9a9ff;
    color: #b9a9ff;
}

html[data-theme="dark"] .faq-cta-box,
html[data-theme="dark"] .faq-right > div:last-child {
    background: #171529 !important;
    border-color: var(--border) !important;
}

html[data-theme="dark"] .faq-right > div:last-child p {
    color: #c9c0ee !important;
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .member-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .about-value-card,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .blog-featured,
html[data-theme="dark"] .checkout-card,
html[data-theme="dark"] .account-card,
html[data-theme="dark"] .register-simple-card,
html[data-theme="dark"] .profile-page .card,
html[data-theme="dark"] .profile-page .s-card,
html[data-theme="dark"] .modal-content {
    background: #171529;
    border-color: var(--border);
    color: var(--ink-mid);
}

html[data-theme="dark"] .contact-captcha {
    background: #211c3d;
    border-color: var(--border);
}

html[data-theme="dark"] .contact-captcha-icon,
html[data-theme="dark"] .contact-captcha-input,
html[data-theme="dark"] .contact-wrap .field {
    background: #171529;
    border-color: var(--border);
    color: var(--ink-mid);
}

html[data-theme="dark"] .about-page,
html[data-theme="dark"] .about-story,
html[data-theme="dark"] .about-trust {
    background: #11101c;
}

html[data-theme="dark"] .about-hero,
html[data-theme="dark"] .about-process {
    background: #171529;
}

html[data-theme="dark"] .about-values {
    background: #211c3d;
}

html[data-theme="dark"] .about-kicker,
html[data-theme="dark"] .about-value-card span,
html[data-theme="dark"] .about-process-step span {
    color: #b9a9ff;
}

html[data-theme="dark"] .about-hero-copy h1,
html[data-theme="dark"] .about-process .about-section-heading h2,
html[data-theme="dark"] .about-process-step h3,
html[data-theme="dark"] .about-cta-copy h2 {
    color: #f7f3ff;
}

html[data-theme="dark"] .about-hero-copy h1 em,
html[data-theme="dark"] .about-process .about-kicker,
html[data-theme="dark"] .about-cta-copy .about-kicker {
    color: #d5ccff;
}

html[data-theme="dark"] .about-hero-copy p,
html[data-theme="dark"] .about-process-step p,
html[data-theme="dark"] .about-cta-copy p {
    color: #c9c0ee;
}

html[data-theme="dark"] .about-section-copy h2,
html[data-theme="dark"] .about-section-heading h2,
html[data-theme="dark"] .about-trust-copy h2,
html[data-theme="dark"] .about-value-card h3,
html[data-theme="dark"] .about-trust-points strong,
html[data-theme="dark"] .about-hero-note strong {
    color: #f7f3ff;
}

html[data-theme="dark"] .about-story-text,
html[data-theme="dark"] .about-trust-copy p,
html[data-theme="dark"] .about-value-card p,
html[data-theme="dark"] .about-trust-points span,
html[data-theme="dark"] .about-hero-note span {
    color: #c9c0ee;
}

html[data-theme="dark"] .about-hero-note,
html[data-theme="dark"] .about-value-card {
    background: #171529;
    border: 1px solid var(--border);
}

html[data-theme="dark"] .about-value-card:hover {
    background: #241f42;
}

html[data-theme="dark"] .about-btn-primary,
html[data-theme="dark"] .about-btn-light {
    background: #b9a9ff;
    border-color: #b9a9ff;
    color: #151325;
}

html[data-theme="dark"] .about-btn-primary:hover,
html[data-theme="dark"] .about-btn-light:hover {
    background: #d5ccff;
    border-color: #d5ccff;
    color: #151325;
}

html[data-theme="dark"] .about-btn-outline {
    border-color: rgba(247, 243, 255, 0.42);
    color: #f7f3ff;
}

html[data-theme="dark"] .about-btn-outline:hover {
    border-color: #f7f3ff;
    color: #f7f3ff;
}

html[data-theme="dark"] .faq-page {
    background: #11101c;
}

html[data-theme="dark"] .faq-page .section-eyebrow,
html[data-theme="dark"] .faq-tab-btn.active {
    color: #b9a9ff;
}

html[data-theme="dark"] .faq-page-title {
    color: #f7f3ff;
}

html[data-theme="dark"] .faq-tab-btn {
    background: #171529;
    border-color: var(--border);
    color: #c9c0ee;
}

html[data-theme="dark"] .faq-tab-btn:hover,
html[data-theme="dark"] .faq-tab-btn.active {
    background: #211c3d;
    border-color: #b9a9ff;
}

html[data-theme="dark"] .faq-page .faq-item,
html[data-theme="dark"] .faq-page .faq-item:first-child,
html[data-theme="dark"] .faq-page .faq-panel .faq-item:last-child {
    background: #171529 !important;
    border-color: var(--border) !important;
}

html[data-theme="dark"] .faq-page .faq-item.open,
html[data-theme="dark"] .faq-page .faq-panel .faq-item.open:last-child {
    background: #211c3d !important;
    border-color: #b9a9ff !important;
}

html[data-theme="dark"] .faq-page .faq-question h3,
html[data-theme="dark"] .faq-page .faq-item.open .faq-question h3 {
    color: #f7f3ff !important;
}

html[data-theme="dark"] .faq-page .faq-answer {
    color: #c9c0ee !important;
}

html[data-theme="dark"] .faq-page .faq-toggle,
html[data-theme="dark"] .faq-page .faq-item.open .faq-toggle {
    background: #11101c;
    color: #f7f3ff;
}

html[data-theme="dark"] .pricing-wrap {
    background: #11101c;
}

html[data-theme="dark"] .pricing-heading h2,
html[data-theme="dark"] .pricing-empty h2,
html[data-theme="dark"] .pricing-support-intro h2,
html[data-theme="dark"] .pricing-community-copy h2,
html[data-theme="dark"] .pricing-assurance strong,
html[data-theme="dark"] .pricing-wrap .plan-name,
html[data-theme="dark"] .plan-duration,
html[data-theme="dark"] .support-plan h3,
html[data-theme="dark"] .support-plan-price {
    color: #f7f3ff;
}

html[data-theme="dark"] .pricing-kicker,
html[data-theme="dark"] .pricing-wrap .plan-price,
html[data-theme="dark"] .support-plan-tag,
html[data-theme="dark"] .support-plan-number,
html[data-theme="dark"] .pricing-wrap .plan li::before {
    color: #b9a9ff;
}

html[data-theme="dark"] .pricing-heading p,
html[data-theme="dark"] .pricing-wrap .plan-tag,
html[data-theme="dark"] .pricing-wrap .plan-desc,
html[data-theme="dark"] .pricing-wrap .plan li,
html[data-theme="dark"] .pricing-support-intro p,
html[data-theme="dark"] .support-plan p,
html[data-theme="dark"] .pricing-community-copy p,
html[data-theme="dark"] .pricing-community-copy li,
html[data-theme="dark"] .pricing-assurance span,
html[data-theme="dark"] .pricing-empty p {
    color: #c9c0ee;
}

html[data-theme="dark"] .pricing-wrap .plan,
html[data-theme="dark"] .pricing-wrap .plan.current,
html[data-theme="dark"] .pricing-community,
html[data-theme="dark"] .pricing-empty,
html[data-theme="dark"] .pricing-assurance {
    background: #171529;
    border-color: var(--border);
    box-shadow: none;
}

html[data-theme="dark"] .pricing-wrap .plan:hover,
html[data-theme="dark"] .pricing-wrap .plan.current:hover {
    border-color: #b9a9ff;
    box-shadow: 0 18px 44px rgba(7, 6, 18, 0.28);
}

html[data-theme="dark"] .pricing-wrap .plan.highlight,
html[data-theme="dark"] .pricing-wrap .plan.current {
    border-color: #b9a9ff;
}

html[data-theme="dark"] .pricing-wrap .plan-tag,
html[data-theme="dark"] .support-plan-notes span,
html[data-theme="dark"] .pricing-methods span {
    background: #211c3d;
    border-color: var(--border);
    color: #d5ccff;
}

html[data-theme="dark"] .pricing-support {
    background: #211c3d;
}

html[data-theme="dark"] .support-plan {
    background: #171529;
    border: 1px solid var(--border);
}

html[data-theme="dark"] .support-plan:hover {
    background: #241f42;
}

html[data-theme="dark"] .support-plan-action,
html[data-theme="dark"] .pricing-wrap .plan.highlight .cta,
html[data-theme="dark"] .pricing-wrap .plan .cta-current {
    background: #b9a9ff;
    border-color: #b9a9ff;
    color: #151325;
}

html[data-theme="dark"] .support-plan-action:hover,
html[data-theme="dark"] .pricing-wrap .plan .cta:hover {
    background: #d5ccff;
    border-color: #d5ccff;
    color: #151325;
}

html[data-theme="dark"] .support-plan-action.is-current {
    background: #211c3d;
    border-color: var(--border);
    color: #d5ccff;
}

html[data-theme="dark"] .pricing-wrap .plan .cta,
html[data-theme="dark"] .pricing-empty .cta {
    border-color: #b9a9ff;
    color: #b9a9ff;
}

html[data-theme="dark"] .login-page {
    background: #11101c;
}

html[data-theme="dark"] .login-page::before,
html[data-theme="dark"] .login-page::after {
    border-color: rgba(185, 169, 255, 0.12);
}

html[data-theme="dark"] .login-card {
    background: #171529;
    border-color: var(--border);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .login-card-header h1,
html[data-theme="dark"] .login-field label {
    color: #f7f3ff;
}

html[data-theme="dark"] .login-card-header p,
html[data-theme="dark"] .login-register-link,
html[data-theme="dark"] .login-remember,
html[data-theme="dark"] .login-forgot,
html[data-theme="dark"] .login-input-icon,
html[data-theme="dark"] .login-password-toggle {
    color: #c9c0ee;
}

html[data-theme="dark"] .login-card a {
    color: #b9a9ff;
}

html[data-theme="dark"] .login-input {
    background: #211c3d;
    border-color: var(--border);
    color: #f7f3ff;
}

html[data-theme="dark"] .login-input::placeholder {
    color: #9287bc;
}

html[data-theme="dark"] .login-input:focus {
    border-color: #b9a9ff;
    box-shadow: 0 0 0 3px rgba(185, 169, 255, 0.14);
}

html[data-theme="dark"] .login-submit {
    background: #b9a9ff;
    border-color: #b9a9ff;
    color: #151325;
}

html[data-theme="dark"] .login-submit:hover {
    background: #d5ccff;
    border-color: #d5ccff;
    color: #151325;
}

html[data-theme="dark"] .card-header,
html[data-theme="dark"] .profile-page .card-header,
html[data-theme="dark"] .profile-page .s-card-header,
html[data-theme="dark"] .checkout-card-header,
html[data-theme="dark"] .account-card-header {
    background: rgba(185, 169, 255, 0.09);
    border-color: var(--border);
}

html[data-theme="dark"] .profile-page .meta-chip,
html[data-theme="dark"] .meta-chip,
html[data-theme="dark"] .badge.bg-light,
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] .input-group-text {
    background-color: #211c3d;
    border-color: var(--border);
    color: var(--ink-mid);
}

html[data-theme="dark"] .form-control::placeholder {
    color: #9287bc;
}

html[data-theme="dark"] .table,
html[data-theme="dark"] .details-table,
html[data-theme="dark"] .table td,
html[data-theme="dark"] .table th {
    color: var(--ink-mid);
    border-color: var(--border);
}

html[data-theme="dark"] .alert-warning,
html[data-theme="dark"] .alert-info,
html[data-theme="dark"] .alert-success,
html[data-theme="dark"] .alert-danger {
    background-color: #211c3d;
    border-color: var(--border);
    color: var(--ink-mid);
}

html[data-theme="dark"] footer {
    background: #171529;
    border-top-color: var(--border);
}

html[data-theme="dark"] .footer-social a {
    background: #211c3d;
    border-color: var(--border);
}

html[data-theme="dark"] .home-blog-link:hover,
html[data-theme="dark"] .footer-social a:hover {
    color: #151325;
}

@media (max-width: 980px) {
    .blog-page-header {
        padding: 3.8rem 1rem 3.4rem;
    }

    .blog-wrap,
    .blog-article,
    .blog-related {
        width: min(100% - 2rem, 720px);
    }

    .blog-wrap,
    .blog-article {
        padding: 2.6rem 0 3rem;
    }

    .blog-featured,
    .blog-grid,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 260px;
    }

    .blog-article-side {
        position: static;
        border-left: 0;
        border-bottom: 1px solid var(--border);
        padding: 0 0 1rem;
    }

    .blog-article-image {
        aspect-ratio: 16 / 10;
    }

    .home-blog-section {
        padding: 3rem 1rem;
    }

    .home-blog-heading {
        display: block;
    }

    .home-blog-link {
        margin-top: 1rem;
    }
}
