@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    /* «Arctic Coral» — холодный фон + коралловый акцент + бирюзовые ноты свежести */
    --ink: #0b1220;
    --ink-soft: #3a4a66;
    --ink-mute: #5a6a82;
    --clay: #ff5c45;
    --clay-deep: #e03e28;
    --rose: #5eead4;
    --sand: #d8ecfc;
    --cream: #fbfcff;
    --paper: #eef6ff;
    --sage: #0f766e;
    --sage-soft: #99f6e4;
    --line: #c2d6eb;
}

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

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--paper);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', 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: 2px;
    cursor: pointer;
    font-family: 'Manrope', 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(11, 18, 32, 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: 4px;
    max-width: 520px;
    width: 100%;
    padding: 28px 28px 24px;
    box-shadow: 0 24px 48px rgba(11, 18, 32, 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: 'Fraunces', 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: 'Manrope', 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: 2px;
    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(11, 18, 32, 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: 2px;
    background: var(--ink);
    color: var(--cream);
    font-family: 'Manrope', 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: 2px;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', 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: var(--cream);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
}

.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: 2px;
}

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

.v2b6-area-panel-logo-section::before {
    content: 'NOURIVO';
    font-family: 'Fraunces', 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(--clay);
}

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

.v2b6-area-panel-discount-button {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 12px 26px;
    border-radius: 2px;
    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:
        radial-gradient(circle at 80% 20%, rgba(255, 92, 69, 0.1), transparent 50%),
        var(--paper);
    padding: 110px 0 100px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.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;
}

.v2b6-area-panel-hero-title {
    font-family: 'Fraunces', serif;
    font-size: 4.6rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 28px;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

.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: 56px;
    margin-bottom: 48px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-width: 480px;
}

.v2b6-area-panel-stat-item {
    text-align: left;
}

.v2b6-area-panel-stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--clay);
    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 38px;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.v2b6-area-panel-cta-primary:hover {
    background: var(--clay);
    transform: translateY(-1px);
}

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

.v2b6-area-panel-hero-visual::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    background: var(--sand);
    border-radius: 4px;
    z-index: 0;
}

.v2b6-area-panel-hero-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    filter: saturate(0.85) contrast(1.02);
}

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

.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-area-panel-section-heading {
    font-family: 'Fraunces', serif;
    font-size: 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: 48px;
    height: 2px;
    background: var(--clay);
    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;
    border-radius: 2px;
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    border-left: 4px solid var(--clay);
}

.v2b6-area-panel-feature-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: saturate(0.85) contrast(1.02);
}

.v2b6-area-panel-solution-block {
    background: var(--sand);
    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: 4px;
    filter: saturate(0.85) contrast(1.02);
}

.v2b6-area-panel-floating-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--cream);
    color: var(--ink);
    padding: 14px 24px;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-left: 3px solid var(--clay);
}

.v2b6-area-panel-section-title {
    font-family: 'Fraunces', 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(--clay);
    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: 24px;
    border-radius: 2px;
    border-top: 2px solid var(--clay);
}

.v2b6-area-panel-benefit-item h4 {
    color: var(--ink);
    font-family: 'Fraunces', 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(--paper);
}

.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: 'Fraunces', 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(--clay);
    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: 2px;
    text-align: left;
    flex: 1;
    border: 1px solid var(--line);
}

.v2b6-area-panel-expert-card h4 {
    color: var(--clay);
    margin-bottom: 8px;
    font-family: 'Fraunces', 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: 2px;
}

.v2b6-area-panel-service-features h3 {
    color: var(--rose);
    font-family: 'Fraunces', 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(251, 252, 255, 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(--clay);
    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);
}

.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: 'Fraunces', serif;
    font-size: 3.4rem;
    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: 'Fraunces', 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(--paper);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.4s ease;
}

.v2b6-area-panel-meal-card:hover {
    transform: translateY(-4px);
    border-color: var(--clay);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}

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

.v2b6-area-panel-meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.02);
    transition: transform 0.6s ease;
}

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

.v2b6-area-panel-calorie-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--cream);
    color: var(--ink);
    padding: 7px 14px;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.v2b6-area-panel-meal-title {
    font-family: 'Fraunces', 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-calories-per-day {
    color: var(--ink);
    font-family: 'Fraunces', 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: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.3s;
}

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

.v2b6-area-panel-testimonial-preview {
    background: var(--paper);
    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: 'Fraunces', 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: 2px;
    border-top: 3px solid var(--clay);
}

.v2b6-area-panel-testimonial-text {
    font-family: 'Fraunces', 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: 'Manrope', 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 {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 69, 0.18), transparent 70%);
}

.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: 'Fraunces', 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: 'Fraunces', 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(251, 252, 255, 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 48px;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.v2b6-area-panel-cta-button-large:hover {
    background: var(--clay-deep);
    transform: translateY(-2px);
}

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

.v2b6-area-panel-package-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(0.85) contrast(1.02);
}

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

.v2b6-area-panel-package-details h4 {
    color: var(--ink);
    font-family: 'Fraunces', 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(11, 18, 32, 0.62);
    backdrop-filter: blur(4px);
}

.v2b6-area-panel-modal-content {
    background-color: var(--cream);
    margin: 5% auto;
    padding: 0;
    border-radius: 4px;
    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: 4px 4px 0 0;
    font-family: 'Fraunces', 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: 2px;
    font-size: 1rem;
    font-family: 'Manrope', 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: 'Fraunces', serif;
}

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

.v2b6-area-panel-delivery-info h4 {
    color: var(--ink);
    font-family: 'Fraunces', 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: 2px;
    font-family: 'Manrope', 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: 2px;
    font-size: 1rem;
    font-family: 'Manrope', 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: 2px;
    font-family: 'Manrope', 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(--cream);
    padding: 110px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.v2b6-area-panel-order-title {
    font-family: 'Fraunces', serif;
    font-size: 3.4rem;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-order-subtitle {
    font-size: 1.18rem;
    color: var(--ink-soft);
    margin-bottom: 48px;
    font-family: 'Fraunces', serif;
    font-style: italic;
}

.v2b6-area-panel-order-benefits {
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}

.v2b6-area-panel-benefit-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.94rem;
}

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

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

.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: 4px;
    overflow: hidden;
}

.v2b6-area-panel-form-image {
    width: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.02);
}

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

.v2b6-area-panel-visual-overlay h3 {
    font-family: 'Fraunces', 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: 4px;
    border: 1px solid var(--line);
}

.v2b6-area-panel-form-title {
    font-family: 'Fraunces', 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: 'Fraunces', 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: 2px;
    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: 2px;
    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: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

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

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

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

.v2b6-area-panel-payment-title {
    font-family: 'Fraunces', 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: 2px;
    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: 'Fraunces', 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(--paper);
    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: 2px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--clay);
    transition: all 0.3s;
}

.v2b6-area-panel-guarantee-item:hover {
    transform: translateY(-4px);
    border-top-color: var(--ink);
}

.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: 'Fraunces', 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: 4px;
    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: 'Fraunces', serif;
    font-size: 18rem;
    font-weight: 600;
    color: rgba(255, 92, 69, 0.09);
    top: -60px;
    right: -40px;
    line-height: 1;
    pointer-events: none;
}

.v2b6-area-panel-discount-cta h3 {
    font-family: 'Fraunces', 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: 'Fraunces', 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: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    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);
}

.v2b6-area-panel-success-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 18, 32, 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: 4px;
    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: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 28px;
    font-family: 'Fraunces', serif;
}

.v2b6-area-panel-success-title {
    font-family: 'Fraunces', 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: 'Fraunces', serif;
}

.v2b6-area-panel-success-button {
    background: var(--clay);
    color: var(--cream);
    border: none;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: 'Manrope', 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(--cream);
    padding: 110px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.v2b6-area-panel-testimonials-title {
    font-family: 'Fraunces', serif;
    font-size: 3.6rem;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.v2b6-area-panel-testimonials-subtitle {
    font-size: 1.25rem;
    color: var(--ink-soft);
    margin-bottom: 60px;
    font-family: 'Fraunces', serif;
    font-style: italic;
}

.v2b6-area-panel-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
}

.v2b6-area-panel-stat-block {
    text-align: center;
}

.v2b6-area-panel-stat-block .v2b6-area-panel-stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--clay);
    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(--paper);
    padding: 120px 0;
}

.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: 4px;
    padding: 34px 32px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--clay);
    transition: all 0.3s ease;
}

.v2b6-area-panel-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}

.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: 4px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', 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: 2px;
    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: 'Fraunces', 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: 'Fraunces', 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-title {
    font-family: 'Fraunces', 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: 'Fraunces', 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: transparent;
    padding: 36px 28px;
    border-radius: 2px;
    border: 1px solid rgba(251, 252, 255, 0.2);
    border-top: 2px solid var(--clay);
}

.v2b6-area-panel-result-number {
    display: block;
    font-family: 'Fraunces', 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(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.v2b6-area-panel-thank-you-container {
    max-width: 640px;
    background: var(--paper);
    padding: 64px 56px;
    border-radius: 4px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--clay);
    text-align: center;
}

.v2b6-area-panel-success-icon-simple {
    background: var(--ink);
    color: var(--cream);
    width: 88px;
    height: 88px;
    border-radius: 0;
    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;
}

.v2b6-area-panel-thank-you-main-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.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: 'Fraunces', serif;
    font-style: italic;
}

.v2b6-area-panel-payment-notice {
    background: var(--cream);
    padding: 28px;
    border-radius: 2px;
    border-left: 3px solid var(--clay);
    text-align: left;
}

.v2b6-area-panel-payment-notice h2 {
    color: var(--clay);
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    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 36px;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

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

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

.v2b6-area-panel-legal-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 56px;
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid var(--line);
}

.v2b6-area-panel-legal-title {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--ink);
    margin-bottom: 22px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.02em;
}

.v2b6-area-panel-legal-intro {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 50px;
    text-align: center;
    font-style: italic;
    font-family: 'Fraunces', 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: 'Fraunces', serif;
    font-size: 1.7rem;
    color: var(--clay);
    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: 'Fraunces', serif;
}

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

.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-disclaimer h4 {
    color: var(--rose);
    font-family: 'Fraunces', 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-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(251, 252, 255, 0.16);
    color: var(--sand);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

@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;
    }
}
