:root {
    --color-primary: #FF7A3D;
    --color-peach: #FFB287;
    --color-coral: #FF5A4D;
    --color-golden: #FFC86F;
    --color-sand: #F5E0C3;
    --color-text: #2D2419;
    --color-text-muted: #5C4A3A;
    --color-surface: #FFFBF7;
    --color-white: #FFFFFF;
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI", system-ui, -apple-system, 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-base: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --fs-xl: clamp(1.375rem, 1.15rem + 0.8vw, 1.75rem);
    --fs-2xl: clamp(1.75rem, 1.35rem + 1.4vw, 2.5rem);
    --fs-3xl: clamp(2.25rem, 1.6rem + 2.2vw, 3.5rem);
    --fw-normal: 400;
    --fw-medium: 600;
    --fw-bold: 700;
    --lh-tight: 1.2;
    --lh-snug: 1.35;
    --lh-relaxed: 1.6;
    --shadow-sm: 0 2px 8px rgba(255, 90, 77, 0.12);
    --shadow-md: 0 8px 24px rgba(255, 122, 61, 0.2);
    --shadow-lg: 0 16px 48px rgba(255, 90, 77, 0.28);
    --shadow-glow: 0 0 32px rgba(255, 122, 61, 0.45), 0 12px 40px rgba(255, 90, 77, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --glass-bg: rgba(255, 251, 247, 0.72);
    --glass-border: rgba(255, 122, 61, 0.22);
    --header-h: 4.25rem;
    --max-w: 72rem;
}

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

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-sand) 0%, var(--color-white) 45%, var(--color-peach) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-3) var(--space-4);
    background: var(--color-text);
    color: var(--color-white);
}

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

.container {
    width: min(100% - var(--space-8), var(--max-w));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-3) 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.brand {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    color: var(--color-text);
    text-decoration: none;
}

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

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-5);
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    text-decoration: none;
}

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

.hero {
    padding: var(--space-12) 0 var(--space-16);
    position: relative;
}

.hero--pulse {
    overflow: hidden;
    isolation: isolate;
}

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

.hero__aurora {
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 200deg at 50% 50%, var(--color-coral), var(--color-peach), var(--color-golden), var(--color-primary), var(--color-coral));
    opacity: 0.22;
    animation: hero-aurora 16s ease-in-out infinite;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 122, 61, 0.09) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: hero-mesh 22s linear infinite;
    opacity: 0.7;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, black 20%, transparent 75%);
}

.hero__beam {
    position: absolute;
    width: 40%;
    height: 140%;
    top: -20%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 200, 111, 0.12) 45%, transparent 85%);
    filter: blur(2px);
    animation: hero-beam 9s ease-in-out infinite;
}

.hero__beam--1 {
    left: -5%;
    animation-delay: 0s;
}

.hero__beam--2 {
    right: -8%;
    animation-delay: -4.5s;
    transform: scaleX(-1);
}

.hero__spark {
    position: absolute;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, var(--color-white) 0%, transparent 70%);
    opacity: 0.35;
    animation: hero-spark 7s ease-in-out infinite;
}

.hero__spark--1 {
    width: 8px;
    height: 8px;
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.hero__spark--2 {
    width: 12px;
    height: 12px;
    top: 55%;
    right: 18%;
    animation-delay: -2.3s;
}

.hero__spark--3 {
    width: 6px;
    height: 6px;
    bottom: 22%;
    left: 40%;
    animation-delay: -4.1s;
}

@keyframes hero-aurora {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: rotate(180deg) scale(1.08);
        opacity: 0.28;
    }
}

@keyframes hero-mesh {
    0% {
        transform: translate(0, 0);
    }

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

@keyframes hero-beam {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(0) rotate(-2deg);
    }

    50% {
        opacity: 0.85;
        transform: translateX(12px) rotate(2deg);
    }
}

@keyframes hero-spark {

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

    50% {
        opacity: 0.55;
        transform: scale(1.4);
    }
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: start;
    }
}

.hero__col--media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__spotlight {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-media-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero__orbit {
    position: absolute;
    width: 108%;
    height: 108%;
    border: 2px dashed rgba(255, 122, 61, 0.35);
    border-radius: var(--radius-full);
    animation: hero-orbit 22s linear infinite;
}

.hero__orbit--reverse {
    width: 118%;
    height: 118%;
    border-color: rgba(255, 90, 77, 0.22);
    animation: hero-orbit 16s linear infinite reverse;
    border-style: dotted;
}

.hero__pulse-ring {
    position: absolute;
    width: 95%;
    height: 95%;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 200, 111, 0.45);
    animation: hero-ring-pulse 3.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-ring-pulse {

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

    50% {
        transform: scale(1.04);
        opacity: 0.9;
    }
}

@keyframes hero-media-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(24px);
    }

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

.hero__frame {
    position: relative;
    z-index: 2;
    width: 88%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(245, 224, 195, 0.25));
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {

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

    50% {
        transform: translateY(-10px);
    }
}

.hero__figure {
    margin: 0;
    line-height: 0;
}

.hero__figure img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__chips {
    list-style: none;
    margin: var(--space-6) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    animation: hero-chip-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

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

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

.hero__chip-fa {
    color: var(--color-primary);
    font-size: 0.95rem;
    width: 1.25rem;
    text-align: center;
}

.hero__trust-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    margin: 0;
}

.hero__trust-fa {
    font-size: 1.75rem;
    color: var(--color-primary);
    filter: drop-shadow(0 2px 6px rgba(255, 122, 61, 0.35));
}

.rating .stars {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    color: var(--color-golden);
    letter-spacing: 0;
    animation: hero-stars 2.5s ease-in-out infinite;
}

.rating .stars .fa-star {
    font-size: 0.95em;
}

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

@keyframes hero-chip-pop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.92);
    }

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

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-5);
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

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

@keyframes hero-stars {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.15);
    }
}

.hero__eyebrow {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__eyebrow-inner {
    display: inline-block;
    padding-bottom: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-golden), var(--color-primary)) 0 100% / 200% 2px no-repeat;
    animation: hero-eyebrow-line 4s linear infinite;
}

@keyframes hero-eyebrow-line {
    0% {
        background-position: 0 100%;
    }

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

.hero__title {
    font-family: var(--font-display);
    margin: 0 0 var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hero__title-main {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    background: linear-gradient(120deg, var(--color-text) 0%, var(--color-coral) 40%, var(--color-primary) 70%, var(--color-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both, hero-title-shine 8s ease infinite;
}

.hero__title-line {
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    line-height: var(--lh-snug);
    color: var(--color-text-muted);
    max-width: 22ch;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

@keyframes hero-title-shine {

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

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

.hero__lead {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-6);
    max-width: 40ch;
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.hero__priceblock {
    margin-bottom: var(--space-6);
    animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.hero__price-note {
    margin: var(--space-2) 0 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-coral);
    animation: hero-price-pulse 3s ease-in-out infinite;
}

@keyframes hero-price-pulse {

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

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

.price--old {
    font-size: var(--fs-lg);
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-weight: var(--fw-normal);
    animation: none;
}

.form-block--hero {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both, hero-form-glow 9s ease-in-out infinite;
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 122, 61, 0.28);
    box-shadow: var(--shadow-md), 0 0 40px rgba(255, 122, 61, 0.14);
}

@keyframes hero-form-glow {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 32px rgba(255, 122, 61, 0.12), 0 0 0 1px rgba(255, 200, 111, 0.2) inset;
    }

    50% {
        box-shadow: var(--shadow-lg), 0 0 56px rgba(255, 90, 77, 0.22), 0 0 0 1px rgba(255, 122, 61, 0.35) inset;
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

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

    .hero__aurora,
    .hero__mesh,
    .hero__beam,
    .hero__spark,
    .hero__orbit,
    .hero__orbit--reverse,
    .hero__pulse-ring,
    .hero__frame,
    .hero__chip,
    .hero__meta,
    .hero__eyebrow,
    .hero__eyebrow-inner,
    .hero__title-main,
    .hero__title-line,
    .hero__lead,
    .hero__priceblock,
    .form-block--hero,
    .hero__spotlight,
    .stars,
    .price {
        animation: none !important;
    }

    .hero__title-main {
        color: var(--color-text);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }

    .hero__spotlight,
    .hero__chip,
    .hero__meta,
    .hero__eyebrow,
    .hero__title-main,
    .hero__title-line,
    .hero__lead,
    .hero__priceblock,
    .form-block--hero {
        opacity: 1;
        transform: none;
        animation: none !important;
        box-shadow: var(--shadow-md);
    }
}

.form-block {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.form-block h2 {
    margin: 0 0 var(--space-5);
    font-size: var(--fs-xl);
}

.field {
    margin-bottom: var(--space-4);
}

.field label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-2);
}

.field input,
.field textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(255, 122, 61, 0.35);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.2);
    outline: none;
}

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

.field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--fs-sm);
}

.field--checkbox input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--color-primary);
}

.field-error {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-coral);
    margin-top: var(--space-2);
    min-height: 1.2em;
}

.field-error[hidden] {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font: inherit;
    font-weight: var(--fw-bold);
    font-size: var(--fs-base);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-coral));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-coral);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background: rgba(255, 122, 61, 0.12);
}

.btn--block {
    width: 100%;
}

.section {
    padding: var(--space-16) 0;
    position: relative;
}

.section--alt {
    background: rgba(255, 255, 255, 0.55);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--space-3);
    text-align: center;
}

.section__subtitle {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 52ch;
    margin: 0 auto var(--space-10);
}

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

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

    .bento__item--large {
        grid-column: span 2;
        min-height: 160px;
    }

    .bento__item--tall {
        grid-row: span 2;
        min-height: 280px;
    }
}

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

    .bento__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

.bento__item {
    background: linear-gradient(145deg, var(--color-white), var(--color-sand));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.bento__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bento__icon {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
    transition: transform var(--transition-base), color var(--transition-fast);
}

.bento__item:hover .bento__icon {
    color: var(--color-coral);
    transform: scale(1.08);
}

.bento__item h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-xl);
    color: var(--color-text);
}

.bento__item p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.spotlight {
    display: grid;
    gap: var(--space-6);
}

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

.spot-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    transition: box-shadow var(--transition-base);
}

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

.spot-card__name {
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    margin: 0 0 var(--space-3);
    color: var(--color-primary);
}

.spot-card__hint {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.spot-card__detail {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 122, 61, 0.95), rgba(255, 90, 77, 0.98));
    color: var(--color-white);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    font-size: var(--fs-sm);
    line-height: var(--lh-snug);
}

.spot-card:hover .spot-card__detail,
.spot-card:focus-within .spot-card__detail {
    opacity: 1;
}

.spot-card:focus-within {
    outline: none;
}

.trust-grid {
    display: grid;
    gap: var(--space-6);
}

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

.trust-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item .trust-icon-fa {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
    animation: pulse-glow 3s ease-in-out infinite;
}

.trust-item h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-lg);
}

.trust-item p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(255, 122, 61, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 14px rgba(255, 122, 61, 0.85));
    }
}

.carousel-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel__slide {
    flex: 0 0 100%;
    position: relative;
}

.carousel__slide img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.carousel__nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

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

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--color-peach);
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.carousel__dot[aria-current="true"] {
    background: var(--color-primary);
    transform: scale(1.2);
}

.spec-grid,
.benefits-grid {
    display: grid;
    gap: var(--space-4);
}

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

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

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

.card-simple {
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.card-simple h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-base);
}

.card-simple p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.prose {
    max-width: 65ch;
    margin: 0 auto;
}

.prose p {
    margin: 0 0 var(--space-4);
}

.cta-banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: var(--space-10);
    background: linear-gradient(135deg, var(--color-coral), var(--color-primary));
    border-radius: var(--radius-xl);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, var(--color-golden), var(--color-primary), var(--color-coral), var(--color-golden));
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    opacity: 0.35;
    z-index: 0;
    border-radius: inherit;
}

.cta-banner>* {
    position: relative;
    z-index: 1;
}

@keyframes gradient-shift {

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

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

.cta-banner h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-2xl);
}

.cta-banner p {
    margin: 0 0 var(--space-6);
    opacity: 0.95;
}

.cta-banner .btn--primary {
    background: var(--color-white);
    color: var(--color-coral);
}

.cta-banner .btn--primary:hover {
    background: var(--color-sand);
}

.steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 40rem;
    margin-inline: auto;
}

.steps li {
    position: relative;
    padding-left: var(--space-10);
    margin-bottom: var(--space-6);
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
}

.ingredient-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ingredient-table th,
.ingredient-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--color-sand);
    font-size: var(--fs-sm);
}

.ingredient-table th {
    background: rgba(255, 122, 61, 0.12);
    font-weight: var(--fw-medium);
}

.table-scroll {
    overflow-x: auto;
}

.footer-copy-note {
    margin-top: var(--space-4);
    font-size: var(--fs-sm);
    opacity: 0.85;
}

.reviews {
    display: grid;
    gap: var(--space-4);
}

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

.review {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.review blockquote {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-sm);
    font-style: italic;
    color: var(--color-text-muted);
}

.review figcaption {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text);
}

.faq details {
    background: var(--color-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    padding: var(--space-4) var(--space-5);
}

.faq summary {
    font-weight: var(--fw-medium);
    cursor: pointer;
    list-style: none;
}

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

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

.faq p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.disclaimer-box {
    background: rgba(45, 36, 25, 0.06);
    border: 1px solid rgba(45, 36, 25, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    max-width: 65ch;
    margin: var(--space-10) auto 0;
}

.site-footer {
    background: var(--color-text);
    color: rgba(255, 251, 247, 0.88);
    padding: var(--space-12) 0 var(--space-8);
    margin-top: var(--space-8);
}

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

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

.footer-grid {
    display: grid;
    gap: var(--space-8);
}

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

.footer-legal {
    font-size: var(--fs-xs);
    line-height: var(--lh-snug);
    opacity: 0.9;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-meta {
    font-size: var(--fs-sm);
}

.footer-meta p {
    margin: 0 0 var(--space-2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: var(--space-4);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

.cookie-banner__inner {
    width: min(100% - var(--space-4), var(--max-w));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.cookie-banner p {
    margin: 0;
    flex: 1 1 280px;
    font-size: var(--fs-sm);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: rgba(45, 36, 25, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

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

.modal h2 {
    margin: 0 0 var(--space-6);
    font-size: var(--fs-xl);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: var(--fs-sm);
}

.cookie-toggle:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-6);
}

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

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

.switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--color-peach);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.switch__slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

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

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

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

.modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: flex-end;
}

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.magnetic-wrap {
    display: inline-block;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.thank-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-4);
}

.thank-page h1 {
    font-size: var(--fs-3xl);
    margin: 0 0 var(--space-4);
}

.thank-page p {
    color: var(--color-text-muted);
    max-width: 42ch;
    margin: 0 auto var(--space-8);
}

.policy-page main {
    padding: var(--space-12) 0 var(--space-16);
}

.legal-creative.policy-page main {
    padding-top: 0;
}

.policy-page article {
    max-width: 52rem;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: var(--fs-2xl);
    margin: 0 0 var(--space-6);
}

.policy-page h2 {
    font-size: var(--fs-lg);
    margin: var(--space-8) 0 var(--space-3);
}

.policy-page p,
.policy-page ul {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.policy-page ul {
    padding-left: var(--space-6);
}

.policy-page li {
    margin-bottom: var(--space-2);
}

.hero-deco {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-deco__orb {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(48px);
    opacity: 0.45;
    animation: float-orb 18s ease-in-out infinite;
}

.hero-deco__orb--a {
    width: min(60vw, 420px);
    height: min(60vw, 420px);
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-deco__orb--b {
    width: min(50vw, 320px);
    height: min(50vw, 320px);
    background: radial-gradient(circle, var(--color-coral) 0%, transparent 70%);
    bottom: 10%;
    left: -8%;
    animation-delay: -6s;
}

.hero-deco__orb--c {
    width: min(40vw, 260px);
    height: min(40vw, 260px);
    background: radial-gradient(circle, var(--color-golden) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    animation-delay: -12s;
    opacity: 0.3;
}

@keyframes float-orb {

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

    33% {
        transform: translate(3%, 4%) scale(1.05);
    }

    66% {
        transform: translate(-2%, -3%) scale(0.98);
    }
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    z-index: 1003;
    flex-shrink: 0;
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

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

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

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

.nav-backdrop {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .site-header {
    z-index: 9990;
}

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

    body.nav-open .nav-toggle {
        position: relative;
        z-index: 10003;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(45, 36, 25, 0.48);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

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

    .nav--drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100vw - 2.5rem, 19rem);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 10001;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-4)) var(--space-5) var(--space-8);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(255, 251, 247, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -12px 0 40px rgba(255, 90, 77, 0.15);
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease, border-color 0.38s ease;
        isolation: isolate;
    }

    .nav--drawer.is-open {
        transform: translateX(0);
        z-index: 10002;
        box-shadow: -24px 0 64px rgba(45, 36, 25, 0.28), -8px 0 32px rgba(255, 122, 61, 0.18);
        border-left: 2px solid var(--color-primary);
        background: rgba(255, 251, 247, 0.99);
    }

    .nav--drawer a {
        padding: var(--space-4) 0;
        border-bottom: 1px solid rgba(255, 122, 61, 0.18);
        font-size: var(--fs-base);
    }

    .nav--drawer a:last-child {
        border-bottom: none;
    }
}

.reveal--delay-1 {
    transition-delay: 0.08s;
}

.reveal--delay-2 {
    transition-delay: 0.16s;
}

.reveal--delay-3 {
    transition-delay: 0.24s;
}

.wellness-lab {
    overflow: hidden;
}

.lab-shell {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 224, 195, 0.5));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.lab-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.lab-tab {
    flex: 1 1 auto;
    min-width: 7rem;
    padding: var(--space-3) var(--space-4);
    font: inherit;
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    border: 2px solid rgba(255, 122, 61, 0.35);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.lab-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-text);
}

.lab-tab.is-active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-coral));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

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

.lab-panel {
    display: none;
    animation: lab-in 0.45s ease forwards;
}

.lab-panel.is-active {
    display: block;
}

@keyframes lab-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.lab-panel__heading {
    margin: var(--space-4) 0 var(--space-2);
    font-size: var(--fs-xl);
    color: var(--color-text);
}

.lab-panel p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    max-width: 52ch;
}

.lab-visual {
    position: relative;
    height: 120px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--color-peach), var(--color-sand));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-visual__shape {
    display: block;
    position: relative;
}

.lab-visual__shape--sun {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(145deg, var(--color-golden), var(--color-primary));
    box-shadow: 0 0 40px rgba(255, 122, 61, 0.55);
    animation: pulse-soft 2.8s ease-in-out infinite;
}

.lab-visual__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 3px solid rgba(255, 122, 61, 0.35);
    border-radius: var(--radius-full);
    animation: spin-slow 12s linear infinite;
}

.lab-visual__shape--wave {
    width: 100%;
    height: 48px;
    background: repeating-linear-gradient(90deg, var(--color-coral), var(--color-coral) 12px, transparent 12px, transparent 24px);
    opacity: 0.55;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 100%, black 40%, transparent 100%);
}

.lab-visual__dots {
    position: absolute;
    width: 80%;
    height: 4px;
    bottom: 24px;
    background: repeating-linear-gradient(90deg, var(--color-primary), var(--color-primary) 6px, transparent 6px, transparent 14px);
    opacity: 0.6;
}

.lab-visual__shape--grid {
    width: 88px;
    height: 88px;
    background-image: linear-gradient(var(--color-primary) 1px, transparent 1px), linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.35;
    border-radius: var(--radius-sm);
}

.lab-visual__shape--orbit {
    position: relative;
    width: 80px;
    height: 80px;
    border: 4px solid var(--color-coral);
    border-radius: var(--radius-full);
    animation: spin-slow 10s linear infinite reverse;
}

.lab-visual__shape--orbit::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    top: -7px;
    left: 50%;
    margin-left: -7px;
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 122, 61, 0.45);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 50px rgba(255, 122, 61, 0.65);
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.section--stats {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 184, 135, 0.25) 100%);
}

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

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

.stat-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-card__value {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    line-height: 1;
    background: linear-gradient(135deg, var(--color-coral), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-3);
}

.stat-card__suffix {
    font-size: 0.55em;
    font-weight: var(--fw-bold);
    margin-left: 2px;
}

.stat-card__label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: var(--lh-snug);
}

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

.faq details[open] {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.legal-creative {
    background: linear-gradient(165deg, var(--color-sand) 0%, var(--color-white) 40%, var(--color-peach) 100%);
}

.legal-creative .legal-hero {
    position: relative;
    padding: var(--space-10) var(--space-4) var(--space-8);
    margin-bottom: var(--space-8);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: linear-gradient(135deg, var(--color-coral), var(--color-primary));
    color: var(--color-white);
    overflow: hidden;
}

.legal-creative .legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 45%);
    pointer-events: none;
}

.legal-creative .legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto;
}

.legal-creative .legal-hero h1 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-2xl);
    color: var(--color-white);
}

.legal-creative .legal-meta {
    font-size: var(--fs-sm);
    opacity: 0.92;
    margin: 0;
}

.legal-creative .legal-doc {
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 var(--space-4) var(--space-16);
}

.legal-creative .doc-lead {
    font-size: var(--fs-base);
    color: var(--color-text);
    line-height: var(--lh-relaxed);
    margin: 0 0 var(--space-8);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.legal-creative .doc-block {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.legal-creative .doc-block h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-lg);
    color: var(--color-text);
}

.legal-creative .doc-block p,
.legal-creative .doc-block li {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-3);
}

.legal-creative .doc-block ul {
    padding-left: var(--space-6);
    margin: 0;
}

.legal-creative .doc-block li {
    margin-bottom: var(--space-2);
}

.legal-creative .doc-callout {
    margin-top: var(--space-4);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(255, 122, 61, 0.1), rgba(255, 200, 111, 0.15));
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.legal-creative .doc-columns {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 700px) {
    .legal-creative .doc-columns--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.thank-creative {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, var(--color-sand), var(--color-white) 50%, var(--color-peach));
}

.thank-creative main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-4);
}

.thank-card {
    width: min(100%, 36rem);
    padding: var(--space-10) var(--space-6);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-golden), var(--color-primary));
}

.thank-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-full);
    background: linear-gradient(145deg, var(--color-primary), var(--color-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: thank-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    box-shadow: var(--shadow-glow);
}

.thank-icon .fa-circle-check {
    color: var(--color-white);
    font-size: 2.5rem;
    line-height: 1;
}

@keyframes thank-pop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-card h1 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-2xl);
    color: var(--color-text);
}

.thank-card .thank-lead {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-6);
    line-height: var(--lh-relaxed);
}

.thank-steps {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    counter-reset: th;
}

.thank-steps li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.thank-steps li::before {
    counter-increment: th;
    content: counter(th);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 380px) {
    .container {
        width: min(100% - var(--space-4), var(--max-w));
    }

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

    .hero {
        padding: var(--space-10) 0 var(--space-12);
    }

    .form-block {
        padding: var(--space-5);
    }

    .lab-tabs {
        flex-direction: column;
    }

    .lab-tab {
        width: 100%;
        text-align: center;
    }

    .stat-card__value {
        font-size: var(--fs-2xl);
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    :root {
        --space-8: 1.5rem;
        --space-10: 2rem;
        --space-12: 2.5rem;
        --space-16: 3rem;
    }

    .container {
        width: min(100% - 1rem, var(--max-w));
    }

    .brand {
        font-size: var(--fs-base);
        max-width: 11rem;
        line-height: var(--lh-snug);
    }

    .hero__title-main {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        word-break: break-word;
    }

    .hero__title-line {
        font-size: var(--fs-base);
    }

    .hero__spotlight {
        max-width: 100%;
    }

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

    .btn {
        padding: var(--space-3) var(--space-5);
        font-size: var(--fs-sm);
    }

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

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

    .bento__item {
        padding: var(--space-4);
    }

    .trust-item {
        padding: var(--space-5);
    }

    .lab-shell {
        padding: var(--space-4);
    }

    .lab-visual {
        height: 100px;
    }

    .ingredient-table th,
    .ingredient-table td {
        padding: var(--space-3);
        font-size: var(--fs-xs);
    }

    .modal {
        padding: var(--space-5);
    }

    .legal-creative .legal-hero {
        padding: var(--space-8) var(--space-3) var(--space-6);
    }

    .thank-card {
        padding: var(--space-8) var(--space-4);
    }
}