:root {
    --color-cotton: #ffc6d3;
    --color-lavender: #dccbf7;
    --color-cream: #fff7e8;
    --color-mint: #c8f0d4;
    --color-peach: #eac9b7;
    --color-ink: #2d2a32;
    --color-ink-soft: #5c5663;
    --color-white: #ffffff;
    --font-display: "DM Sans", system-ui, sans-serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
    --fs-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
    --fs-md: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --fs-xl: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
    --fs-2xl: clamp(1.75rem, 1.35rem + 1.4vw, 2.25rem);
    --fs-hero: clamp(2.25rem, 1.6rem + 2.5vw, 3.75rem);
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --shadow-sm: 0 2px 8px rgba(45, 42, 50, 0.08);
    --shadow-md: 0 8px 24px rgba(45, 42, 50, 0.12);
    --shadow-lg: 0 16px 48px rgba(45, 42, 50, 0.14);
    --shadow-glow: 0 12px 40px rgba(220, 203, 247, 0.55), 0 0 0 1px rgba(255, 198, 211, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --header-h: 4.25rem;
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 247, 232, 0.72);
    --glass-border: rgba(255, 255, 255, 0.55);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    color: var(--color-ink);
    background: var(--color-cream);
    overflow-x: hidden;
}

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

a {
    color: var(--color-ink);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--color-ink-soft);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-md);
}

h1 {
    font-size: var(--fs-hero);
}

h2 {
    font-size: var(--fs-2xl);
}

h3 {
    font-size: var(--fs-xl);
}

p {
    margin: 0 0 var(--space-md);
}

ul {
    margin: 0 0 var(--space-md);
    padding-left: 1.25rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-ink);
    color: var(--color-cream);
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: var(--space-md);
    top: var(--space-md);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-lg);
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--color-ink);
}

.brand:hover {
    color: var(--color-ink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: linear-gradient(145deg, rgba(255, 198, 211, 0.45), rgba(220, 203, 247, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    z-index: 120;
}

.nav-toggle:hover {
    box-shadow: var(--shadow-md);
}

.nav-toggle--burger .nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: var(--color-ink);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

.nav-toggle--burger.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle--burger.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle--burger.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 108;
    background: rgba(45, 42, 50, 0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
}

.site-nav a {
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
}

.site-nav a:hover {
    text-decoration: underline;
}

main {
    display: block;
}

.section {
    padding: var(--space-3xl) 0;
}

.section--tight {
    padding: var(--space-2xl) 0;
}

.section__inner {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
}

.section__label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-ink-soft);
    margin-bottom: var(--space-sm);
}

.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--color-cream);
    overflow: hidden;
}

.hero--creative {
    background: linear-gradient(165deg, #1a0f24 0%, #2d1f33 28%, #4a3d52 55%, var(--color-lavender) 78%, var(--color-cream) 100%);
    background-size: 100% 140%;
    animation: heroBgShift 18s ease-in-out infinite alternate;
}

.hero__aurora {
    position: absolute;
    inset: -20% -10% 40% -10%;
    background: conic-gradient(from 180deg at 50% 50%, rgba(255, 198, 211, 0.65), rgba(220, 203, 247, 0.5), rgba(200, 240, 212, 0.45), rgba(255, 198, 211, 0.65));
    filter: blur(48px);
    opacity: 0.85;
    animation: auroraSpin 28s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 70%);
    animation: meshDrift 22s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hero__blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    animation: blobFloat 14s ease-in-out infinite;
}

.hero__blob--a {
    width: min(280px, 55vw);
    height: min(280px, 55vw);
    background: var(--color-cotton);
    top: -8%;
    left: -5%;
}

.hero__blob--b {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    background: var(--color-mint);
    bottom: 5%;
    right: -5%;
    animation-delay: -4s;
}

.hero__blob--c {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    background: var(--color-lavender);
    top: 40%;
    left: 35%;
    animation-delay: -7s;
}

.hero__blob--d {
    width: min(140px, 35vw);
    height: min(140px, 35vw);
    background: var(--color-peach);
    bottom: 25%;
    left: 10%;
    animation-delay: -1s;
    animation-duration: 14s;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero__pt {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 12px rgba(255, 198, 211, 0.9);
    animation: particleRise 8s ease-in-out infinite;
}

.hero__pt:nth-child(1) {
    left: 12%;
    bottom: 15%;
    animation-delay: 0s;
}

.hero__pt:nth-child(2) {
    left: 28%;
    bottom: 8%;
    animation-delay: -1.2s;
    width: 4px;
    height: 4px;
}

.hero__pt:nth-child(3) {
    left: 55%;
    bottom: 22%;
    animation-delay: -2.4s;
}

.hero__pt:nth-child(4) {
    left: 72%;
    bottom: 12%;
    animation-delay: -3.1s;
}

.hero__pt:nth-child(5) {
    left: 88%;
    bottom: 30%;
    animation-delay: -0.8s;
}

.hero__pt:nth-child(6) {
    left: 40%;
    bottom: 5%;
    animation-delay: -4s;
    opacity: 0.7;
}

.hero__pt:nth-child(7) {
    left: 65%;
    bottom: 35%;
    animation-delay: -7s;
}

.hero__pt:nth-child(8) {
    left: 20%;
    bottom: 40%;
    animation-delay: -5.5s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(12px, -18px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.96);
    }
}

@keyframes gradientPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes heroBgShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

@keyframes auroraSpin {
    from {
        transform: rotate(0deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes meshDrift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-24px, -24px);
    }
}

@keyframes particleRise {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-120px) scale(1.2);
        opacity: 1;
    }
}

@keyframes titleShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpinRev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes productBob {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-14px) scale(1.02);
    }
}

@keyframes sparkPulse {

    0%,
    100% {
        transform: scale(0.6);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes pillPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 198, 211, 0.55);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 198, 211, 0);
    }
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    align-items: stretch;
}

.hero__grid--creative {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .hero__grid--creative {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: start;
        column-gap: var(--space-2xl);
    }

    .hero__column--form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 899px) {
    .hero__column--visual {
        order: -1;
    }
}

.hero__column--copy {
    min-width: 0;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md) var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink);
    background: rgba(255, 247, 232, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    animation: pillPulse 3.6s ease-in-out infinite;
}

.hero__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-mint);
    animation: pillPulse 2s ease-in-out infinite;
}

.hero__title {
    color: var(--color-cream);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    margin-bottom: var(--space-md);
}

.hero__title-line {
    display: block;
    animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.22s;
}

.hero__title-line--accent {
    font-size: 0.92em;
    margin-top: 0.15em;
    background: linear-gradient(90deg, var(--color-cream), var(--color-cotton), var(--color-mint), var(--color-cream));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both, titleShimmer 6s linear infinite;
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero__lead {
    font-size: var(--fs-lg);
    color: rgba(255, 247, 232, 0.92);
    max-width: 38ch;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-md) 0 var(--space-lg);
}

.hero__chip {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: chipPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero__chip:nth-child(1) {
    animation-delay: 0.35s;
}

.hero__chip:nth-child(2) {
    animation-delay: 0.5s;
}

.hero__chip:nth-child(3) {
    animation-delay: 0.65s;
}

.hero__chip:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-md);
}

@keyframes chipPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.92);
    }

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

.hero__price-block {
    margin-top: var(--space-md);
}

.hero__price-inner {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__price-note {
    margin: var(--space-xs) 0 0;
    font-size: var(--fs-xs);
    color: rgba(255, 247, 232, 0.75);
}

.hero__column--visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__stage {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.hero__orbit--slow {
    inset: 0;
    animation: orbitSpin 48s linear infinite;
}

.hero__orbit--mid {
    inset: 8%;
    border-style: dashed;
    border-color: rgba(220, 203, 247, 0.65);
    animation: orbitSpinRev 32s linear infinite;
}

.hero__orbit--fast {
    inset: 18%;
    border-radius: 45% 55% 50% 50%;
    border-color: rgba(200, 240, 212, 0.5);
    animation: orbitSpin 18s linear infinite;
}

.hero__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, rgba(255, 198, 211, 0.4) 100%);
    animation: sparkPulse 2.4s ease-in-out infinite;
}

.hero__spark--1 {
    top: 12%;
    right: 18%;
    animation-delay: 0s;
}

.hero__spark--2 {
    bottom: 18%;
    left: 10%;
    animation-delay: -0.8s;
}

.hero__spark--3 {
    top: 50%;
    right: 6%;
    animation-delay: -1.2s;
    width: 8px;
    height: 8px;
}

.hero__figure--product {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 320px;
    animation: productBob 5.5s ease-in-out infinite;
}

.hero__figure--product img {
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 40px rgba(220, 203, 247, 0.55));
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.hero--creative .rating {
    color: var(--color-cream);
}

.hero--creative .rating__stars {
    filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.8));
}

.hero--creative .hero__figure--badge img {
    filter: drop-shadow(var(--shadow-md));
    border-radius: var(--radius-sm);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 700;
    font-size: var(--fs-sm);
}

.rating__stars {
    color: #c9a227;
    letter-spacing: 0.05em;
}

.price {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--color-ink);
}

.price--old {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-ink-soft);
    text-decoration: line-through;
    opacity: 0.85;
}

.hero--creative .hero__price-inner .price {
    color: var(--color-cream);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.hero--creative .hero__price-inner .price--old {
    color: rgba(255, 247, 232, 0.55);
}

.hero__figure {
    margin: 0;
    justify-self: center;
    max-width: 400px;
}

.hero__figure--badge {
    max-width: 120px;
    margin: 0;
}

.hero__figure img {
    filter: drop-shadow(var(--shadow-lg));
}

.order-card--hero {
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 60px rgba(45, 42, 50, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: orderCardGlow 5s ease-in-out infinite;
}

@keyframes orderCardGlow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(45, 42, 50, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    50% {
        box-shadow: 0 24px 72px rgba(220, 203, 247, 0.35), 0 0 0 1px rgba(255, 198, 211, 0.45) inset;
    }
}

.hero--creative .reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .hero--creative,
    .hero__aurora,
    .hero__mesh,
    .hero__blob,
    .hero__pt,
    .hero__pill,
    .hero__pulse,
    .hero__title-line,
    .hero__title-line--accent,
    .hero__chip,
    .hero__orbit,
    .hero__spark,
    .hero__figure--product,
    .order-card--hero {
        animation: none !important;
    }

    .hero--creative {
        background: linear-gradient(180deg, #2d1f33 0%, var(--color-lavender) 50%, var(--color-cream) 100%);
    }

    .hero__title-line,
    .hero__title-line--accent,
    .hero__chip {
        opacity: 1;
        transform: none;
    }

    .hero__title-line--accent {
        color: var(--color-cream);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }
}

.order-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: var(--space-lg);
}

.order-card h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 42, 50, 0.15);
    font-family: inherit;
    font-size: var(--fs-md);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-lavender);
    box-shadow: 0 0 0 3px rgba(220, 203, 247, 0.45);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group--checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-group--checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: var(--fs-sm);
}

.field-error {
    display: none;
    font-size: var(--fs-xs);
    color: #a12c2c;
    margin-top: var(--space-xs);
    font-weight: 600;
}

.form-group.is-invalid .field-error {
    display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #c44;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.85rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-md);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
    will-change: transform;
}

.btn--primary {
    background: linear-gradient(135deg, #ff8fab 0%, var(--color-cotton) 50%, var(--color-lavender) 100%);
    color: var(--color-ink);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    box-shadow: 0 14px 44px rgba(255, 143, 171, 0.55), 0 0 0 1px rgba(220, 203, 247, 0.5);
}

.btn--secondary {
    background: var(--color-ink);
    color: var(--color-cream);
}

.btn--secondary:hover {
    background: #1a1820;
}

.btn--ghost {
    background: transparent;
    color: var(--color-ink);
    border: 2px solid var(--color-ink);
}

.btn--ghost:hover {
    background: rgba(45, 42, 50, 0.06);
}

.btn:focus-visible {
    outline: 3px solid var(--color-mint);
    outline-offset: 2px;
}

.bento {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }

    .bento__item--wide {
        grid-column: span 2;
    }

    .bento__item--tall {
        grid-row: span 2;
    }
}

.bento__item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(220, 203, 247, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform-style: preserve-3d;
}

.bento__item:hover {
    box-shadow: var(--shadow-md);
}

.bento__item h3 {
    margin-top: 0;
    font-size: var(--fs-lg);
}

.bento__item p {
    margin-bottom: 0;
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
}

.bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1.65rem;
    color: var(--color-ink);
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bento__item:hover .bento__icon {
    transform: scale(1.06);
    box-shadow: var(--shadow-sm);
}

.bento__icon--energy {
    background: linear-gradient(145deg, var(--color-cotton), var(--color-lavender));
}

.bento__icon--muscle {
    background: linear-gradient(145deg, var(--color-peach), var(--color-cotton));
}

.bento__icon--wellness {
    background: linear-gradient(145deg, var(--color-mint), var(--color-lavender));
}

.bento__icon--vitamins {
    background: linear-gradient(145deg, var(--color-lavender), var(--color-cream));
    border: 1px solid rgba(220, 203, 247, 0.6);
}

.bento__icon i {
    line-height: 1;
}

.spotlight {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(200, 240, 212, 0.25) 100%);
}

.ingredient-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .ingredient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .ingredient-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ingredient-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    min-height: 160px;
    border: 1px solid rgba(234, 201, 183, 0.6);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform-style: preserve-3d;
}

.ingredient-card__front,
.ingredient-card__back {
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.ingredient-card__back {
    position: absolute;
    inset: 0;
    padding: var(--space-lg);
    background: linear-gradient(160deg, var(--color-mint), var(--color-lavender));
    opacity: 0;
    display: flex;
    align-items: center;
    font-size: var(--fs-sm);
}

.ingredient-card:hover .ingredient-card__front {
    opacity: 0;
}

.ingredient-card:hover .ingredient-card__back,
.ingredient-card:focus-within .ingredient-card__back {
    opacity: 1;
}

.ingredient-card:focus-within .ingredient-card__front {
    opacity: 0;
}

.ingredient-card:focus {
    outline: 3px solid var(--color-mint);
    outline-offset: 3px;
}

.ingredient-card h3 {
    font-size: var(--fs-md);
    margin: 0 0 var(--space-xs);
}

.trust-row {
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .trust-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-pill {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(220, 203, 247, 0.4);
}

.trust-pill__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: var(--color-ink);
    line-height: 1;
}

.trust-pill__icon--lab {
    background: linear-gradient(145deg, var(--color-cotton), var(--color-lavender));
}

.trust-pill__icon--facility {
    background: linear-gradient(145deg, var(--color-lavender), var(--color-peach));
}

.trust-pill__icon--natural {
    background: linear-gradient(145deg, var(--color-mint), var(--color-cream));
    border: 1px solid rgba(200, 240, 212, 0.65);
}

.trust-pill__icon i {
    line-height: 1;
}

.trust-pill h3 {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
}

.trust-pill p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
}

.icon-anim {
    animation: iconPulse 3.5s ease-in-out infinite;
}

.icon-anim--delay {
    animation-delay: 0.6s;
}

.icon-anim--delay2 {
    animation-delay: 1.2s;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: var(--space-xl) 0;
}

.carousel__track-wrap {
    overflow: hidden;
    margin: 0 -0.5rem;
    width: 100%;
}

.carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .carousel__slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 960px) {
    .carousel__slide {
        flex: 0 0 33.333%;
    }
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 198, 211, 0.45);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform-style: preserve-3d;
}

.product-card img {
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.product-card h3 {
    font-size: var(--fs-md);
}

.carousel__controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-ink);
    background: var(--color-white);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel__btn:hover {
    background: var(--color-lavender);
}

.spec-grid,
.benefit-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {

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

.spec-item,
.benefit-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(234, 201, 183, 0.5);
    box-shadow: var(--shadow-sm);
}

.two-col {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 800px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.review-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 203, 247, 0.5);
    box-shadow: var(--shadow-sm);
}

.review-card cite {
    display: block;
    margin-top: var(--space-md);
    font-style: normal;
    font-weight: 700;
    font-size: var(--fs-sm);
}

.faq details {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(45, 42, 50, 0.08);
}

.faq summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq details[open] summary {
    margin-bottom: var(--space-sm);
}

.cta-band {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(135deg, var(--color-lavender), var(--color-cotton));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.cta-band .btn {
    margin-top: var(--space-md);
}

.disclaimer-block {
    font-size: var(--fs-xs);
    color: var(--color-ink-soft);
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(45, 42, 50, 0.2);
    margin-top: var(--space-xl);
}

.section--compliance {
    padding: var(--space-lg) 0;
    background: linear-gradient(180deg, rgba(45, 42, 50, 0.04) 0%, rgba(200, 240, 212, 0.12) 100%);
    border-top: 1px solid rgba(45, 42, 50, 0.08);
    border-bottom: 1px solid rgba(45, 42, 50, 0.08);
}

.compliance-strip {
    max-width: 900px;
    margin-inline: auto;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(234, 201, 183, 0.55);
    box-shadow: var(--shadow-sm);
}

.compliance-strip__title {
    font-size: var(--fs-md);
    margin: 0 0 var(--space-md);
    color: var(--color-ink);
}

.compliance-strip p {
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
    margin: 0 0 var(--space-sm);
}

.compliance-strip p:last-child {
    margin-bottom: 0;
}

.compliance-strip__fda {
    padding: var(--space-sm);
    background: rgba(220, 203, 247, 0.2);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-lavender);
}

.hero__trust-note {
    margin: 0;
    max-width: 28ch;
    font-size: var(--fs-xs);
    color: rgba(255, 247, 232, 0.88);
    line-height: 1.45;
}

.hero__meta {
    align-items: flex-start;
}

.hero__price-suffix {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: rgba(255, 247, 232, 0.8);
    align-self: flex-end;
    padding-bottom: 0.2em;
}

.testimonial-disclaimer {
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
    max-width: 62ch;
    margin-bottom: var(--space-md);
}

.site-footer {
    background: var(--color-ink);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
}

.site-footer a {
    color: var(--color-cream);
}

.site-footer a:hover {
    color: var(--color-cotton);
}

.footer__grid {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
    display: grid;
    gap: var(--space-xl);
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer__legal {
    font-size: var(--fs-xs);
    line-height: 1.5;
    opacity: 0.92;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 247, 232, 0.2);
}

.footer__legal p {
    margin: 0 0 var(--space-sm);
}

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

.footer-nav li {
    margin-bottom: var(--space-sm);
}

.footer-copy {
    font-size: var(--fs-sm);
    margin-top: var(--space-lg);
}

.cookie-banner {
    position: fixed;
    z-index: 200;
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    max-width: 520px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

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

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(45, 42, 50, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__dialog {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: rgba(255, 247, 232, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.modal__title {
    margin: 0;
    font-size: var(--fs-xl);
}

.cookie-setting__hint {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
}

.cookie-save-btn {
    margin-top: var(--space-md);
}

.footer__brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-lg);
    margin: 0 0 var(--space-sm);
    color: inherit;
}

.footer__tagline {
    font-size: var(--fs-sm);
    margin: 0;
}

.modal__close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: var(--space-xs);
}

.cookie-setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(45, 42, 50, 0.1);
}

.switch {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 28px;
    transition: background var(--transition-fast);
}

.switch__slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.switch input:checked+.switch__slider {
    background: var(--color-mint);
}

.switch input:checked+.switch__slider::before {
    transform: translateX(20px);
}

.switch input:disabled+.switch__slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.reveal {
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.policy-page h1 {
    margin-bottom: var(--space-lg);
}

.policy-page h2 {
    font-size: var(--fs-xl);
    margin-top: var(--space-xl);
}

.policy-page .section__inner {
    max-width: 760px;
}

.policy-meta {
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
    margin-bottom: var(--space-xl);
}

.thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thankyou h1 {
    margin-bottom: var(--space-md);
}

@media (max-width: 899px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(20rem, 88vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-xl);
        background: rgba(255, 247, 232, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -12px 0 40px rgba(45, 42, 50, 0.12);
        transform: translateX(105%);
        opacity: 1;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 115;
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .site-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .site-nav a {
        display: block;
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-sm);
        font-size: var(--fs-md);
        transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .site-nav a:hover {
        background: rgba(220, 203, 247, 0.35);
        transform: translateX(4px);
    }
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 900px) {
    .site-nav {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        overflow: visible;
        pointer-events: auto;
    }

    .site-nav ul {
        flex-direction: row;
    }

    .site-nav a {
        display: inline;
        padding: 0;
        border-radius: 0;
    }

    .site-nav a:hover {
        background: transparent;
        transform: none;
    }
}

.section--experience {
    background: linear-gradient(180deg, rgba(200, 240, 212, 0.2) 0%, var(--color-cream) 40%, rgba(220, 203, 247, 0.15) 100%);
    position: relative;
}

.experience__intro {
    max-width: 52ch;
    margin-bottom: var(--space-xl);
    color: var(--color-ink-soft);
}

.experience {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 900px) {
    .experience {
        grid-template-columns: minmax(0, 220px) 1fr;
        align-items: start;
    }
}

.experience__rail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (min-width: 900px) {
    .experience__rail {
        flex-direction: column;
        position: sticky;
        top: calc(var(--header-h) + var(--space-md));
    }
}

.experience__tab {
    flex: 1 1 auto;
    min-width: 0;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    border: 2px solid rgba(45, 42, 50, 0.12);
    border-radius: var(--radius-md);
    background: var(--color-white);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.experience__tab:focus-visible {
    outline: 3px solid var(--color-mint);
    outline-offset: 2px;
}

.experience__tab:hover {
    border-color: var(--color-lavender);
    box-shadow: var(--shadow-sm);
}

.experience__tab.is-active {
    background: linear-gradient(135deg, var(--color-cotton), var(--color-lavender));
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.experience__panels {
    position: relative;
    min-height: 14rem;
}

.experience__panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(220, 203, 247, 0.5);
    box-shadow: var(--shadow-md);
    animation: panelIn 0.45s ease;
}

.experience__panel[hidden] {
    display: none !important;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.experience__glyph {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-mint), var(--color-lavender));
    position: relative;
}

.experience__glyph--1 {
    background: linear-gradient(135deg, #ffc6d3, #dccbf7);
}

.experience__glyph--2 {
    background: linear-gradient(135deg, #c8f0d4, #eac9b7);
}

.experience__glyph--3 {
    background: linear-gradient(135deg, #dccbf7, #fff7e8);
}

.experience__glyph--4 {
    background: linear-gradient(135deg, #eac9b7, #ffc6d3);
}

.experience__glyph::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 3px solid rgba(45, 42, 50, 0.2);
    border-radius: 10px;
}

.experience__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
}

.experience__stats {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-2xl);
}

@media (min-width: 640px) {
    .experience__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.experience__stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(234, 201, 183, 0.55);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.experience__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--color-ink);
    line-height: 1.2;
}

.experience__stat-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-ink-soft);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.faq--enhanced details {
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq--enhanced details[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(220, 203, 247, 0.65);
}

.faq--enhanced summary {
    position: relative;
    padding-right: 2rem;
}

.faq--enhanced summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.faq--enhanced details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.page-legal {
    background: var(--color-cream);
}

.page-legal__hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-2xl);
    overflow: hidden;
}

.page-legal__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--color-lavender) 0%, var(--color-cotton) 45%, rgba(200, 240, 212, 0.5) 100%);
    background-size: 200% 200%;
    animation: gradientPulse 12s ease infinite;
}

.page-legal__hero-inner {
    position: relative;
    z-index: 1;
    width: min(900px, 100% - 2rem);
    margin-inline: auto;
}

.page-legal__badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-md);
}

.page-legal__hero h1 {
    margin-bottom: var(--space-sm);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page-legal__date {
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
    margin: 0 0 var(--space-lg);
}

.page-legal__grid {
    width: min(960px, 100% - 2rem);
    margin: calc(-1 * var(--space-xl)) auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .page-legal__grid {
        grid-template-columns: 220px 1fr;
        align-items: start;
    }
}

.page-legal__toc {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(220, 203, 247, 0.45);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
}

.page-legal__toc strong {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
}

.page-legal__toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-legal__toc a {
    display: block;
    padding: var(--space-xs) 0;
    font-size: var(--fs-sm);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.page-legal__toc a:hover {
    border-bottom-color: var(--color-lavender);
}

.page-legal__body {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(234, 201, 183, 0.45);
    box-shadow: var(--shadow-md);
}

.page-legal__body h2 {
    scroll-margin-top: calc(var(--header-h) + var(--space-md));
}

.legal-card {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-mint);
    background: linear-gradient(90deg, rgba(200, 240, 212, 0.25), transparent);
}

.legal-highlight {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(220, 203, 247, 0.25);
    border: 1px dashed rgba(45, 42, 50, 0.15);
    font-size: var(--fs-sm);
}

.legal-highlight__p {
    margin: 0;
}

.thankyou-page {
    min-height: 70vh;
}

.thankyou-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.thankyou-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 198, 211, 0.65), transparent 55%), radial-gradient(circle at 80% 80%, rgba(200, 240, 212, 0.45), transparent 45%);
}

.thankyou-hero__inner {
    position: relative;
    z-index: 1;
    width: min(640px, 100% - 2rem);
    margin-inline: auto;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mint), var(--color-lavender));
    box-shadow: var(--shadow-glow);
    position: relative;
}

.thankyou-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 22px;
    height: 12px;
    border-left: 4px solid var(--color-ink);
    border-bottom: 4px solid var(--color-ink);
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0.75;
}

.thankyou-steps {
    display: grid;
    gap: var(--space-md);
    text-align: left;
    margin: var(--space-xl) 0;
}

.thankyou-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 203, 247, 0.4);
}

.thankyou-step__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-cotton);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-sm);
}

.thankyou-step p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-ink-soft);
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-lg);
}

@media (max-width: 320px) {
    :root {
        --space-3xl: 2.5rem;
        --space-2xl: 1.75rem;
        --header-h: 3.75rem;
    }

    .site-header__inner {
        width: min(1120px, 100% - 1rem);
        gap: var(--space-sm);
    }

    .brand {
        font-size: var(--fs-md);
        max-width: 58vw;
        line-height: 1.2;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .section__inner {
        width: min(1120px, 100% - 1rem);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .hero {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .hero__stage {
        width: 100%;
        max-width: 300px;
        margin-inline: auto;
    }

    .hero__title-line--accent {
        font-size: 0.82em;
    }

    .hero__orbit--fast {
        animation-duration: 28s;
    }

    .order-card {
        padding: var(--space-md);
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: var(--fs-sm);
    }

    .cookie-banner {
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: var(--space-sm);
        padding: var(--space-md);
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .btn {
        width: 100%;
    }

    .cta-band {
        padding: var(--space-xl) var(--space-md);
    }

    .price {
        font-size: var(--fs-xl);
    }

    .experience__tab {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .experience__panel {
        padding: var(--space-md);
    }

    .experience__stat-num {
        font-size: var(--fs-xl);
    }

    .page-legal__body {
        padding: var(--space-md);
    }

    .modal__dialog {
        padding: var(--space-md);
        margin: var(--space-sm);
    }

    .footer__grid {
        width: min(1120px, 100% - 1rem);
    }
}