/* ============================================
   ЗАЯВИ ПРО СЕБЕ СВІТУ — style.css
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --cream: #FAF7F2;
    --blush: #F2E8E1;
    --rose: #E8C9BE;
    --dusty-rose: #D4A89A;
    --mauve: #B5867A;
    --warm-brown: #7A4F45;
    --sage: #C8D5C0;
    --sage-dark: #8FA882;
    --lavender: #DDD5E8;
    --text-dark: #2C1F1A;
    --text-mid: #5A3D36;
    --text-light: #8A6860;
    --gold: #C9A96E;
    --gold-light: #E8D5AE;
    --white: #FFFFFF;
    --shadow: rgba(120, 70, 60, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(44, 31, 26, 0.96);
    color: #FAF7F2;
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--mauve);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner.hidden {
    transform: translateY(100%);
}
.cookie-banner p { font-size: 0.85rem; line-height: 1.6; flex: 1; min-width: 250px; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}
.cookie-btn.accept { background: var(--gold); color: var(--text-dark); }
.cookie-btn.accept:hover { background: var(--gold-light); }
.cookie-btn.decline { background: transparent; color: #FAF7F2; border: 1px solid rgba(250,247,242,0.3); }
.cookie-btn.decline:hover { background: rgba(250,247,242,0.1); }

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
}
nav.scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 14px 40px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--mauve); }
.nav-cta {
    background: var(--warm-brown);
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--mauve) !important; color: var(--cream) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    display: block;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 40%, var(--rose) 100%);
}
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(60px);
}
.hero-bg-shape.s1 {
    width: 600px; height: 600px;
    background: var(--dusty-rose);
    top: -100px; right: -100px;
    animation: float1 8s ease-in-out infinite;
}
.hero-bg-shape.s2 {
    width: 400px; height: 400px;
    background: var(--lavender);
    bottom: -80px; left: -80px;
    animation: float2 10s ease-in-out infinite;
}
.hero-bg-shape.s3 {
    width: 300px; height: 300px;
    background: var(--sage);
    top: 30%; left: 10%;
    animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(20px) scale(0.95); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px 80px;
    max-width: 900px;
}
.hero-badge {
    display: inline-block;
    background: rgba(181, 134, 122, 0.15);
    border: 1px solid var(--dusty-rose);
    color: var(--warm-brown);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s ease forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s ease forwards;
}
.hero-title em { font-style: italic; color: var(--mauve); }
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s ease forwards;
}
.hero-tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s ease forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s ease forwards;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    color: var(--cream);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(122, 79, 69, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mauve), var(--dusty-rose));
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 79, 69, 0.4);
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--warm-brown);
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--dusty-rose);
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--blush);
    border-color: var(--mauve);
    transform: translateY(-2px);
}

/* === PRICE STRIP === */
.price-strip {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--mauve) 100%);
    color: var(--cream);
    text-align: center;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    z-index: 5;
}
.price-strip::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer { to { left: 100%; } }
.price-strip p { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; position: relative; }
.price-strip strong { font-weight: 700; font-size: 1.1rem; }
.price-strip .highlight { color: var(--gold-light); }

/* === SECTIONS BASE === */
section { padding: 100px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--mauve); }
.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.8;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === ABOUT === */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

}
.about-image-wrap { position: relative; }
.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    border-radius: 30px 30px 30px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
    padding: 40px;
    overflow: hidden;
    position: relative;
}
.about-image-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: inherit;
}
.about-image-placeholder .placeholder-text { position: relative; z-index: 1; color: var(--text-light); }
.about-image-wrap::before {
    content: '';
    position: absolute;
    width: 80%; height: 80%;
    background: var(--rose);
    border-radius: 30px 30px 30px 120px;
    top: 20px; left: 20px;
    z-index: -1;
    opacity: 0.4;
}
.about-badge-float {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
    max-width: 200px;
}
.about-badge-float strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--warm-brown);
    font-weight: 600;
}
.about-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 30px; }
.about-name { font-family: var(--font-display); font-size: 2rem; font-style: italic; color: var(--text-dark); margin-bottom: 8px; }
.about-role { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mauve); font-weight: 600; }


/* === PROBLEM === */
.problem { background: var(--cream); text-align: center; }
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.problem-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--rose);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--mauve));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow); }
.problem-icon { font-size: 2.5rem; margin-bottom: 20px; }
.problem-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 12px; font-weight: 500; }
.problem-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* === PROGRAM === */
.program {
    background: linear-gradient(135deg, #2C1F1A 0%, #4A3028 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.program::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: var(--mauve);
    opacity: 0.08;
    border-radius: 50%;
    top: -100px; right: -100px;
    filter: blur(60px);
}
.program .section-title { color: var(--cream); }
.program .section-label { color: var(--dusty-rose); }
.program .section-subtitle { color: rgba(250, 247, 242, 0.7); }
.program-list { margin-top: 60px; display: grid; gap: 16px; }
.program-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s;
}
.program-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212, 168, 154, 0.3);
    transform: translateX(8px);
}
.program-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dusty-rose);
    opacity: 0.5;
    min-width: 50px;
    line-height: 1;
    margin-top: -4px;
}
.program-content h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin-bottom: 6px; font-weight: 500; }
.program-content p { font-size: 0.88rem; color: rgba(250, 247, 242, 0.65); line-height: 1.7; }

/* === BONUS === */
.bonus { background: var(--blush); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.bonus-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
}
.bonus-item:hover { transform: translateY(-4px); box-shadow: 0 12px 35px var(--shadow); }
.bonus-emoji { font-size: 2rem; flex-shrink: 0; }
.bonus-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; font-weight: 500; }
.bonus-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.savings-card {
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    color: var(--cream);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.savings-card::before {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -80px; right: -80px;
}
.savings-card .big-num { font-family: var(--font-display); font-size: 5rem; font-weight: 600; line-height: 1; color: var(--gold-light); }
.savings-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; margin: 12px 0 8px; }
.savings-card p { font-size: 0.88rem; opacity: 0.8; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials { background: var(--white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 36px 30px;
    text-align: left;
    position: relative;
    border: 1px solid var(--rose);
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--rose); line-height: 0.5; margin-bottom: 20px; display: block; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--dusty-rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); display: block; }
.author-info { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }

/* === PRICING === */
.pricing { background: var(--cream); text-align: center; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 760px; margin: 60px auto 0; }
.pricing-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 36px;
    border: 2px solid var(--rose);
    position: relative;
    transition: all 0.3s;
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    color: var(--cream);
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(122, 79, 69, 0.35);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-card:not(.featured):hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-period { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; font-weight: 500; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 4rem; font-weight: 600; line-height: 1; margin-bottom: 4px; }
.pricing-card:not(.featured) .pricing-price { color: var(--warm-brown); }
.pricing-card.featured .pricing-price { color: var(--gold-light); }
.pricing-currency { font-size: 2rem; vertical-align: super; font-weight: 400; }
.pricing-note { font-size: 0.8rem; opacity: 0.6; margin-bottom: 30px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 36px; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(120,70,60,0.08);
}
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); }
.check { color: var(--sage-dark); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .check { color: var(--gold-light); }

/* === PAYMENT === */
.payment { background: var(--blush); }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
.payment-method {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--rose);
    margin-bottom: 20px;
}
.payment-method h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 16px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.payment-method p, .payment-method a { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.payment-method a { color: var(--mauve); }
.iban-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-family: monospace;
    letter-spacing: 0.05em;
    line-height: 1.9;
}
.iban-box strong { color: var(--text-dark); }
.qr-placeholder {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--rose);
}
.qr-box {
    width: 180px; height: 180px;
    background: var(--blush);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
    overflow: hidden;
}
.bank-qr {
    margin-top: 24px;
    text-align: center;
}

.bank-qr p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 10px;
}
.qr-box img { width: 100%;  object-fit: contain; }
.qr-placeholder p { font-size: 0.85rem; color: var(--text-light); }

/* === FAQ === */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--rose); overflow: hidden; }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    gap: 20px;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--mauve); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blush);
    border: 1px solid var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: var(--mauve);
}
.faq-item.open .faq-icon { background: var(--mauve); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--warm-brown) 0%, #5A3530 50%, var(--mauve) 100%);
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -200px; left: -100px;
}
.cta-section .section-title { color: var(--cream); max-width: 700px; margin: 20px auto 30px; }
.cta-section .section-label { color: var(--rose); }
.cta-section p { color: rgba(250,247,242,0.75); font-size: 1rem; max-width: 520px; margin: 0 auto 50px; line-height: 1.8; }
.cta-section .btn-primary { background: var(--gold); color: var(--text-dark); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.cta-section .btn-primary::before { background: var(--gold-light); }

/* === CONTACT === */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--blush); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 4px; letter-spacing: 0.05em; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--text-mid); text-decoration: none; line-height: 1.6; }
.contact-item a:hover { color: var(--mauve); }
.social-links { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blush);
    color: var(--warm-brown);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--rose);
}
.social-link:hover { background: var(--warm-brown); color: var(--cream); }

/* === FOOTER === */
footer {
    background: var(--text-dark);
    color: rgba(250,247,242,0.6);
    padding: 60px 40px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); font-style: italic; margin-bottom: 8px; }
.footer-tagline { font-size: 0.8rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(250,247,242,0.6); font-size: 0.82rem; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(250,247,242,0.5); font-size: 0.78rem; text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold-light); }
.footer-qr {
    margin-top: 20px;
}

.footer-qr img {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    background: white;
    padding: 8px;
    object-fit: contain;
}
/* === LOGO === */
.logo-img { height: 44px; width: auto; object-fit: contain; }

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100%;
    background: var(--cream);
    z-index: 2000;
    padding: 80px 40px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 50px rgba(0,0,0,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 24px; }
.mobile-menu ul a { font-size: 1.1rem; color: var(--text-dark); text-decoration: none; font-weight: 500; }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.menu-overlay.open { opacity: 1; pointer-events: all; }

/* =============================================
   DATENSCHUTZ PAGE — окрема сторінка
   ============================================= */
.legal-page {
    min-height: 100vh;
    background: var(--cream);
}
.legal-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 60%, var(--rose) 100%);
    padding: 140px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: var(--dusty-rose);
    opacity: 0.15;
    border-radius: 50%;
    top: -100px; right: -80px;
    filter: blur(60px);
}
.legal-hero .hero-badge { animation: none; opacity: 1; }
.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 12px;
    line-height: 1.1;
}
.legal-hero h1 em { font-style: italic; color: var(--mauve); }
.legal-hero p { font-size: 0.9rem; color: var(--text-light); }
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--warm-brown);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.legal-back:hover { color: var(--mauve); }

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--rose);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 24px 0 10px;
}
.legal-section p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 12px;
}
.legal-section ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-section ul li {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-section a { color: var(--mauve); }
.legal-highlight {
    background: var(--blush);
    border-left: 3px solid var(--dusty-rose);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    section { padding: 70px 24px; }
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid,
    .bonus-grid,
    .payment-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .problem-cards { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .about-image-wrap { max-width: 400px; margin: 0 auto; }
    .about-badge-float { right: 0; }
    .hero-inner { padding: 100px 24px 60px; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .legal-hero { padding: 120px 24px 60px; }
    .legal-body { padding: 50px 24px 70px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .pricing-cards { max-width: 100%; }
}
/* ============================================
   CAROUSEL (Testimonials)
   ============================================ */
.carousel-wrap {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-track .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    background: var(--cream);
    border-radius: 28px;
    padding: 48px 52px;
    border: 1px solid var(--rose);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .carousel-track {
        /* show 2 at a time on desktop */
    }
    .carousel-track .testimonial-card {
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
        margin-right: 24px;
    }
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}
.carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--rose);
    color: var(--warm-brown);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--warm-brown);
    color: var(--cream);
    border-color: var(--warm-brown);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.carousel-dot.active {
    background: var(--warm-brown);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   УВАГА BLOCK
   ============================================ */
.uvaha-box {
    background: linear-gradient(135deg, #fff8f0, #fdf0e8);
    border: 2px solid var(--dusty-rose);
    border-radius: 20px;
    padding: 60px 30px;
    margin-top: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.uvaha-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1.2; }
.uvaha-box strong { display: block; font-size: 1rem; color: var(--warm-brown); margin-bottom: 8px; letter-spacing: 0.05em; }
.uvaha-box p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0; }
.uvaha-phone {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--warm-brown);
    text-decoration: none;
    margin: 10px 0 4px;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}
.uvaha-phone:hover { color: var(--mauve); }

/* ============================================
   THANKS BLOCK
   ============================================ */
.thanks-block {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--blush), var(--cream));
    border-radius: 28px;
    padding: 48px 52px;
    text-align: center;
    border: 1px solid var(--rose);
}
.thanks-block p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 12px;
}
.thanks-block strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--warm-brown);
    margin-top: 16px;
}

/* ============================================
   LOGO FIX
   ============================================ */
.nav-logo {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .carousel-track .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 32px 24px;
        margin-right: 0;
    }
    .thanks-block { padding: 36px 24px; }
}


@media (max-width: 768px) {
    .about-image-placeholder {
        aspect-ratio: 3/4;
        border-radius: 20px;
        background: none !important;
        box-shadow: none;
    }

    .about-image-wrap {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto 20px auto;
        background: transparent;
        padding: 0;
    }

    .about-badge-float {
        position: relative;
        margin: 12px auto 0 auto;
        padding: 6px 16px;
        background: #f8f9fa;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        text-align: center;
        display: table;
    }

    .about-text {
        text-align: center;
        padding: 0 15px;
    }

    .about-name {
        font-size: 1.75rem;
        margin-top: 15px;
        line-height: 1.2;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
        color: #555;
    }
}
