/* ============================================
   КОНСУЛЬТАЦІЇ — konsultationen_style.css
   Modern, immersive, conversion-focused design
   ============================================ */

/* ─── CSS Custom Properties Extension ─── */
:root {
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(120,70,60,0.06);
    --shadow-md: 0 8px 30px rgba(120,70,60,0.10);
    --shadow-lg: 0 20px 60px rgba(120,70,60,0.14);
    --shadow-glow: 0 0 40px rgba(201,169,110,0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Scroll Behavior ─── */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════════
   HERO — Immersive depth layers
   ═══════════════════════════════════════════ */
.kons-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 35%, #E8D5D0 70%, var(--rose) 100%);
}

.hero-depth {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.blob-1 {
    width: 700px; height: 700px;
    background: var(--dusty-rose);
    top: -200px; right: -200px;
    animation: blobFloat 12s ease-in-out infinite;
}
.blob-2 {
    width: 500px; height: 500px;
    background: var(--lavender);
    bottom: -150px; left: -150px;
    animation: blobFloat 15s ease-in-out infinite reverse;
}
.blob-3 {
    width: 350px; height: 350px;
    background: var(--sage);
    top: 40%; left: 15%;
    animation: blobFloat 18s ease-in-out infinite;
    animation-delay: -5s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 1px 1px, rgba(122,79,69,0.04) 1px, transparent 0);
    background-size: 48px 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 32px 60px;
    max-width: 800px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve);
}
.kicker-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mauve));
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.hl-accent {
    font-style: italic;
    color: var(--mauve);
    position: relative;
    display: inline-block;
}
.hl-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--rose), transparent);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto 16px;
}
.hero-lead strong {
    color: var(--warm-brown);
    font-weight: 600;
}

.hero-body {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--dusty-rose);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--mauve);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

.anchor-nav {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 900;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(232, 201, 190, 0.5);
    border-radius: 50px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}
.anchor-nav.visible {
    opacity: 1;
    pointer-events: all;

}
.anchor-inner {
    display: flex;
    gap: 4px;
    margin-top: 30px;
}

.anchor-link {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.anchor-link:hover {
    background: var(--blush);
    color: var(--warm-brown);
}


.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    overflow: hidden;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 30px rgba(122, 79, 69, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(122, 79, 69, 0.45);
}
.btn-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    z-index: 0;
}
.btn-glow-text {
    position: relative;
    z-index: 1;
}

.btn-glow-sm { padding: 14px 32px; font-size: 0.85rem; }
.btn-glow-lg { padding: 22px 48px; font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--warm-brown);
    border: 2px solid var(--dusty-rose);
    background: transparent;
    transition: all var(--transition-fast);
}
.btn-ghost:hover {
    background: var(--blush);
    border-color: var(--mauve);
    transform: translateY(-2px);
}
.btn-ghost svg {
    transition: transform var(--transition-fast);
}
.btn-ghost:hover svg {
    transform: translateX(4px);
}


.section-header {
    margin-bottom: 56px;
}
.section-header.center {
    text-align: center;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--blush);
    border-radius: 50px;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
}
.section-heading em {
    font-style: italic;
    color: var(--mauve);
}


.section-teen,
.section-adult {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}
.section-teen {
    background: var(--white);
}
.section-adult {
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.section-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.backdrop-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.15;
    filter: blur(100px);
    top: -200px;
    right: -200px;
}
.adult-glow {
    background: var(--lavender);
    left: -200px;
    right: auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 60px;
    align-items: start;
}
.split-inverted {
    grid-template-columns: 0.9fr 1.3fr;
}

/* Value Card */
.value-card {
    background: linear-gradient(145deg, var(--cream), var(--white));
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    border: 1px solid var(--rose);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--mauve), var(--dusty-rose));
}
.value-card-dark {
    background: linear-gradient(145deg, #3A2520, #2C1F1A);
    border-color: rgba(212, 168, 154, 0.2);
    color: var(--cream);
}
.value-card-dark .value-title,
.value-card-dark .value-duration,
.value-card-dark .value-price {
    color: var(--cream);
}
.value-card-dark .value-price small {
    color: rgba(250,247,242,0.5);
}
.value-card-dark .vl-dot {
    background: var(--gold);
}
.value-card-dark .value-list li {
    color: rgba(250,247,242,0.75);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.value-card-dark .value-icon {
    background: linear-gradient(135deg, var(--mauve), var(--warm-brown));
}
.value-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.value-duration {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mauve);
}
.value-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--warm-brown);
}
.value-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.value-list li:hover {
    background: var(--text-light);
    transform: translateX(4px);
}
.vl-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--dusty-rose), var(--mauve));
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Quote block */
.quote-block {
    margin-top: 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--blush), var(--cream));
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--dusty-rose);
    position: relative;
}
.quote-icon {
    color: var(--rose);
    margin-bottom: 12px;
    opacity: 0.6;
}
.quote-block p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

/* Pricing Stack */
.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.price-tier {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--rose);
    position: relative;
    transition: all var(--transition-base);
}
.price-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dusty-rose);
}

.tier-featured {
    background: linear-gradient(145deg, var(--warm-brown), var(--mauve));
    border-color: transparent;
    color: var(--cream);
    box-shadow: 0 16px 45px rgba(122, 79, 69, 0.3);
}
.tier-featured:hover {
    box-shadow: 0 24px 55px rgba(122, 79, 69, 0.4);
}

.tier-ribbon {
    position: absolute;
    top: -1px;
    right: 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}
.tier-ribbon svg {
    fill: currentColor;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.tier-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
}
.tier-featured .tier-label {
    color: rgba(250,247,242,0.8);
}
.tier-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--warm-brown);
}
.tier-featured .tier-price {
    color: var(--gold-light);
}

.tier-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.tier-featured .tier-desc {
    color: rgba(250,247,242,0.6);
}

.tier-perks {
    list-style: none;
    margin-bottom: 20px;
}
.tier-perks li {
    font-size: 0.8rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(250,247,242,0.75);
}
.tier-perks li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: 700;
}

.tier-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--warm-brown);
    background: var(--cream);
    border: 1.5px solid var(--rose);
    transition: all var(--transition-fast);
}
.tier-btn:hover {
    background: var(--blush);
    border-color: var(--mauve);
}

.tier-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
.tier-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

/* ═══════════════════════════════════════════
   EXPRESS — Floating card
   ═══════════════════════════════════════════ */
.section-express {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
}

.express-float {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px 48px;
    text-align: center;
    border: 1px solid var(--rose);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.express-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dusty-rose), var(--mauve));
}

.express-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
}
.eb-pulse {
    width: 8px;
    height: 8px;
    background: #ff6d00;
    border-radius: 50%;
    animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.express-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.express-title em {
    font-style: italic;
    color: var(--mauve);
}

.express-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.express-specs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}
.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
}
.spec-val {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--warm-brown);
    line-height: 1;
}
.spec-val small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}
.spec-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mauve);
}
.spec-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--rose), transparent);
}

/* ═══════════════════════════════════════════
   FORMAT — Interactive tabs
   ═══════════════════════════════════════════ */
.section-format {
    padding: 120px 40px;
    background: var(--white);
}

.format-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.format-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1.5px solid var(--rose);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.format-tab:hover {
    border-color: var(--dusty-rose);
    background: var(--cream);
}
.format-tab.active {
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    color: var(--cream);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(122, 79, 69, 0.25);
}
.ft-icon { font-size: 1.2rem; }

.format-panels {
    max-width: 800px;
    margin: 0 auto;
}
.format-panel {
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(145deg, var(--cream), var(--white));
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--rose);
    animation: panelIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.format-panel.active {
    display: grid;
}
@keyframes panelIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Online visual */
.pv-ring {
    position: relative;
    width: 200px;
    height: 200px;
}
.pv-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.pv-orbit {
    position: absolute;
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--rose);
    z-index: 3;
}
.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { bottom: 15%; left: 0; }
.orbit-3 { bottom: 15%; right: 0; }

/* Offline visual */
.pv-map {
    position: relative;
    width: 280px;
    height: 220px;
    background: linear-gradient(160deg, #f0e6e0 0%, #e5d9d2 50%, #ddd0c8 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--rose);
}

/* Subtle landmass */
.pv-map::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 170px;
    background: linear-gradient(135deg, #d4c4b8 0%, #c9b8ab 100%);
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    top: 20px;
    left: 25px;
    opacity: 0.4;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.pin-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--warm-brown), var(--mauve));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(122, 79, 69, 0.3);
    position: relative;
}
.pin-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Pulse ring */
.map-pin::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(122, 79, 69, 0.12);
    border-radius: 50%;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    animation: pinPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes pinPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.7); opacity: 0; }
}

.pin-1::before { animation-delay: 0s; }
.pin-2::before { animation-delay: 0.8s; }
.pin-3::before { animation-delay: 1.6s; }

.pin-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    border: 1px solid rgba(232, 201, 190, 0.6);
    letter-spacing: 0.02em;
}

/* GEOGRAPHICALLY CORRECT: Hamburg top-left, others right and lower like steps */

/* Boizenburg — southeast of Hamburg, right and lower */
.pin-1 {
    top: 40%;
    left: 58%;
}

/* Geesthacht — between Hamburg and Boizenburg, right and slightly lower *//* Boizenburg — southeast of Hamburg, right and lower */
.pin-2 {
    top: 35%;
    left: 30%;
}

/* Hamburg — northwest, top-left */
.pin-3 {
    top: 25%;
    right: 67%;
}

/* Dotted connection lines */
.pv-map .connection-line {
    position: absolute;
    height: 1.5px;
    background: repeating-linear-gradient(
            90deg,
            rgba(122, 79, 69, 0.18) 0px,
            rgba(122, 79, 69, 0.18) 3px,
            transparent 3px,
            transparent 7px
    );
    z-index: 1;
}

.panel-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}
.panel-info p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.channel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ch-tag {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid;
}
.ch-telegram {
    background: #e3f2fd;
    color: #0088cc;
    border-color: #bbdefb;
}
.ch-whatsapp {
    background: #e8f5e9;
    color: #25d366;
    border-color: #c8e6c9;
}
.ch-video {
    background: var(--blush);
    color: var(--warm-brown);
    border-color: var(--rose);
}

.offline-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: #fff8f0;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    border: 1px solid var(--dusty-rose);
}
.offline-note svg {
    flex-shrink: 0;
    color: var(--warm-brown);
    margin-top: 2px;
}


.section-why {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--rose);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dusty-rose);
}
.cream-text {
    color: var(--cream) !important;
}


.bento-large {
    grid-row: span 2;
    background: linear-gradient(145deg, var(--warm-brown), var(--mauve));
    color: var(--cream);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-large:hover {
    box-shadow: 0 25px 60px rgba(122, 79, 69, 0.3);
}
.bento-large h4,
.bento-large p {
    color: var(--cream);
}

.bento-wide {
    grid-column: span 2;
}

.bento-glow {
    position: absolute;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -40px; right: -40px;
}

.bento-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 12px;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.bento-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}
.bento-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}


.section-final {
    position: relative;
    padding: 140px 40px;
    background: linear-gradient(135deg, #2C1F1A 0%, #4A3028 50%, #5A3D36 100%);
    overflow: hidden;
    text-align: center;
}

.final-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.final-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}
.fb-1 {
    width: 500px; height: 500px;
    background: var(--mauve);
    top: -150px; left: -100px;
}
.fb-2 {
    width: 400px; height: 400px;
    background: var(--dusty-rose);
    bottom: -100px; right: -100px;
}

.final-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.final-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.15;
}
.final-content h2 em {
    font-style: italic;
    color: var(--gold-light);
}
.final-content p {
    font-size: 1rem;
    color: rgba(250,247,242,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.final-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.final-contact span {
    font-size: 0.78rem;
    color: rgba(250,247,242,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.final-contact a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.final-contact a:hover {
    color: var(--cream);
}

/* ═══════════════════════════════════════════
   CONTACT — Modern rows
   ═══════════════════════════════════════════ */
.contact {
    padding: 100px 40px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--rose);
    text-decoration: none;
    transition: all var(--transition-base);
}
.contact-row:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--dusty-rose);
}

.cr-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}
.contact-row:hover .cr-icon {
    transform: scale(1.1);
}
.cr-icon svg {
    width: 22px;
    height: 22px;
}
.cr-whatsapp {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #25D366;
}
.cr-telegram {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0088cc;
}
.cr-email {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c62828;
}
.cr-instagram {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
    color: #c13584;
}

.cr-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.cr-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mauve);
}
.cr-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cr-arrow {
    color: var(--rose);
    transition: all var(--transition-fast);
}
.contact-row:hover .cr-arrow {
    color: var(--mauve);
    transform: translateX(4px);
}

/* Contact card side */
.contact-card-side {
    background: linear-gradient(145deg, var(--blush), var(--cream));
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--rose);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccs-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.ccs-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-dark);
}
.ccs-inner p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .anchor-nav { display: none; }

    .split-layout,
    .split-inverted {
        grid-template-columns: 1fr;
    }
    .split-right { order: -1; }

    .pricing-stack {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .price-tier {
        flex: 1;
        min-width: 260px;
    }

    .format-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .panel-visual { order: -1; }
    .channel-tags { justify-content: center; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large {
        grid-row: span 1;
        grid-column: span 2;
    }
    .bento-wide {
        grid-column: span 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .express-specs {
        flex-direction: column;
        gap: 20px;
    }
    .spec-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--rose), transparent);
    }
}

@media (max-width: 600px) {
    .kons-hero { min-height: auto; padding: 100px 24px 60px; }
    .hero-headline { font-size: clamp(2.2rem, 10vw, 3rem); }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .btn-glow, .btn-ghost { width: 100%; max-width: 320px; justify-content: center; }

    .section-teen, .section-adult, .section-format, .section-why {
        padding: 60px 24px;
    }

    .value-card { padding: 28px 24px; }
    .value-list li { font-size: 0.85rem; }

    .pricing-stack { flex-direction: column; }
    .price-tier { min-width: auto; }

    .format-tabs { flex-direction: column; align-items: center; }
    .format-tab { width: 100%; max-width: 280px; justify-content: center; }
    .format-panel { padding: 32px 24px; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }

    .express-float { padding: 36px 24px; }
    .section-final { padding: 80px 24px; }
    .contact { padding: 60px 24px; }
    .contact-row { padding: 16px 18px; }
}