:root {
    --burgundy: #6B1A2A;
    --burgundy-dark: #4A1019;
    --burgundy-light: #8C2238;
    --cream: #F5EFE6;
    --cream-dark: #EDE4D7;
    --gold: #C9A84C;
    --gold-light: #E5C97A;
    --white: #FDFAF6;
    --text-dark: #1A0A0E;
    --text-mid: #4A3040;
    --text-light: #8A7080;
    --border: rgba(107,26,42,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
}
nav.scrolled {
    background: rgba(74,16,25,0.96);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;

    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav-logo span {
    color: var(--gold);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold);
    color: var(--burgundy-dark) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 700 !important;
    transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--burgundy-dark) !important; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, #7D1F33 100%);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.hero-lines {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}
.hero-lines::after {
    content: '';
    position: absolute;
    top: -30%; right: 5%;
    width: 400px; height: 400px;
    border: 1px solid rgba(201,168,76,0.07);
    border-radius: 50%;
    animation: rotate 20s linear infinite reverse;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 120px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease 0.2s both;
}
.hero-checks {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 44px;
    animation: fadeUp 0.7s ease 0.3s both;
}
.hero-check {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
}
.hero-check-icon {
    width: 22px; height: 22px;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.7rem;
}
.hero-actions {
    display: flex; align-items: center; gap: 20px;
    animation: fadeUp 0.7s ease 0.4s both;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark);
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(201,168,76,0.4);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: all 0.3s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--white); }

/* Hero card */
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    animation: fadeLeft 0.8s ease 0.2s both;
}
@keyframes fadeLeft { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:none} }
.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.price-old {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-bottom: 4px;
}
.price-new {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.price-new span { font-size: 1.6rem; }
.price-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}
.card-includes {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}
.card-include-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}
.card-include-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.hero-card .btn-primary { width: 100%; justify-content: center; }
.hero-card-trust {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 40px 60px;
}
.stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-item {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── SECTIONS ── */
section { position: relative; }

.section-label {
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 0 60px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
}
.section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--burgundy);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--gold);
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 580px;
}

/* ── WHAT IS CUKR ── */
.what-cukr {
    background: var(--white);
    padding: 100px 60px;
}
.what-cukr-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.cukr-visual {
    position: relative;
}
.cukr-card-main {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 12px;
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cukr-card-main::before {
    content: 'CUKR';
    position: absolute;
    bottom: -20px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(255,255,255,0.04);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}
.cukr-card-tag {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.cukr-card-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 32px;
}
.cukr-perks { display: flex; flex-direction: column; gap: 14px; }
.cukr-perk {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.cukr-perk-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}
.cukr-deadline {
    position: absolute;
    top: -35px; right: 32px;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── PAIN POINTS ── */
.pain-section {
    background: var(--cream);
    padding: 100px 60px;
}
.pain-inner {
    max-width: 1200px; margin: 0 auto;
}
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}
.pain-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid;
}
.pain-col.problems h3 { color: #8C1A2A; border-color: rgba(140,26,42,0.2); }
.pain-col.solution h3 { color: var(--burgundy); border-color: rgba(107,26,42,0.2); }
.pain-list { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-mid);
}
.pain-icon {
    width: 28px; height: 28px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.pain-icon.x { background: rgba(140,26,42,0.1); color: #8C1A2A; }
.pain-icon.check { background: rgba(107,26,42,0.1); color: var(--burgundy); }
.pain-cta {
    text-align: center;
    margin-top: 60px;
}
.pain-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.4;
}
.pain-cta em { font-style: italic; color: var(--burgundy); }

/* ── WHAT'S INSIDE ── */
.inside-section {
    background: var(--white);
    padding: 100px 60px;
}
.inside-inner {
    max-width: 1200px; margin: 0 auto;
}
.inside-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end;
    margin-bottom: 60px;
}
.inside-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.inside-card {
    background: var(--white);
    padding: 40px 36px;
    transition: background 0.3s;
    cursor: default;
}
.inside-card:hover { background: var(--cream); }
.inside-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 700;
}
.inside-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.inside-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── RESULTS ── */
.results-section {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}
.results-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border: 60px solid rgba(201,168,76,0.06);
    border-radius: 50%;
}
.results-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 2;
}
.results-inner .section-label { color: var(--gold); }
.results-inner .section-label::before { background: var(--gold); }
.results-inner .section-title { color: var(--white); }
.results-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}
.result-item {
    padding: 36px 24px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.result-item:last-child { border-right: none; }
.result-item:hover { background: rgba(255,255,255,0.07); }
.result-check {
    width: 32px; height: 32px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.result-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}


/* ── ABOUT ── */
.about-section {
    background: var(--cream);
    padding: 100px 60px;
}

.about-photo-wrap {
    position: relative;
}
.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    border-radius: 4px;
    overflow: hidden;
    position: relative;

    padding: 12px;
}
.about-photo-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(255,255,255,0.1);
}


.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-accent {
    position: absolute;
    top: 16px;
    left: -12px;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 10px 14px;
    border-radius: 2px;
    text-align: center;
}
.about-accent-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.about-title {
    text-align: center;
    margin: 10px auto 60px;
    max-width: 900px;
}
.about-accent-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 4px;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 4px;
}
.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}
.about-badges {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: -70px;
}
.about-badge {
    background: rgba(107,26,42,0.06);
    border: 1px solid var(--border);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ── ABOUT VIDEO ── */
.about-video {
    display: flex;
    justify-content: center;
    margin-top: 0;
}
.about-video-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--burgundy); margin-bottom: 16px;
}
.about-video-tag::before {
    content: ''; width: 24px; height: 1px; background: var(--burgundy);
}
.about-video-wrap {
    position: relative; border-radius: 6px; overflow: hidden;
    max-width: 340px;
    height: 100%;
    max-height: 550px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(107,26,42,0.15);
}
.about-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 550px;
}
.about-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(74,16,25,0.7), rgba(107,26,42,0.5));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    transition: opacity 0.3s;
}
.about-video-play {
    width: 64px; height: 64px;
    background: var(--gold);
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--burgundy-dark);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-video-play:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}
.about-video-overlay p {
    font-size: 0.82rem; color: rgba(255,255,255,0.8);
    letter-spacing: 0.06em;
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 440px 1fr 340px;
    grid-template-areas: "photo content video";
    gap: 60px;
    align-items: end;
}
.about-photo-wrap {
    grid-area: photo;
}

.about-content {
    grid-area: content;
}

.about-video {
    grid-area: video;
}
/* ── PRICE ── */
.price-section {
    background: var(--white);
    padding: 100px 60px;
}
.price-inner {
    max-width: 860px; margin: 0 auto;
    text-align: center;
}
.price-card {
    margin-top: 56px;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12), transparent 60%);
    pointer-events: none;
}
.price-top {
    padding: 60px 80px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-tag-line {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.price-display {
    display: flex; align-items: flex-end; justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.price-old-large {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    margin-bottom: 8px;
}
.price-new-large {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--white);
    line-height: 1;
}
.price-new-large sup {
    font-size: 2rem;
    vertical-align: top;
    margin-top: 12px;
    color: var(--gold);
}
.price-saving {
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 16px;
}
.price-bottom {
    padding: 48px 80px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    text-align: left;
}
.price-includes h4 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.price-include-list {
    display: flex; flex-direction: column; gap: 12px;
}
.price-include-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}
.price-include-item span:first-child {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.price-action { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.price-action .btn-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 18px 32px; }
.price-guarantee {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.price-guarantee span:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ───────────────── PAYMENT ───────────────── */

.payment-section {
    background:
            radial-gradient(circle at top, rgba(201,168,76,0.06), transparent 40%),
            var(--cream);
    padding: 120px 60px;
    position: relative;
}

.payment-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* ── CARD ── */

.payment-card {
    position: relative;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(107,26,42,0.08);
    border-radius: 6px;

    padding: 38px;
    min-height: 500px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    transition:
            transform .45s ease,
            box-shadow .45s ease,
            border-color .45s ease,
            background .45s ease;

    box-shadow:
            0 10px 30px rgba(20,20,20,0.04),
            0 2px 10px rgba(20,20,20,0.03);

    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    135deg,
                    rgba(255,255,255,0.18),
                    transparent 40%
            );
    pointer-events: none;
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107,26,42,0.16);

    box-shadow:
            0 24px 60px rgba(20,20,20,0.10),
            0 10px 24px rgba(107,26,42,0.08);
}

/* ── CENTER CARD ── */

.payment-card--dark {
    background:
            radial-gradient(circle at top left,
            rgba(255,255,255,0.08),
            transparent 30%),
            linear-gradient(
                    145deg,
                    #4d0d1d 0%,
                    #6b1a2a 45%,
                    #7a2033 100%
            );

    border: 1px solid rgba(255,255,255,0.08);

    transform: scale(1.02);

    box-shadow:
            0 24px 60px rgba(107,26,42,0.28);
}

.payment-card--dark:hover {
    transform: translateY(-10px) scale(1.025);

    box-shadow:
            0 34px 80px rgba(107,26,42,0.36);
}

.payment-card--dark h3 {
    color: var(--white);
}

.payment-card--dark p {
    color: rgba(255,255,255,0.72);
}
.bank-account,
.bank-account a {
    color: white !important;
    text-decoration: none !important;
    pointer-events: none;
    cursor: default;
}

/* ── HEADER ── */

.payment-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.payment-icon-wrap {
    width: 56px;
    height: 56px;

    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
            linear-gradient(
                    145deg,
                    rgba(107,26,42,0.08),
                    rgba(107,26,42,0.03)
            );

    border: 1px solid rgba(107,26,42,0.08);

    color: var(--burgundy);

    transition: all .35s ease;
}

.payment-card:hover .payment-icon-wrap {
    transform: scale(1.06);
}

.payment-card--dark .payment-icon-wrap {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: var(--gold);
}

/* ── TAG ── */

.payment-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    padding: 6px 12px;
    border-radius: 6px;

    background: rgba(201,168,76,0.14);
    color: var(--burgundy-dark);

    border: 1px solid rgba(201,168,76,0.22);
}

.payment-tag--light {
    background: rgba(255,255,255,0.10);
    color: var(--white);
    border-color: rgba(255,255,255,0.14);
}

/* ── TYPO ── */

.payment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.payment-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ── FIELD ── */

.payment-field {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 16px;

    border-radius: 4px;

    background: rgba(107,26,42,0.035);
    border: 1px solid rgba(107,26,42,0.06);
}

.payment-field-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-light);
}

.payment-field-value {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--burgundy);
    word-break: break-word;
}

/* ── REQUISITES ── */

.payment-requisites {
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 20px;

    border-radius: 6px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);
}

.requisite-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.requisite-row span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.48);
}

.requisite-row strong {
    color: var(--white);
    line-height: 1.5;
    font-size: 0.92rem;
    font-weight: 600;
}

/* ── AMOUNT ── */

.payment-amount-row {
    margin-top: auto;

    display: flex;
    align-items: end;
    justify-content: space-between;

    padding-top: 22px;

    border-top: 1px solid rgba(107,26,42,0.08);

    color: var(--text-light);
    font-size: 0.85rem;
}

.payment-amount-row strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--burgundy);

    letter-spacing: -0.03em;
}

.payment-amount-row--light {
    border-top-color: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.55);
}

.payment-amount-row--light strong {
    color: var(--gold);
}

/* ── BUTTON ── */

.payment-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 22px;

    border-radius: 2px;

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;

    transition: all .35s ease;

    overflow: hidden;
}

.payment-btn svg {
    transition: transform .35s ease;
}

.payment-btn:hover svg {
    transform: translateX(4px);
}

.payment-btn--gold {
    color: #2d1407;

    background:
            linear-gradient(
                    135deg,
                    #d8bb63 0%,
                    #c9a84c 45%,
                    #f0d98a 100%
            );

    box-shadow:
            0 12px 30px rgba(201,168,76,0.32);
}

.payment-btn--gold:hover {
    transform: translateY(-3px);

    box-shadow:
            0 18px 40px rgba(201,168,76,0.42);
}

.payment-btn--outline {
    border: 1px solid rgba(107,26,42,0.12);

    color: var(--burgundy);

    background: rgba(255,255,255,0.6);

    backdrop-filter: blur(10px);
}

.payment-btn--outline:hover {
    background: rgba(107,26,42,0.06);
    border-color: rgba(107,26,42,0.22);

    transform: translateY(-2px);
}

/* ── MOBILE ── */

@media (max-width: 1024px) {

    .payment-section {
        padding: 80px 24px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .payment-card {
        min-height: unset;
        padding: 30px;
    }

    .payment-card--dark {
        transform: none;
    }

    .payment-card--dark:hover {
        transform: translateY(-6px);
    }

    .payment-card h3 {
        font-size: 1.45rem;
    }

    .payment-amount-row strong {
        font-size: 1.7rem;
    }
}
.section-title--payment {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-title--payment em {
    color: var(--burgundy);
    font-style: italic;
}

/* ── CTA FINAL ── */
.final-cta {
    background: var(--white);
    padding: 100px 60px;
    text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.final-cta p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0 40px;
}
.final-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    margin-top: 40px;
}
.final-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 500;
}
.final-badge span:first-child { color: var(--burgundy); }

/* ── FOOTER ── */
footer {
    background: var(--burgundy-dark);
    padding: 64px 60px 36px;
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 280px 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 14px; font-size: 1.4rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer-col h5 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.85rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-socials {
    display: flex; gap: 12px; margin-top: 20px;
}
.footer-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.02);

    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201,168,76,0.15);
}
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── MOBILE NAV ── */
.nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none;
}
.nav-hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    nav.scrolled { padding: 12px 32px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; padding: 100px 32px 60px; }
    .hero-card { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0; }
    .what-cukr, .pain-section, .inside-section, .results-section, .about-section, .price-section, .final-cta { padding: 72px 32px; }
    .what-cukr-inner { grid-template-columns: 1fr; gap: 40px; }
    .pain-grid { grid-template-columns: 1fr; gap: 40px; }
    .inside-header { grid-template-columns: 1fr; gap: 20px; }
    .inside-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-photo-wrap { max-width: 340px; margin: 0 auto; }
    .price-bottom { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .price-top, .price-bottom { padding: 40px 32px; }
    .stats-bar { padding: 0 32px; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    .results-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── MOBILE NAV OPEN ── */
.mobile-nav {
    display: none;
    position: fixed; inset: 0;
    background: var(--burgundy-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
/* ── HAMBURGER ACTIVE ── */
.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
#what-cukr {
    scroll-margin-top: 60px;
}

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "photo"
            "content"
            "video";
        gap: 40px;
    }
}
@media (max-width: 900px) {
    .about-badges {
        margin-top: 40px;
    }
}