/* ============================================
   CSS VARIABLES — Moonka Design System
   ============================================ */
:root {
    --bg-primary: #0F0F1A;
    --bg-card: #1E1E2D;
    --bg-card-light: #28283A;
    --accent: #A673E6;
    --accent-light: #C49BFF;
    --accent-glow: rgba(166, 115, 230, 0.3);
    --glow-rgb: 166, 115, 230;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.75);
    --text-tertiary: rgba(255,255,255,0.55);
    --menstrual: #C72640;
    --follicular: #3DB370;
    --ovulation: #F2AD33;
    --luteal: #9457C2;
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a28 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER — Fixed, Glass-Morphism
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(166, 115, 230, 0.1);
    padding: 1rem 2rem;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

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

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

main > section {
    position: relative;
    scroll-margin-top: 104px;
}

.nav-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link::before,
.mobile-menu-link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at var(--press-x, 50%) var(--press-y, 50%), rgba(166, 115, 230, 0.3), rgba(166, 115, 230, 0) 68%);
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.nav-link.is-pressed,
.mobile-menu-link.is-pressed {
    transform: scale(0.96);
}

.nav-link.is-pressed::before,
.mobile-menu-link.is-pressed::before {
    opacity: 1;
    transform: scale(1.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(166, 115, 230, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    border-color: rgba(166, 115, 230, 0.38);
    background: rgba(166, 115, 230, 0.08);
    outline: none;
}

.mobile-menu-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background:
        linear-gradient(180deg, rgba(11, 11, 21, 0.96), rgba(15, 15, 26, 0.98)),
        radial-gradient(circle at top, rgba(166, 115, 230, 0.18), transparent 38%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform 0.42s ease, opacity 0.42s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 22%),
        radial-gradient(circle at 20% 20%, rgba(166, 115, 230, 0.12), transparent 18%);
    pointer-events: none;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-shell {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(166, 115, 230, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
    border-color: rgba(166, 115, 230, 0.38);
    background: rgba(166, 115, 230, 0.08);
    outline: none;
}

.mobile-menu-close-icon {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.mobile-menu-kicker {
    margin-bottom: 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.mobile-menu-nav {
    width: 100%;
    max-width: 420px;
    display: grid;
    gap: 0.8rem;
}

.mobile-menu-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: block;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(166, 115, 230, 0.3);
    background: rgba(166, 115, 230, 0.08);
    color: var(--text-primary);
    outline: none;
}

.mobile-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
}

.mobile-menu-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    color: var(--accent-light);
    font-size: 0.92rem;
    font-weight: 700;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
    border-color: var(--accent-light);
    background: rgba(166, 115, 230, 0.1);
    color: var(--text-primary);
    outline: none;
}

main > section::before {
    content: '';
    position: absolute;
    inset: -1rem 0 auto;
    height: 180px;
    background: radial-gradient(circle at center top, rgba(166, 115, 230, 0.16), rgba(166, 115, 230, 0) 70%);
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
}

main > section.section-targeted::before {
    animation: section-arrival-glow 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

main > section.section-targeted > * {
    animation: section-arrival-content 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: var(--font);
    font-size: 0.8rem;
}

.lang-btn.active {
    color: var(--text-primary);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    user-select: none;
}

.cta-button {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
}

.cta-button:hover {
    border-color: var(--accent-light);
    background: rgba(166, 115, 230, 0.1);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
    }
    .header-wrapper {
        gap: 0.75rem;
    }
    .header-nav {
        display: none;
    }
    .header-right {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
main {
    margin-top: 80px;
    padding: 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 140px 0 100px;
}

main > section + section {
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0 72px;
    }

    main > section + section {
        margin-top: 1.25rem;
    }
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes cycle-ring-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-phone {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section-arrival-glow {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
}

@keyframes section-arrival-content {
    0% {
        transform: translateY(16px);
        filter: saturate(0.92) brightness(0.98);
    }
    100% {
        transform: translateY(0);
        filter: none;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(166, 115, 230, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(166, 115, 230, 0.5);
    }
}

.reveal {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    padding: 140px 0 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-brand {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-secondary);
}

.accent-text {
    color: var(--accent-light);
}

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

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.hero-cta img {
    height: 54px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 5.5rem;
}

.chip {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(166, 115, 230, 0.15);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    animation: fade-in-up 0.8s ease-out backwards;
    transition: all 0.3s ease;
    cursor: default;
}

.chip:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(166, 115, 230, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 115, 230, 0.2);
}

.chip:nth-child(1) { animation-delay: 0.2s; }
.chip:nth-child(2) { animation-delay: 0.3s; }
.chip:nth-child(3) { animation-delay: 0.4s; }
.chip:nth-child(4) { animation-delay: 0.5s; }
.chip:nth-child(5) { animation-delay: 0.6s; }
.chip:nth-child(6) { animation-delay: 0.7s; }
.chip:nth-child(7) { animation-delay: 0.8s; }
.chip:nth-child(8) { animation-delay: 0.9s; }
.chip:nth-child(9) { animation-delay: 1s; }
.chip:nth-child(10) { animation-delay: 1.1s; }
.chip:nth-child(11) { animation-delay: 1.2s; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    overflow: visible;
    isolation: isolate;
}

.hero-device {
    position: absolute;
    z-index: 2;
}

.hero-device .screenshot-frame {
    margin-bottom: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.hero-device--main {
    width: min(52vw, 280px);
    transform: rotate(-3deg) translateY(12px);
}

.hero-device--side {
    width: min(38vw, 210px);
    left: 0;
    bottom: 28px;
    transform: rotate(8deg);
}

.hero-phase-card {
    position: absolute;
    right: 0;
    top: 18px;
    width: 220px;
    height: 220px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        linear-gradient(145deg, rgba(166, 115, 230, 0.14), rgba(20, 20, 32, 0.96) 65%);
    border: 1px solid rgba(166, 115, 230, 0.18);
    box-shadow: 0 24px 60px rgba(6, 6, 14, 0.32);
    z-index: 3;
    overflow: hidden;
}

/* Radial gradient glow avoids box-shadow seams on dark backgrounds */
.cycle-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(0);
    filter: blur(26px);
    opacity: 0.95;
    transition: opacity 1.5s ease, background 1.5s ease;
    background:
        radial-gradient(
            circle,
            rgba(var(--glow-rgb), 0.28) 0%,
            rgba(var(--glow-rgb), 0.22) 26%,
            rgba(var(--glow-rgb), 0.14) 46%,
            rgba(var(--glow-rgb), 0.07) 60%,
            rgba(var(--glow-rgb), 0) 76%
        );
}

/* SVG Cycle Ring */
.cycle-ring-svg {
    width: 176px;
    height: 176px;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(166, 115, 230, 0.3));
}

.ring-track {
    fill: none;
    stroke: var(--bg-card-light);
    stroke-width: 14;
}

.ring-progress {
    fill: none;
    stroke-width: 14;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1.5s ease, stroke 1s ease;
}

/* Center content over SVG */
.cycle-center {
    position: absolute;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.cycle-day-number {
    font-size: 3.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.3s ease;
}

.cycle-day-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.cycle-phase-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    transition: background 1s ease, color 1s ease;
}

@media (max-width: 1024px) {
    #hero {
        padding: 100px 0 60px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-brand {
        font-size: 3.5rem;
    }
    .hero-content h1 {
        font-size: 1.65rem;
    }
    .hero-visual {
        min-height: 460px;
    }
    .hero-device--main {
        width: min(58vw, 290px);
    }
    .hero-device--side {
        left: 24px;
        bottom: 14px;
    }
    .hero-phase-card {
        width: 205px;
        height: 205px;
        right: 24px;
    }
}

@media (max-width: 640px) {
    .hero-brand {
        font-size: 2.75rem;
    }
    .hero-content h1 {
        font-size: 1.3rem;
        max-width: 100%;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .trust-chips {
        gap: 0.5rem;
        margin-top: 2.5rem;
    }
    .chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    .hero-visual {
        min-height: 420px;
    }
    .hero-device--main {
        position: relative;
        width: min(62vw, 250px);
        left: auto;
        right: auto;
        bottom: auto;
        transform: rotate(-2deg);
    }
    .hero-device--side {
        width: min(42vw, 160px);
        left: 4px;
        bottom: 82px;
    }
    .hero-phase-card {
        width: 168px;
        height: 168px;
        right: 6px;
        top: 8px;
        border-radius: 22px;
    }
    .cycle-ring-svg {
        width: 132px;
        height: 132px;
    }
    .cycle-day-number {
        font-size: 2.35rem;
    }
    .cycle-day-label {
        font-size: 0.76rem;
    }
    .cycle-phase-name {
        font-size: 0.72rem;
        margin-top: 0.55rem;
        padding: 0.28rem 0.65rem;
    }
}

/* ============================================
   BLOCK 2: WHY MOONKA
   ============================================ */
#why-moonka {
    background: transparent;
}

.why-lead {
    max-width: 760px;
    margin: -0.5rem auto 1.75rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* --- Scenario Tabs --- */
.scenario-tabs {
    max-width: 960px;
    margin: 0 auto;
}

.scenario-tab-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(166, 115, 230, 0.12);
    padding-bottom: 0;
}

.scenario-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

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

.scenario-tab.is-active {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

.scenario-tab-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.scenario-tab.is-active .scenario-tab-num {
    opacity: 0.8;
}

.scenario-tab-label {
    pointer-events: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-light);
}

/* --- Scenario Panel --- */
.scenario-panel {
    display: none;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        linear-gradient(160deg, rgba(166, 115, 230, 0.1), rgba(18, 18, 28, 0.95) 60%);
    border: 1px solid rgba(166, 115, 230, 0.16);
    animation: scenario-fade-in 0.4s ease-out;
}

.scenario-panel.is-active {
    display: grid;
}

@keyframes scenario-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Mockup inside panel --- */
.scenario-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(166, 115, 230, 0.1) 0%, transparent 70%);
    border-radius: 16px;
}

.scenario-mockup .screenshot-frame {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1168/2400;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(166, 115, 230, 0.12);
    margin-bottom: 0;
}

.scenario-mockup .screenshot-frame:hover {
    transform: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(166, 115, 230, 0.12);
}

.scenario-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.scenario-panel:hover .scenario-mockup img {
    transform: scale(1.02);
}

/* --- Body inside panel --- */
.scenario-body {
    padding: 0.5rem 0;
}

.scenario-panel h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.scenario-panel p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.scenario-points {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.scenario-points li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-primary);
}

.scenario-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .scenario-tab-bar {
        gap: 0.25rem;
    }

    .scenario-tab {
        padding: 0.75rem 0.5rem;
        font-size: 0.82rem;
        gap: 0.4rem;
    }

    .scenario-tab-num {
        display: none;
    }

    .scenario-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .scenario-mockup .screenshot-frame {
        max-width: 200px;
    }

    .scenario-panel h3 {
        font-size: 1.2rem;
    }

    .scenario-panel p,
    .scenario-points li {
        font-size: 0.9rem;
    }
}

/* ============================================
   BLOCK 3: HOW IT WORKS
   ============================================ */
#how-it-works {
    background: transparent;
}

#how-it-works .section-title,
#phases .section-title,
#screenshots .section-title,
#privacy .section-title,
#wellness .section-title,
#pricing .section-title {
    margin: 4rem 0;
}

#phases .section-title {
    color: var(--accent-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line between steps */
@media (min-width: 768px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 16.66%;
        right: 16.66%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
        opacity: 0.3;
        z-index: 0;
    }
}

.step {
    text-align: center;
    padding: 0 1.5rem;
    animation: fade-in-up 0.8s ease-out backwards;
    position: relative;
    z-index: 1;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(166, 115, 230, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step:hover .step-icon {
    border-color: var(--accent);
    background: rgba(166, 115, 230, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(166, 115, 230, 0.25);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    #how-it-works .section-title,
    #phases .section-title,
    #screenshots .section-title,
    #privacy .section-title,
    #wellness .section-title,
    #pricing .section-title {
        margin: 2.5rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .steps-container::before {
        display: none;
    }
}

/* ============================================
   BLOCK 4: PHASES
   ============================================ */
#phases {
    background: transparent;
}

.phases-subtitle {
    max-width: 760px;
    margin: -0.5rem auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.phases-showcase {
    display: grid;
    gap: 1.5rem;
}

.phases-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.phase-tab,
.phase-panel {
    --phase-accent: 148, 87, 194;
}

.phase-tab[data-phase-target="menstrual"],
.phase-panel--menstrual {
    --phase-accent: 199, 38, 64;
}

.phase-tab[data-phase-target="follicular"],
.phase-panel--follicular {
    --phase-accent: 61, 179, 112;
}

.phase-tab[data-phase-target="ovulation"],
.phase-panel--ovulation {
    --phase-accent: 242, 173, 51;
}

.phase-tab[data-phase-target="luteal"],
.phase-panel--luteal {
    --phase-accent: 148, 87, 194;
}

.phase-tab {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(var(--phase-accent), 0.15), rgba(30, 30, 45, 0.95) 55%);
    border-radius: 22px;
    padding: 1rem 1.1rem;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    animation: fade-in-up 0.8s ease-out backwards;
}

.phase-tab:nth-child(1) { animation-delay: 0.1s; }
.phase-tab:nth-child(2) { animation-delay: 0.2s; }
.phase-tab:nth-child(3) { animation-delay: 0.3s; }
.phase-tab:nth-child(4) { animation-delay: 0.4s; }

.phase-tab:hover,
.phase-tab:focus-visible,
.phase-tab.is-active {
    transform: translateY(-6px);
    border-color: rgba(var(--phase-accent), 0.42);
    box-shadow: 0 18px 40px rgba(var(--phase-accent), 0.14);
    outline: none;
}

.phase-tab-emoji {
    font-size: 1.85rem;
}

.phase-tab-season {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(var(--phase-accent), 0.95);
}

.phase-tab-label {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
}

.phase-panels {
    position: relative;
}

.phase-panel {
    display: none;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    min-height: 360px;
    padding: 2.25rem;
    border-radius: 28px;
    border: 1px solid rgba(var(--phase-accent), 0.24);
    background:
        radial-gradient(circle at top right, rgba(var(--phase-accent), 0.18), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(30, 30, 45, 0.96) 44%);
    box-shadow: 0 24px 60px rgba(6, 6, 14, 0.35);
    overflow: hidden;
    position: relative;
}

.phase-panel.is-active {
    display: grid;
    animation: fade-in-up 0.35s ease-out;
}

.phase-panel::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--phase-accent), 0.18), rgba(var(--phase-accent), 0));
    filter: blur(12px);
    pointer-events: none;
}

.phase-panel-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-panel-visual::before {
    content: '';
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--phase-accent), 0.18), rgba(var(--phase-accent), 0.03) 60%, rgba(var(--phase-accent), 0) 72%);
    border: 1px solid rgba(var(--phase-accent), 0.18);
}

.phase-panel-emoji {
    position: absolute;
    font-size: 4rem;
    filter: drop-shadow(0 10px 28px rgba(var(--phase-accent), 0.22));
}

.phase-panel-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.phase-panel-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(var(--phase-accent), 0.95);
}

.phase-panel-title {
    font-size: 2.15rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.phase-panel-season {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background: rgba(var(--phase-accent), 0.14);
    border: 1px solid rgba(var(--phase-accent), 0.2);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(var(--phase-accent), 0.95);
}

.phase-panel-lead {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

.phase-panel-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .phases-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phase-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phase-panel-content {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .phases-subtitle {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .phases-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .phase-tab {
        min-height: 104px;
        padding: 0.9rem 0.75rem;
    }

    .phase-tab-label {
        font-size: 0.9rem;
    }

    .phase-panel {
        padding: 1.5rem;
        min-height: auto;
        gap: 1.25rem;
    }

    .phase-panel-visual::before {
        width: 170px;
        height: 170px;
    }

    .phase-panel-emoji {
        font-size: 3rem;
    }

    .phase-panel-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   BLOCK 5: APP SCREENSHOTS
   ============================================ */
#screenshots {
    background: transparent;
}

.screenshots-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.screenshot-item {
    text-align: center;
    animation: fade-in-up 0.8s ease-out backwards;
}

.screenshot-item:nth-child(1) { animation-delay: 0.1s; }
.screenshot-item:nth-child(2) { animation-delay: 0.2s; }
.screenshot-item:nth-child(3) { animation-delay: 0.3s; }
.screenshot-item:nth-child(4) { animation-delay: 0.4s; }

.screenshot-frame {
    width: 100%;
    aspect-ratio: 1168/2400;
    background: var(--bg-card);
    border-radius: 45px;
    padding: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--bg-card-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(166, 115, 230, 0.2);
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 34px;
}

.screenshot-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Value proposition cards --- */
.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.value-card {
    padding: 2rem 1.75rem;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        linear-gradient(160deg, rgba(166, 115, 230, 0.08), rgba(18, 18, 28, 0.95) 60%);
    border: 1px solid rgba(166, 115, 230, 0.14);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(166, 115, 230, 0.28);
}

.value-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-icon--cycle {
    background: rgba(166, 115, 230, 0.14);
    box-shadow: inset 0 0 0 1px rgba(166, 115, 230, 0.2);
    color: var(--accent-light);
}

.value-icon--care {
    background: rgba(242, 173, 51, 0.14);
    box-shadow: inset 0 0 0 1px rgba(242, 173, 51, 0.2);
    color: #F2AD33;
}

.value-icon--privacy {
    background: rgba(61, 179, 112, 0.14);
    box-shadow: inset 0 0 0 1px rgba(61, 179, 112, 0.2);
    color: #3DB370;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
}

.value-card:hover .value-icon--cycle {
    background: rgba(166, 115, 230, 0.22);
    box-shadow: inset 0 0 0 1px rgba(166, 115, 230, 0.45), 0 0 18px rgba(166, 115, 230, 0.18);
}

.value-card:hover .value-icon--care {
    background: rgba(242, 173, 51, 0.22);
    box-shadow: inset 0 0 0 1px rgba(242, 173, 51, 0.45), 0 0 18px rgba(242, 173, 51, 0.18);
}

.value-card:hover .value-icon--privacy {
    background: rgba(61, 179, 112, 0.22);
    box-shadow: inset 0 0 0 1px rgba(61, 179, 112, 0.45), 0 0 18px rgba(61, 179, 112, 0.18);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .value-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 2.5rem auto 0;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.05rem;
    }
}

/* ============================================
   BLOCK 6: PRIVACY
   ============================================ */
#privacy {
    background: transparent;
}

#privacy .section-title {
    margin-bottom: 1.75rem;
}

.privacy-lead {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

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

.privacy-group {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(166, 115, 230, 0.1), rgba(30, 30, 45, 0.96) 52%);
    border: 1px solid rgba(166, 115, 230, 0.14);
    border-radius: 24px;
    padding: 1.75rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.privacy-group:hover {
    transform: translateY(-6px);
    border-color: rgba(166, 115, 230, 0.28);
    box-shadow: 0 20px 45px rgba(10, 10, 18, 0.26);
}

.privacy-group-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.15rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(166, 115, 230, 0.12);
    border: 1px solid rgba(166, 115, 230, 0.18);
}

.privacy-group-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.privacy-group-title {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 1.1rem;
    color: var(--text-primary);
}

.privacy-points {
    display: grid;
    gap: 0.85rem;
}

.privacy-point {
    position: relative;
    padding-left: 1rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.privacy-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    transform: translateY(-50%);
}

.privacy-closing {
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-primary);
}

.privacy-policy-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.privacy-policy-link:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 1024px) {
    .privacy-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-lead {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .privacy-group {
        padding: 1.5rem;
    }

    .privacy-group-title {
        font-size: 1.1rem;
    }

    .privacy-point {
        font-size: 0.95rem;
    }

    .privacy-closing {
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   BLOCK 7: WELLNESS PRACTICES
   ============================================ */
#wellness {
    background: transparent;
}

#wellness .section-title {
    margin-bottom: 1.75rem;
}

.wellness-lead {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.wellness-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
    align-items: stretch;
}

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

.wellness-tab,
.wellness-panel {
    --wellness-accent: 166, 115, 230;
}

.wellness-tab[data-wellness-target="calm"],
.wellness-panel--calm {
    --wellness-accent: 166, 115, 230;
}

.wellness-tab[data-wellness-target="body"],
.wellness-panel--body {
    --wellness-accent: 61, 179, 112;
}

.wellness-tab[data-wellness-target="journal"],
.wellness-panel--journal {
    --wellness-accent: 242, 173, 51;
}

.wellness-tab[data-wellness-target="support"],
.wellness-panel--support {
    --wellness-accent: 148, 87, 194;
}

.wellness-tab {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(var(--wellness-accent), 0.12), rgba(30, 30, 45, 0.9) 48%);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.35rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 220px;
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    animation: fade-in-up 0.8s ease-out backwards;
}

.wellness-tab:nth-child(1) { animation-delay: 0.1s; }
.wellness-tab:nth-child(2) { animation-delay: 0.2s; }
.wellness-tab:nth-child(3) { animation-delay: 0.3s; }
.wellness-tab:nth-child(4) { animation-delay: 0.4s; }

.wellness-tab:hover,
.wellness-tab:focus-visible,
.wellness-tab.is-active {
    transform: translateY(-8px);
    border-color: rgba(var(--wellness-accent), 0.45);
    box-shadow: 0 18px 45px rgba(var(--wellness-accent), 0.14);
    outline: none;
}

.wellness-tab-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wellness-tab-index {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: rgba(var(--wellness-accent), 0.95);
    text-transform: uppercase;
}

.wellness-tab-icon,
.wellness-panel-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(var(--wellness-accent), 0.14);
    box-shadow: inset 0 0 0 1px rgba(var(--wellness-accent), 0.2);
    font-size: 1.45rem;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.wellness-tab-icon svg,
.wellness-panel-icon svg {
    width: 26px;
    height: 26px;
    stroke: rgb(var(--wellness-accent));
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wellness-tab:hover .wellness-tab-icon,
.wellness-tab:focus-visible .wellness-tab-icon,
.wellness-tab.is-active .wellness-tab-icon {
    background: rgba(var(--wellness-accent), 0.22);
    box-shadow: inset 0 0 0 1px rgba(var(--wellness-accent), 0.45), 0 0 18px rgba(var(--wellness-accent), 0.18);
    transform: scale(1.05);
}

.wellness-tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.wellness-tab-subtitle {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--accent-light);
}

.wellness-tab-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.wellness-panels {
    position: relative;
    min-height: 100%;
}

.wellness-panel {
    position: relative;
    display: none;
    min-height: 100%;
    padding: 2.25rem;
    border-radius: 24px;
    border: 1px solid rgba(var(--wellness-accent), 0.22);
    background:
        radial-gradient(circle at top right, rgba(var(--wellness-accent), 0.18), transparent 35%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(30, 30, 45, 0.96) 40%);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 6, 14, 0.38);
}

.wellness-panel.is-active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    animation: fade-in-up 0.35s ease-out;
}

.wellness-panel::before {
    content: '';
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--wellness-accent), 0.2), rgba(var(--wellness-accent), 0));
    filter: blur(10px);
    pointer-events: none;
}

.wellness-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wellness-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(var(--wellness-accent), 0.95);
}

.wellness-panel-title {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.wellness-panel-body {
    position: relative;
    z-index: 1;
    max-width: 42ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.wellness-panel-pills {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wellness-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--wellness-accent), 0.22);
}

@media (max-width: 1024px) {
    .wellness-layout {
        grid-template-columns: 1fr;
    }

    .wellness-panel-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    #privacy .section-title {
        margin-bottom: 1.25rem;
    }

    #wellness .section-title {
        margin-bottom: 1.25rem;
    }

    .wellness-lead {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .wellness-nav {
        grid-template-columns: 1fr;
    }

    .wellness-tab {
        min-height: auto;
    }

    .wellness-panel {
        padding: 1.5rem;
    }

    .wellness-panel-title {
        font-size: 1.45rem;
    }
}

/* ============================================
   BLOCK 8: PRICING
   ============================================ */
#pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    padding: 2rem;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(166, 115, 230, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(160deg, rgba(32, 32, 48, 0.98), rgba(24, 24, 37, 0.96));
    animation: fade-in-up 0.8s ease-out backwards;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

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

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(166, 115, 230, 0.28);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: auto -90px -120px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 158, 255, 0.18);
    background: rgba(166, 115, 230, 0.12);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-price-wrap {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.pricing-price {
    font-size: clamp(2.65rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 0.95;
    color: var(--text-primary);
    letter-spacing: -0.05em;
}

.pricing-compare {
    min-height: 1.5em;
    margin-bottom: 1.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--accent-light);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.pricing-note--tight {
    margin: 0;
}

.pricing-note--spacious {
    margin-bottom: 1.75rem;
}

.pricing-cta {
    margin-top: auto;
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.pricing-cta--featured {
    border: none;
    background: linear-gradient(135deg, rgba(166, 115, 230, 0.96), rgba(196, 158, 255, 0.98));
    color: var(--bg-primary);
    box-shadow: 0 16px 34px rgba(166, 115, 230, 0.24);
}

.pricing-cta--secondary {
    border: 1px solid rgba(166, 115, 230, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.pricing-cta:hover {
    transform: translateY(-2px);
}

.pricing-cta--featured:hover {
    box-shadow: 0 20px 40px rgba(166, 115, 230, 0.3);
}

.pricing-cta--secondary:hover {
    border-color: rgba(166, 115, 230, 0.34);
    background: rgba(166, 115, 230, 0.08);
}

.pricing-meta {
    margin-top: 0.85rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-tertiary);
}

.pricing-card--featured {
    border-color: rgba(166, 115, 230, 0.32);
    background:
        radial-gradient(circle at top right, rgba(166, 115, 230, 0.18), transparent 34%),
        linear-gradient(160deg, rgba(35, 31, 54, 0.98), rgba(23, 22, 35, 0.98));
    box-shadow: 0 24px 56px rgba(8, 8, 18, 0.34);
    animation: fade-in-up 0.8s ease-out backwards, pricing-feature-breathe 5.6s ease-in-out infinite;
}

.pricing-card--featured::before {
    background: radial-gradient(circle, rgba(166, 115, 230, 0.22), rgba(166, 115, 230, 0));
}

.pricing-card--featured .pricing-price {
    color: var(--accent-light);
}

.pricing-card--secondary {
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        linear-gradient(160deg, rgba(26, 26, 39, 0.98), rgba(22, 22, 34, 0.96));
}

.pricing-card--secondary::before {
    background: radial-gradient(circle, rgba(166, 115, 230, 0.14), rgba(166, 115, 230, 0));
}

@keyframes pricing-feature-breathe {
    0%,
    100% {
        box-shadow: 0 24px 56px rgba(8, 8, 18, 0.34), 0 0 0 rgba(166, 115, 230, 0);
    }
    50% {
        box-shadow: 0 28px 64px rgba(8, 8, 18, 0.4), 0 0 36px rgba(166, 115, 230, 0.12);
    }
}

.pricing-compare--empty {
    min-height: 1.5em;
    margin-bottom: 1.75rem;
}

.pricing-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 600px;
    margin: 1.75rem auto 0;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: rgba(166, 115, 230, 0.06);
    border: 1px solid rgba(166, 115, 230, 0.1);
}

.pricing-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent-light);
    opacity: 0.7;
}

.pricing-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card--secondary {
        min-height: 0;
    }

    .pricing-info {
        margin-top: 1.25rem;
    }
}

/* ============================================
   QR CODE BLOCK
   ============================================ */
#qr-download {
    background: transparent;
    padding-top: 30px;
}

.qr-block {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 2.25rem;
    max-width: 760px;
    margin: 0 auto;
}

.qr-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 176px;
    flex-shrink: 0;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(166, 115, 230, 0.14), transparent 62%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(166, 115, 230, 0.12);
    box-shadow: 0 20px 40px rgba(8, 8, 18, 0.22);
}

.qr-code svg {
    width: 120px;
    height: 120px;
}

.qr-text {
    max-width: 30rem;
    padding: 0;
}

.qr-kicker {
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.qr-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.qr-scan {
    margin-bottom: 0.85rem !important;
    padding: 0;
}

.qr-platform {
    margin-top: 0 !important;
    color: var(--text-primary) !important;
}

.qr-platform strong {
    color: var(--accent-light);
}

@media (max-width: 640px) {
    .qr-block {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        justify-items: center;
    }

    .qr-code {
        width: 156px;
        height: 156px;
        border-radius: 24px;
    }

    .qr-code svg {
        width: 108px;
        height: 108px;
    }

    .qr-text {
        max-width: 32ch;
        padding: 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-card);
    padding: 2.75rem 1rem;
    margin-top: 80px;
    border-top: 1px solid rgba(166, 115, 230, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.8fr) minmax(220px, 0.9fr);
    gap: 2.5rem;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--accent-light);
}

/* ============================================
   SCROLL REVEAL INTERSECTION OBSERVER
   ============================================ */
.section-reveal {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

            .scenario-tabs,
            .phases-grid,
            .pricing-grid,
            .wellness-nav {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

    footer {
        padding: 2.25rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-brand {
        max-width: none;
    }
}
