﻿@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Яркая палитра: лайм #B4D944, фиолетовый #BF5FB3, жёлтый #F4F34A, оранжевый #FF8844, красный #FF4433 */
    --ink: #3a1635;
    --ink-soft: #5c3a56;
    --ink-mute: #8a6d86;
    --clay: #FF8844;
    --clay-soft: #ffd9c0;
    --clay-deep: #FF4433;
    --deep-soft: #ffc8c2;
    --rose: #F4F34A;
    --rose-soft: #faf9b8;
    --sand: #fef9b0;
    --cream: #fffef8;
    --paper: #fffce5;
    --sage: #B4D944;
    --sage-soft: #e4f5a8;
    --plum: #BF5FB3;
    --plum-soft: #ecc8e8;
    /* Очень мягкие фоновые тона для секций */
    --tint-sage: #f3faea;
    --tint-plum: #faf1f8;
    --tint-clay: #fff3e9;
    --tint-rose: #fdfbe5;
    --line: #e8ddd4;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-soft: 0 4px 20px rgba(58, 22, 53, 0.06);
    --shadow-card: 0 16px 48px rgba(58, 22, 53, 0.09);
    --shadow-hover: 0 28px 64px rgba(58, 22, 53, 0.13);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--cream);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.v2b6-area-panel-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    color: var(--cream);
    padding: 18px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid var(--clay);
}

.v2b6-area-panel-cookie-notice.show {
    transform: translateY(0);
}

.v2b6-area-panel-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.95rem;
}

.v2b6-area-panel-cookie-accept,
.v2b6-area-panel-cookie-manage {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v2b6-area-panel-cookie-manage {
    background: transparent;
    border: 1px solid var(--cream);
}

/* Cookie preferences modal (Manage) */
.v2b6-area-panel-cookie-prefs-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background-color: rgba(58, 22, 53, 0.55);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.v2b6-area-panel-cookie-prefs-dialog {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 28px 28px 24px;
    box-shadow: 0 24px 48px rgba(58, 22, 53, 0.12);
    animation: v2b6CookiePrefsIn 0.25s ease;
}

@keyframes v2b6CookiePrefsIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.v2b6-area-panel-cookie-prefs-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--ink-mute);
    cursor: pointer;
    padding: 4px 8px;
}

.v2b6-area-panel-cookie-prefs-close:hover {
    color: var(--clay);
}

.v2b6-area-panel-cookie-prefs-title {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0 36px 12px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clay);
}

.v2b6-area-panel-cookie-prefs-lead {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0 0 20px;
}

.v2b6-area-panel-cookie-prefs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2b6-area-panel-cookie-prefs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.v2b6-area-panel-cookie-prefs-row:last-of-type {
    border-bottom: none;
}

.v2b6-area-panel-cookie-prefs-text strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 4px;
}

.v2b6-area-panel-cookie-prefs-text span {
    font-size: 0.88rem;
    color: var(--ink-mute);
    line-height: 1.45;
}

.v2b6-area-panel-cookie-prefs-badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    border: 1px solid var(--sage-soft);
    padding: 6px 10px;
    border-radius: 10px;
    background: var(--paper);
}

.v2b6-area-panel-cookie-prefs-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.v2b6-area-panel-cookie-prefs-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.v2b6-area-panel-cookie-prefs-slider {
    position: absolute;
    inset: 0;
    background: var(--line);
    border-radius: 26px;
    transition: background 0.2s;
}

.v2b6-area-panel-cookie-prefs-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--cream);
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(58, 22, 53, 0.2);
}

.v2b6-area-panel-cookie-prefs-switch input:checked + .v2b6-area-panel-cookie-prefs-slider {
    background: var(--clay);
}

.v2b6-area-panel-cookie-prefs-switch input:checked + .v2b6-area-panel-cookie-prefs-slider::before {
    transform: translateX(22px);
}

.v2b6-area-panel-cookie-prefs-switch input:focus-visible + .v2b6-area-panel-cookie-prefs-slider {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.v2b6-area-panel-cookie-prefs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.v2b6-area-panel-cookie-prefs-save {
    flex: 1;
    min-width: 140px;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    background: var(--ink);
    color: var(--cream);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.v2b6-area-panel-cookie-prefs-save:hover {
    background: var(--clay);
}

.v2b6-area-panel-cookie-prefs-accept-all {
    flex: 1;
    min-width: 140px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.v2b6-area-panel-cookie-prefs-accept-all:hover {
    border-color: var(--clay);
    color: var(--clay);
}

@media (max-width: 480px) {
    .v2b6-area-panel-cookie-prefs-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .v2b6-area-panel-cookie-prefs-switch {
        align-self: flex-end;
    }
}

.v2b6-area-panel-main-header {
    background: rgba(255, 254, 248, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 26px 0 18px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
}

.v2b6-area-panel-main-header.is-scrolled {
    background: rgba(255, 254, 248, 0.96);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-soft);
    padding: 18px 0 14px;
}

.v2b6-deco-palette-bar {
    height: 4px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.v2b6-deco-palette-bar span {
    flex: 1;
    height: 100%;
}

.v2b6-deco-palette-bar span:nth-child(1) { background: var(--sage); }
.v2b6-deco-palette-bar span:nth-child(2) { background: var(--plum); }
.v2b6-deco-palette-bar span:nth-child(3) { background: var(--rose); }
.v2b6-deco-palette-bar span:nth-child(4) { background: var(--clay); }
.v2b6-deco-palette-bar span:nth-child(5) { background: var(--clay-deep); }

.v2b6-area-panel-header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.v2b6-area-panel-logo-section {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

a.v2b6-area-panel-logo-section:visited {
    color: inherit;
}

a.v2b6-area-panel-logo-section:hover,
a.v2b6-area-panel-logo-section:active {
    text-decoration: none;
}

a.v2b6-area-panel-logo-section:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 4px;
    border-radius: 10px;
}

.v2b6-area-panel-brand-logo {
    display: none;
}

.v2b6-area-panel-logo-section::before {
    content: 'LARIVYN';
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 600;
    font-size: 1.7rem;
    letter-spacing: 0.18em;
    color: var(--ink);
}

.v2b6-area-panel-logo-section::after {
    content: '·';
    color: var(--clay);
    font-size: 1.7rem;
    line-height: 1;
}

.v2b6-area-panel-navigation-menu {
    display: flex;
    gap: 38px;
}

.v2b6-area-panel-nav-link {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.v2b6-area-panel-nav-link:hover {
    color: var(--plum);
}

.v2b6-area-panel-nav-link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
}

.v2b6-area-panel-nav-link.is-active {
    color: var(--plum);
    font-weight: 600;
}

.v2b6-area-panel-nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
}

.v2b6-area-panel-discount-button {
    background: var(--plum);
    color: var(--cream);
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.v2b6-area-panel-discount-button:hover {
    background: var(--clay-deep);
}

.v2b6-area-panel-hero-block {
    background: var(--paper);
    padding: 100px 0 90px;
    overflow: hidden;
    position: relative;
}

.v2b6-area-panel-hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.v2b6-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 8px 18px 8px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
}

.v2b6-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    animation: v2b6PulseDot 2.4s ease-in-out infinite;
}

@keyframes v2b6PulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.35); opacity: 0.65; }
}

.v2b6-area-panel-hero-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 28px;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.v2b6-hero-accent {
    color: var(--plum);
    position: relative;
    display: inline-block;
}

.v2b6-hero-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 12px;
    background: var(--plum-soft);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.7;
}

.v2b6-area-panel-hero-subtitle {
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin-bottom: 44px;
    max-width: 480px;
    line-height: 1.6;
}

.v2b6-area-panel-hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 44px;
    max-width: 480px;
}

.v2b6-area-panel-stat-item {
    text-align: left;
    flex: 1;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.v2b6-area-panel-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-stat-number {
    display: block;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.v2b6-area-panel-stat-label {
    font-size: 0.78rem;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}

.v2b6-area-panel-cta-primary {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: 0 8px 28px rgba(58, 22, 53, 0.18);
}

.v2b6-area-panel-cta-primary:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(191, 95, 179, 0.35);
}

.v2b6-area-panel-hero-visual {
    position: relative;
}

.v2b6-area-panel-hero-visual::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: -28px;
    bottom: -28px;
    background: var(--sage-soft);
    border-radius: var(--radius-lg);
    z-index: 0;
    transition: transform 0.6s var(--ease-smooth);
}

.v2b6-area-panel-hero-visual:hover::before {
    transform: rotate(-1.5deg) scale(1.02);
}

.v2b6-area-panel-hero-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-card);
    transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}

.v2b6-area-panel-hero-visual:hover .v2b6-area-panel-hero-image {
    transform: scale(1.015);
    box-shadow: var(--shadow-hover);
}

.v2b6-area-panel-problem-section {
    padding: 130px 0;
    background: var(--tint-sage);
}

.v2b6-area-panel-container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.v2b6-area-panel-zigzag-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.v2b6-section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--plum-soft);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.v2b6-section-label--sage  { color: #6a8a20; background: var(--sage-soft); }
.v2b6-section-label--clay  { color: #c45a10; background: var(--clay-soft); }
.v2b6-section-label--rose  { color: #8a7800; background: var(--rose-soft); }

.v2b6-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

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

.v2b6-reveal-delay-1 { transition-delay: 0.1s; }
.v2b6-reveal-delay-2 { transition-delay: 0.2s; }
.v2b6-reveal-delay-3 { transition-delay: 0.3s; }

.v2b6-area-panel-section-heading {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-section-heading::before {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--sage);
    border-radius: 4px;
    margin-bottom: 24px;
}

.v2b6-area-panel-content-text {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin-bottom: 30px;
    line-height: 1.75;
}

.v2b6-area-panel-highlight-box {
    background: var(--ink);
    padding: 32px 36px;
    border-radius: var(--radius-md);
    color: var(--cream);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.55;
    border-left: 5px solid var(--sage);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}

.v2b6-area-panel-image-column:hover .v2b6-area-panel-feature-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.v2b6-area-panel-solution-block {
    background: var(--tint-clay);
    padding: 130px 0;
    position: relative;
}

.v2b6-area-panel-container-standard {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

.v2b6-area-panel-reversed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.v2b6-area-panel-visual-content {
    position: relative;
}

.v2b6-area-panel-solution-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.6s var(--ease-smooth);
}

.v2b6-area-panel-visual-content:hover .v2b6-area-panel-solution-image {
    transform: scale(1.02);
}

.v2b6-area-panel-floating-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--cream);
    color: var(--ink);
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 2px solid var(--sage);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.v2b6-area-panel-section-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-section-title::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--sage);
    margin-bottom: 24px;
}

.v2b6-area-panel-description-text {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin-bottom: 40px;
    line-height: 1.75;
}

.v2b6-area-panel-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.v2b6-area-panel-benefit-item {
    background: var(--cream);
    padding: 26px;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--clay);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.v2b6-area-panel-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-benefit-item h4 {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.v2b6-area-panel-benefit-item p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.v2b6-area-panel-company-intro {
    padding: 130px 0;
    background: var(--tint-plum);
}

.v2b6-area-panel-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.v2b6-area-panel-intro-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
    align-items: start;
}

.v2b6-area-panel-brand-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 3rem;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-brand-title::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--plum);
    margin-bottom: 24px;
}

.v2b6-area-panel-story-text {
    font-size: 1.12rem;
    color: var(--ink-soft);
    margin-bottom: 44px;
    line-height: 1.8;
}

.v2b6-area-panel-expertise-row {
    display: flex;
    gap: 24px;
}

.v2b6-area-panel-expert-card {
    background: var(--cream);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    text-align: left;
    flex: 1;
    border: 1px solid var(--line);
    border-top: 4px solid var(--plum);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.v2b6-area-panel-expert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-expert-card h4 {
    color: var(--plum);
    margin-bottom: 8px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v2b6-area-panel-expert-card p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.v2b6-area-panel-service-features {
    background: var(--ink);
    color: var(--cream);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-service-features h3 {
    color: var(--rose);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.8rem;
    margin-bottom: 28px;
    font-weight: 500;
}

.v2b6-area-panel-feature-list {
    list-style: none;
}

.v2b6-area-panel-feature-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--cream);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 254, 247, 0.12);
}

.v2b6-area-panel-feature-list li:last-child {
    border-bottom: none;
}

.v2b6-area-panel-feature-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: bold;
    top: 14px;
}

.v2b6-area-panel-menu-showcase {
    background: var(--cream);
    padding: 130px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-container-full {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
}

.v2b6-area-panel-menu-header {
    text-align: center;
    margin-bottom: 90px;
}

.v2b6-area-panel-menu-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-menu-subtitle {
    font-size: 1.15rem;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Bricolage Grotesque', serif;
}

.v2b6-area-panel-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.v2b6-area-panel-meal-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 5px solid var(--clay);
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
    box-shadow: var(--shadow-soft);
}

.v2b6-area-panel-meal-card:nth-child(5n+1) { border-top-color: var(--sage); }
.v2b6-area-panel-meal-card:nth-child(5n+2) { border-top-color: var(--plum); }
.v2b6-area-panel-meal-card:nth-child(5n+3) { border-top-color: var(--rose); }
.v2b6-area-panel-meal-card:nth-child(5n+4) { border-top-color: var(--clay); }
.v2b6-area-panel-meal-card:nth-child(5n+5) { border-top-color: var(--clay-deep); }

.v2b6-area-panel-meal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.v2b6-area-panel-card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.v2b6-area-panel-meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.v2b6-area-panel-meal-card:hover .v2b6-area-panel-meal-image {
    transform: scale(1.06);
}

.v2b6-area-panel-calorie-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--cream);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}

.v2b6-area-panel-card-content {
    padding: 34px 32px;
}

.v2b6-area-panel-meal-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.9rem;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.v2b6-area-panel-meal-description {
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.65;
    font-size: 0.98rem;
}

.v2b6-area-panel-meal-target {
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v2b6-area-panel-meal-card:nth-child(5n+1) .v2b6-area-panel-meal-target { color: var(--sage); }
.v2b6-area-panel-meal-card:nth-child(5n+2) .v2b6-area-panel-meal-target { color: var(--plum); }
.v2b6-area-panel-meal-card:nth-child(5n+3) .v2b6-area-panel-meal-target { color: #b8a800; }
.v2b6-area-panel-meal-card:nth-child(5n+5) .v2b6-area-panel-meal-target { color: var(--clay-deep); }

.v2b6-area-panel-calories-per-day {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 500;
    margin-bottom: 26px;
    font-size: 1.1rem;
    font-style: italic;
}

.v2b6-area-panel-pricing-options {
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.v2b6-area-panel-price-row {
    display: block;
    padding: 12px 0;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
}

.v2b6-area-panel-order-button {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 16px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.35s var(--ease-smooth);
}

.v2b6-area-panel-order-button:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(191, 95, 179, 0.3);
}

.v2b6-area-panel-testimonial-preview {
    background: var(--tint-rose);
    padding: 110px 0;
}

.v2b6-area-panel-container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.v2b6-area-panel-testimonial-heading {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.8rem;
    color: var(--ink);
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-testimonial-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.v2b6-area-panel-testimonial-item {
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--plum);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.v2b6-area-panel-testimonial-item:nth-child(even) {
    border-top-color: var(--sage);
}

.v2b6-area-panel-testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-testimonial-text {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 22px;
    line-height: 1.6;
    font-style: italic;
}

.v2b6-area-panel-testimonial-author {
    color: var(--clay);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v2b6-area-panel-testimonial-link {
    display: inline-block;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--clay);
    transition: color 0.3s;
}

.v2b6-area-panel-testimonial-link:hover {
    color: var(--clay);
}

.v2b6-area-panel-cta-section {
    background: var(--ink);
    padding: 120px 0;
    text-align: center;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-cta-section::before,
.v2b6-area-panel-cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.12;
}

.v2b6-area-panel-cta-section::before {
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: var(--clay);
}

.v2b6-area-panel-cta-section::after {
    bottom: -100px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: var(--plum);
}

.v2b6-area-panel-container-centered {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.v2b6-area-panel-cta-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 3.2rem;
    color: var(--cream);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-cta-description {
    font-size: 1.2rem;
    color: var(--sand);
    margin-bottom: 48px;
    opacity: 0.95;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
}

.v2b6-area-panel-container-centered ul {
    list-style: none;
    padding-left: 0;
}

.v2b6-area-panel-container-centered li {
    margin-bottom: 12px;
}

a.text:active,
a.text:hover,
a.text {
    text-decoration: none;
    color: var(--cream);
}

a.text {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.85;
    border-bottom: 1px solid rgba(255, 254, 247, 0.22);
}

a.text:hover {
    color: var(--rose);
    border-bottom-color: var(--rose);
}

.v2b6-area-panel-cta-button-large {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 22px 52px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 10px 32px rgba(255, 136, 68, 0.35);
}

.v2b6-area-panel-cta-button-large:hover {
    background: var(--cream);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 254, 248, 0.2);
}

.v2b6-area-panel-selected-package {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding: 22px;
    background: var(--paper);
    border-radius: 10px;
    border: 1px solid var(--line);
}

.v2b6-area-panel-package-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.v2b6-area-panel-package-details {
    flex: 1;
}

.v2b6-area-panel-package-details h4 {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.v2b6-area-panel-package-details p {
    color: var(--ink-soft);
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.v2b6-area-panel-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 22, 53, 0.62);
    backdrop-filter: blur(4px);
}

.v2b6-area-panel-modal-content {
    background-color: var(--cream);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    position: relative;
    animation: modalSlideIn 0.35s ease;
}

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

.v2b6-area-panel-modal-close {
    color: var(--cream);
    font-size: 28px;
    font-weight: 300;
    position: absolute;
    right: 18px;
    top: 14px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s;
}

.v2b6-area-panel-modal-close:hover {
    color: var(--rose);
}

.v2b6-area-panel-modal-title {
    background: var(--ink);
    color: var(--cream);
    padding: 26px 32px;
    margin: 0;
    border-radius: 16px 16px 0 0;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 3px solid var(--clay);
}

.v2b6-area-panel-modal-body {
    padding: 34px 32px;
}

.v2b6-area-panel-duration-select {
    width: 100%;
    padding: 14px;
    margin: 16px 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
}

.v2b6-area-panel-plan-description {
    color: var(--ink-mute);
    margin: 20px 0;
    font-style: italic;
    font-family: 'Bricolage Grotesque', serif;
}

.v2b6-area-panel-delivery-info {
    background: var(--paper);
    padding: 22px;
    border-radius: 10px;
    margin: 22px 0;
    border-left: 3px solid var(--clay);
}

.v2b6-area-panel-delivery-info h4 {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    margin-bottom: 16px;
    font-weight: 600;
}

.v2b6-area-panel-delivery-info ul {
    list-style: none;
    padding-left: 0;
}

.v2b6-area-panel-delivery-info li {
    padding: 6px 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.v2b6-area-panel-proceed-button {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.v2b6-area-panel-proceed-button:hover {
    background: var(--clay);
}

.v2b6-area-panel-discount-form {
    max-width: 100%;
}

.v2b6-area-panel-form-group {
    margin-bottom: 22px;
}

.v2b6-area-panel-form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v2b6-area-panel-form-input,
.v2b6-area-panel-form-select,
.v2b6-area-panel-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s;
    background: var(--paper);
    color: var(--ink);
}

.v2b6-area-panel-form-input:focus,
.v2b6-area-panel-form-select:focus {
    outline: none;
    border-color: var(--clay);
    background: var(--cream);
}

.v2b6-area-panel-submit-button {
    width: 100%;
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.v2b6-area-panel-submit-button:hover {
    background: var(--clay-deep);
}

.v2b6-area-panel-order-hero {
    background: var(--paper);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-order-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.v2b6-area-panel-order-subtitle {
    font-size: 1.18rem;
    color: var(--ink-soft);
    margin-bottom: 44px;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.v2b6-area-panel-order-benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 0 auto;
}

.v2b6-area-panel-benefit-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.92rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    box-shadow: var(--shadow-soft);
}

.v2b6-area-panel-check-icon {
    background: var(--sage);
    color: var(--ink);
    border-radius: var(--radius-pill);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.v2b6-area-panel-form-section {
    padding: 110px 0;
    background: var(--tint-clay);
}

.v2b6-area-panel-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.v2b6-area-panel-form-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-form-image {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.v2b6-area-panel-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(58, 22, 53, 0.88));
    color: var(--cream);
    padding: 40px 32px 32px;
}

.v2b6-area-panel-visual-overlay h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--cream);
    font-weight: 500;
}

.v2b6-area-panel-form-container {
    background: var(--cream);
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 4px solid var(--clay);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-form-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.v2b6-area-panel-form-description {
    color: var(--ink-soft);
    margin-bottom: 36px;
    font-size: 1.05rem;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
}

.v2b6-area-panel-order-form {
    max-width: 100%;
}

.v2b6-area-panel-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.v2b6-area-panel-form-textarea {
    resize: vertical;
    min-height: 110px;
}

.v2b6-area-panel-form-textarea:focus {
    outline: none;
    border-color: var(--clay);
    background: var(--cream);
}

.v2b6-area-panel-consent-section {
    margin: 32px 0;
    padding: 22px;
    background: var(--paper);
    border-radius: 10px;
    border-left: 3px solid var(--clay);
}

.v2b6-area-panel-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

.v2b6-area-panel-checkbox {
    display: none;
}

.v2b6-area-panel-checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--ink-mute);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--cream);
}

.v2b6-area-panel-checkbox:checked + .v2b6-area-panel-checkmark {
    background: var(--clay);
    border-color: var(--clay);
}

.v2b6-area-panel-checkbox:checked + .v2b6-area-panel-checkmark:after {
    content: '✓';
    color: var(--cream);
    font-weight: bold;
    font-size: 12px;
}

.v2b6-area-panel-consent-section a {
    color: var(--clay);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--clay);
}

.v2b6-area-panel-consent-section a:hover {
    color: var(--clay-deep);
}

.v2b6-area-panel-submit-order-button {
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 20px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 8px 28px rgba(58, 22, 53, 0.15);
}

.v2b6-area-panel-submit-order-button:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(191, 95, 179, 0.3);
}

.v2b6-area-panel-payment-info {
    background: var(--tint-rose);
    padding: 80px 0;
}

.v2b6-area-panel-payment-card {
    background: var(--cream);
    padding: 50px 44px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--line);
    border-top: 4px solid var(--rose);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-payment-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
}

.v2b6-area-panel-payment-content {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
}

.v2b6-area-panel-payment-icon {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cream);
    background: var(--ink);
    padding: 0;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v2b6-area-panel-payment-text h4 {
    color: var(--clay);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.5rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.v2b6-area-panel-payment-text p {
    color: var(--ink-soft);
    margin-bottom: 22px;
    line-height: 1.7;
}

.v2b6-area-panel-payment-methods {
    list-style: none;
    padding: 0;
}

.v2b6-area-panel-payment-methods li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.v2b6-area-panel-payment-methods li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--clay);
    font-weight: bold;
}

.v2b6-area-panel-guarantee-section {
    background: var(--tint-sage);
    padding: 100px 0;
}

.v2b6-area-panel-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.v2b6-area-panel-guarantee-item {
    text-align: left;
    padding: 36px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    border-top: 3px solid var(--clay);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-top-color 0.35s;
}

.v2b6-area-panel-guarantee-item:nth-child(5n+1) { border-top-color: var(--sage); }
.v2b6-area-panel-guarantee-item:nth-child(5n+2) { border-top-color: var(--plum); }
.v2b6-area-panel-guarantee-item:nth-child(5n+3) { border-top-color: var(--rose); }
.v2b6-area-panel-guarantee-item:nth-child(5n+4) { border-top-color: var(--clay); }
.v2b6-area-panel-guarantee-item:nth-child(5n+5) { border-top-color: var(--clay-deep); }

.v2b6-area-panel-guarantee-item.is-visible:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-guarantee-icon {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clay);
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 18px;
    display: inline-block;
    height: auto;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.v2b6-area-panel-guarantee-item h4 {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.v2b6-area-panel-guarantee-item p {
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}

.v2b6-area-panel-discount-offer-section {
    background: var(--cream);
    padding: 100px 0;
    border-top: 1px solid var(--line);
}

.v2b6-area-panel-discount-cta {
    text-align: center;
    padding: 60px 44px;
    background: var(--ink);
    border-radius: 16px;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-discount-cta::before {
    content: '15%';
    position: absolute;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 18rem;
    font-weight: 600;
    color: rgba(255, 136, 68, 0.1);
    top: -60px;
    right: -40px;
    line-height: 1;
    pointer-events: none;
}

.v2b6-area-panel-discount-cta h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2rem;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.v2b6-area-panel-discount-cta p {
    margin-bottom: 32px;
    color: var(--sand);
    font-size: 1.1rem;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.v2b6-area-panel-discount-cta-button {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    position: relative;
    z-index: 1;
}

.v2b6-area-panel-discount-cta-button:hover {
    background: var(--cream);
    color: var(--ink);
    transform: translateY(-2px);
}

.v2b6-area-panel-success-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 22, 53, 0.68);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.v2b6-area-panel-success-modal {
    background: var(--cream);
    padding: 56px 44px;
    border-radius: 16px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    animation: successSlideIn 0.35s ease;
    border-top: 3px solid var(--clay);
}

@keyframes successSlideIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.v2b6-area-panel-success-icon {
    background: var(--ink);
    color: var(--cream);
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 28px;
    font-family: 'Bricolage Grotesque', serif;
}

.v2b6-area-panel-success-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 500;
}

.v2b6-area-panel-success-text {
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1.02rem;
}

.v2b6-area-panel-success-subtitle {
    color: var(--ink-mute);
    margin-bottom: 32px;
    font-size: 0.94rem;
    font-style: italic;
    font-family: 'Bricolage Grotesque', serif;
}

.v2b6-area-panel-success-button {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.v2b6-area-panel-success-button:hover {
    background: var(--clay-deep);
}

.v2b6-area-panel-testimonials-hero {
    background: var(--paper);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-testimonials-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.v2b6-area-panel-testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin-bottom: 48px;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.v2b6-area-panel-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 780px;
    margin: 0 auto;
}

.v2b6-area-panel-stat-block {
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    min-width: 160px;
    flex: 1;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.v2b6-area-panel-stat-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-stat-block .v2b6-area-panel-stat-number {
    display: block;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--plum);
    margin-bottom: 8px;
    line-height: 1;
}

.v2b6-area-panel-stat-text {
    font-size: 0.78rem;
    color: var(--ink-mute);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.v2b6-area-panel-reviews-showcase {
    background: var(--tint-plum);
    padding: 120px 0;
}

.v2b6-area-panel-reviews-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.v2b6-area-panel-reviews-header .v2b6-section-label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.v2b6-area-panel-reviews-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.v2b6-area-panel-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
}

.v2b6-area-panel-testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--clay);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(24px);
}

.v2b6-area-panel-testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v2b6-area-panel-testimonial-card:nth-child(5n+1) { border-top-color: var(--sage); }
.v2b6-area-panel-testimonial-card:nth-child(5n+2) { border-top-color: var(--plum); }
.v2b6-area-panel-testimonial-card:nth-child(5n+3) { border-top-color: var(--rose); }
.v2b6-area-panel-testimonial-card:nth-child(5n+4) { border-top-color: var(--clay); }
.v2b6-area-panel-testimonial-card:nth-child(5n+5) { border-top-color: var(--clay-deep); }

.v2b6-area-panel-testimonial-card.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.v2b6-area-panel-legal-wrapper .v2b6-section-label,
.v2b6-area-panel-menu-header .v2b6-section-label,
.v2b6-area-panel-form-container .v2b6-section-label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.v2b6-area-panel-form-container .v2b6-section-label {
    margin-left: 0;
    margin-right: 0;
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-featured {
    grid-column: span 2;
    background: var(--ink);
    border-color: var(--clay);
    color: var(--cream);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-featured .v2b6-area-panel-reviewer-name {
    color: var(--cream);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-featured .v2b6-area-panel-reviewer-location {
    color: var(--sand);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-featured .v2b6-area-panel-review-text {
    color: var(--cream);
    border-left-color: var(--clay);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-featured .v2b6-area-panel-review-date {
    color: var(--sand);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-wide {
    grid-column: span 2;
    background: var(--sand);
    border-top-color: var(--ink);
}

.v2b6-area-panel-testimonial-card.v2b6-area-panel-highlight {
    background: var(--cream);
    border-top: 3px solid var(--sage);
}

.v2b6-area-panel-customer-photo {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.v2b6-area-panel-reviewer-image,
.v2b6-area-panel-reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    flex-shrink: 0;
}

.v2b6-area-panel-reviewer-avatar.av-clay   { background: var(--clay); }
.v2b6-area-panel-reviewer-avatar.av-ink    { background: var(--ink); }
.v2b6-area-panel-reviewer-avatar.av-sage   { background: var(--sage); }
.v2b6-area-panel-reviewer-avatar.av-rose   { background: var(--rose); color: var(--ink); }
.v2b6-area-panel-reviewer-avatar.av-deep   { background: var(--clay-deep); }
.v2b6-area-panel-reviewer-avatar.av-soft   { background: var(--sage-soft); color: var(--ink); }
.v2b6-area-panel-reviewer-avatar.av-sand   { background: var(--sand); color: var(--ink); }
.v2b6-area-panel-reviewer-avatar.av-cream  { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }

.v2b6-area-panel-delivery-badge {
    position: static;
    background: var(--clay);
    color: var(--cream);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    align-self: flex-start;
    margin-left: auto;
}

.v2b6-area-panel-review-content {
    text-align: left;
}

.v2b6-area-panel-review-stars {
    color: var(--clay);
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: 4px;
}

.v2b6-area-panel-reviewer-name {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 2px;
    font-weight: 600;
}

.v2b6-area-panel-reviewer-location {
    color: var(--ink-mute);
    font-size: 0.84rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.v2b6-area-panel-customer-photo > div:first-of-type + div {
    flex: 1;
}

.v2b6-area-panel-review-text {
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 1.08rem;
    text-align: left;
    border-left: 2px solid var(--clay);
    padding-left: 18px;
    margin-left: 0;
}

.v2b6-area-panel-review-date {
    color: var(--ink-mute);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.v2b6-area-panel-success-stats {
    background: var(--ink);
    padding: 100px 0;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-success-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--clay);
}

.v2b6-area-panel-stats-header {
    text-align: center;
    margin-bottom: 70px;
}

.v2b6-area-panel-stats-header .v2b6-section-label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.v2b6-area-panel-stats-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.v2b6-area-panel-stats-subtitle {
    font-size: 1.15rem;
    color: var(--sand);
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
}

.v2b6-area-panel-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.v2b6-area-panel-result-item {
    text-align: left;
    background: rgba(255, 254, 247, 0.04);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 254, 247, 0.2);
    border-top: 2px solid var(--sage);
    transition: transform 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth);
}

.v2b6-area-panel-result-item:nth-child(5n+1) { border-top-color: var(--sage); }
.v2b6-area-panel-result-item:nth-child(5n+2) { border-top-color: var(--plum); }
.v2b6-area-panel-result-item:nth-child(5n+3) { border-top-color: var(--rose); }
.v2b6-area-panel-result-item:nth-child(5n+4) { border-top-color: var(--clay); }
.v2b6-area-panel-result-item:nth-child(5n+5) { border-top-color: var(--clay-deep); }

.v2b6-area-panel-result-item.is-visible:hover {
    transform: translateY(-4px);
    background: rgba(255, 254, 247, 0.08);
}

.v2b6-area-panel-result-number {
    display: block;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 3.4rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--rose);
    line-height: 1;
}

.v2b6-area-panel-result-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--cream);
}

.v2b6-area-panel-result-period {
    font-size: 0.82rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v2b6-area-panel-thank-you-simple {
    min-height: 100vh;
    background: var(--tint-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-thank-you-container {
    max-width: 640px;
    background: var(--cream);
    padding: 64px 56px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 5px solid var(--plum);
    text-align: center;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.v2b6-area-panel-success-icon-simple {
    background: var(--sage);
    color: var(--ink);
    width: 88px;
    height: 88px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 auto 36px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

.v2b6-area-panel-thank-you-main-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.v2b6-area-panel-thank-you-message {
    margin-bottom: 44px;
}

.v2b6-area-panel-confirmation-text {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 32px;
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
}

.v2b6-area-panel-payment-notice {
    background: var(--tint-sage);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
    text-align: left;
}

.v2b6-area-panel-payment-notice h2 {
    color: var(--ink);
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.v2b6-area-panel-payment-notice p {
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

.v2b6-area-panel-back-home-button {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.35s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: 0 8px 28px rgba(58, 22, 53, 0.15);
}

.v2b6-area-panel-back-home-button:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(191, 95, 179, 0.3);
}

.v2b6-area-panel-legal-hero {
    background: var(--paper);
    padding: 64px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v2b6-area-panel-legal-hero-tagline {
    font-family: 'Bricolage Grotesque', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 12px auto 0;
    line-height: 1.55;
}

.v2b6-area-panel-legal-content {
    background: var(--tint-plum);
    padding: 48px 0 100px;
}

.v2b6-area-panel-legal-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 56px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 5px solid var(--plum);
    box-shadow: var(--shadow-card);
}

.v2b6-area-panel-legal-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 22px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.v2b6-area-panel-legal-intro {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 50px;
    text-align: center;
    font-style: italic;
    font-family: 'Bricolage Grotesque', serif;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.v2b6-area-panel-legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.v2b6-area-panel-legal-section:last-of-type {
    border-bottom: none;
}

.v2b6-area-panel-legal-section h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.7rem;
    color: var(--plum);
    margin-bottom: 18px;
    font-weight: 500;
}

.v2b6-area-panel-legal-section p {
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.v2b6-area-panel-legal-section p:last-child {
    margin-bottom: 0;
}

.v2b6-area-panel-legal-footer {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.v2b6-area-panel-legal-footer p {
    color: var(--ink-mute);
    font-size: 0.92rem;
    font-style: italic;
    font-family: 'Bricolage Grotesque', serif;
}

.v2b6-area-panel-footer-section {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 0 30px;
    border-top: 4px solid var(--plum);
}

.v2b6-area-panel-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

.v2b6-area-panel-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
    margin-bottom: 50px;
}

.v2b6-area-panel-company-info h4,
.v2b6-area-panel-footer-links h4,
.v2b6-area-panel-footer-readings h4,
.v2b6-area-panel-disclaimer h4 {
    color: var(--rose);
    font-family: 'Bricolage Grotesque', serif;
    margin-bottom: 22px;
    font-size: 1.3rem;
    font-weight: 500;
}

.v2b6-area-panel-company-info p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--sand);
    font-size: 0.95rem;
}

.v2b6-area-panel-company-reg {
    font-size: 0.84rem;
    opacity: 0.7;
    margin-top: 18px;
}

.v2b6-area-panel-footer-links ul {
    list-style: none;
}

.v2b6-area-panel-footer-links li {
    margin-bottom: 12px;
}

.v2b6-area-panel-footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.v2b6-area-panel-footer-links a:hover {
    color: var(--clay);
}

.v2b6-area-panel-footer-readings .v2b6-area-panel-readings-list {
    list-style: none;
    padding: 0;
}

.v2b6-area-panel-footer-readings li {
    margin-bottom: 14px;
}

.v2b6-area-panel-footer-readings a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.88rem;
    line-height: 1.55;
    opacity: 0.85;
    transition: color 0.3s, opacity 0.3s;
}

.v2b6-area-panel-footer-readings a:hover {
    color: var(--clay);
    opacity: 1;
}

.v2b6-area-panel-disclaimer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--sand);
    opacity: 0.9;
}

.v2b6-area-panel-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 254, 247, 0.16);
    color: var(--sand);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

/* ── Decorative elements ── */

.v2b6-deco-marquee {
    overflow: hidden;
    background: var(--ink);
    color: var(--cream);
    padding: 16px 0;
}

.v2b6-deco-marquee-inner {
    display: flex;
    width: max-content;
    animation: v2b6MarqueeScroll 38s linear infinite;
}

.v2b6-deco-marquee--reverse .v2b6-deco-marquee-inner {
    animation-direction: reverse;
    animation-duration: 34s;
}

.v2b6-deco-marquee-group {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-right: 36px;
    flex-shrink: 0;
}

.v2b6-deco-marquee-item {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.v2b6-deco-marquee-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(255, 254, 248, 0.25);
}

.dot-sage  { background: var(--sage); }
.dot-plum  { background: var(--plum); }
.dot-rose  { background: var(--rose); }
.dot-clay  { background: var(--clay); }
.dot-deep  { background: var(--clay-deep); }

@keyframes v2b6MarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Floating orbs in hero */
.v2b6-deco-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.v2b6-deco-orb {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    background: transparent;
}

.orb-sage {
    width: 88px;
    height: 88px;
    border-color: var(--sage);
    opacity: 0.45;
    top: 10%;
    left: 3%;
    animation: v2b6OrbDrift 12s ease-in-out infinite;
}

.orb-plum {
    width: 56px;
    height: 56px;
    border-color: var(--plum);
    opacity: 0.4;
    top: 22%;
    right: 6%;
    animation: v2b6OrbDrift 14s ease-in-out infinite reverse;
}

.orb-clay {
    width: 40px;
    height: 40px;
    border-color: var(--clay);
    opacity: 0.5;
    bottom: 20%;
    left: 10%;
    animation: v2b6OrbDrift 10s ease-in-out infinite 1s;
}

.orb-rose {
    width: 64px;
    height: 64px;
    border-color: var(--rose);
    opacity: 0.45;
    bottom: 8%;
    right: 14%;
    animation: v2b6OrbDrift 11s ease-in-out infinite 0.5s reverse;
}

@keyframes v2b6OrbDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(8px, -12px) rotate(120deg); }
    66%      { transform: translate(-6px, 8px) rotate(240deg); }
}

/* Orbit ring around hero image */
.v2b6-deco-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112%;
    height: 112%;
    transform: translate(-50%, -50%);
    border: 2px dashed var(--plum-soft);
    border-radius: 50%;
    z-index: 0;
    animation: v2b6OrbitSpin 28s linear infinite;
}

.v2b6-deco-orbit::before {
    content: '';
    position: absolute;
    inset: 18%;
    border: 1px dashed var(--sage-soft);
    border-radius: 50%;
    animation: v2b6OrbitSpin 18s linear infinite reverse;
}

.v2b6-deco-orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--cream);
    box-shadow: var(--shadow-soft);
}

.v2b6-deco-orbit-dot.dot-sage  { top: -7px;  left: 50%; margin-left: -7px; background: var(--sage); }
.v2b6-deco-orbit-dot.dot-plum  { top: 50%;   right: -7px; margin-top: -7px; background: var(--plum); }
.v2b6-deco-orbit-dot.dot-clay  { bottom: -7px; left: 50%; margin-left: -7px; background: var(--clay); }
.v2b6-deco-orbit-dot.dot-rose  { top: 50%;  left: -7px; margin-top: -7px; background: var(--rose); }
.v2b6-deco-orbit-dot.dot-deep  { top: 14%;  right: 10%; background: var(--clay-deep); width: 10px; height: 10px; }

@keyframes v2b6OrbitSpin {
    from { rotate: 0deg; }
    to   { rotate: 360deg; }
}

/* Floating circles in menu section */
.v2b6-deco-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.v2b6-deco-float {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.28;
    animation: v2b6FloatSpin 36s linear infinite;
}

.float-sage {
    width: 140px;
    height: 140px;
    border-color: var(--sage);
    top: 6%;
    right: 5%;
}

.float-plum {
    width: 90px;
    height: 90px;
    border-color: var(--plum);
    bottom: 10%;
    left: 3%;
    animation-direction: reverse;
    animation-duration: 28s;
}

.float-clay {
    width: 60px;
    height: 60px;
    border-color: var(--clay);
    top: 42%;
    left: 7%;
    animation-duration: 22s;
}

@keyframes v2b6FloatSpin {
    from { rotate: 0deg; }
    to   { rotate: 360deg; }
}

.v2b6-area-panel-menu-showcase .v2b6-area-panel-container-full {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .v2b6-deco-marquee-inner,
    .v2b6-deco-orb,
    .v2b6-deco-orbit,
    .v2b6-deco-orbit::before,
    .v2b6-deco-float,
    .v2b6-reveal {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .v2b6-hero-eyebrow-dot {
        animation: none;
    }
}

@media (max-width: 768px) {
    .v2b6-area-panel-hero-grid,
    .v2b6-area-panel-zigzag-layout,
    .v2b6-area-panel-reversed-grid,
    .v2b6-area-panel-intro-layout,
    .v2b6-area-panel-testimonial-carousel,
    .v2b6-area-panel-footer-grid,
    .v2b6-area-panel-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2b6-area-panel-menu-grid,
    .v2b6-area-panel-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .v2b6-area-panel-hero-title {
        font-size: 2.8rem;
    }

    .v2b6-area-panel-testimonials-title,
    .v2b6-area-panel-legal-title,
    .v2b6-area-panel-thank-you-main-title,
    .v2b6-area-panel-cta-title {
        font-size: 2.4rem;
    }

    .v2b6-area-panel-section-heading,
    .v2b6-area-panel-section-title,
    .v2b6-area-panel-brand-title,
    .v2b6-area-panel-menu-title {
        font-size: 2.2rem;
    }

    .v2b6-area-panel-header-wrapper {
        flex-direction: column;
        gap: 18px;
        padding: 0 20px;
    }

    .v2b6-area-panel-navigation-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px;
    }

    .v2b6-area-panel-hero-stats,
    .v2b6-area-panel-stats-row {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .v2b6-area-panel-selected-package {
        flex-direction: column;
        text-align: center;
    }

    .v2b6-area-panel-package-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .v2b6-area-panel-form-row {
        grid-template-columns: 1fr;
    }

    .v2b6-area-panel-order-benefits {
        flex-direction: column;
        align-items: center;
    }

    .v2b6-area-panel-payment-content {
        flex-direction: column;
        text-align: center;
    }

    .v2b6-area-panel-order-title {
        font-size: 2.4rem;
    }

    .v2b6-area-panel-discount-cta {
        padding: 40px 24px;
    }

    .v2b6-area-panel-discount-cta h3 {
        font-size: 1.6rem;
    }

    .v2b6-area-panel-discount-cta::before {
        font-size: 12rem;
    }

    .v2b6-area-panel-testimonial-card.v2b6-area-panel-featured,
    .v2b6-area-panel-testimonial-card.v2b6-area-panel-wide {
        grid-column: span 1;
    }

    .v2b6-area-panel-results-grid {
        grid-template-columns: 1fr;
    }

    .v2b6-area-panel-legal-wrapper {
        margin: 20px;
        padding: 36px 24px;
    }

    .v2b6-area-panel-thank-you-container {
        padding: 44px 28px;
        margin: 20px;
    }

    .v2b6-area-panel-form-container {
        padding: 32px 24px;
    }

    .v2b6-deco-orb.orb-plum,
    .v2b6-deco-orb.orb-rose,
    .v2b6-deco-float {
        display: none;
    }

    .v2b6-deco-orbit {
        width: 96%;
        height: 96%;
        opacity: 0.5;
    }

    .v2b6-deco-marquee-item {
        font-size: 0.78rem;
    }

    .v2b6-area-panel-hero-stats {
        flex-direction: column;
    }
}
