@font-face {
    font-family: 'Klein Condensed';
    src: url('../assets/fonts/klein-condensed-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Custom';
    src: url('../assets/fonts/helvetica_regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Custom';
    src: url('../assets/fonts/helvetica_bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --cream: #F5F0E8;
    --orange: #F5A623;
    --orange-light: #FDE8B0;
    --dark: #1A1A1A;
    --text: #333;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* ===== INTRO LOADER ===== */
.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.intro.intro-out {
    opacity: 0;
    pointer-events: none;
}

.intro-glow {
    position: absolute;
    width: min(500px, 90vw);
    height: min(500px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    animation: introGlow 1.6s ease-out forwards 0.2s;
}

.intro-title {
    font-family: 'Klein Condensed', serif;
    font-size: clamp(64px, 12vw, 130px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    animation: introIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.intro-sub {
    font-family: 'Helvetica Custom', sans-serif;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    animation: introIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.7s;
}

.intro-petal {
    position: absolute;
    border-radius: 60% 60% 60% 10%;
    opacity: 0;
    filter: blur(1px);
    z-index: 1;
}

.intro-p1 {
    width: 60px; height: 80px;
    background: linear-gradient(135deg, #F5D78E, #F5C6A0);
    top: 18%; left: 12%;
    transform: rotate(-25deg);
    animation: introFloat 1.4s ease-out forwards 0.4s;
}

.intro-p2 {
    width: 45px; height: 65px;
    background: linear-gradient(135deg, #F5A623, #F0B86E);
    top: 25%; right: 15%;
    transform: rotate(30deg);
    animation: introFloat 1.4s ease-out forwards 0.6s;
}

.intro-p3 {
    width: 35px; height: 50px;
    background: linear-gradient(135deg, #F5C6A0, #FDE8B0);
    bottom: 22%; left: 20%;
    transform: rotate(60deg);
    animation: introFloat 1.4s ease-out forwards 0.5s;
}

.intro-p4 {
    width: 50px; height: 70px;
    background: linear-gradient(135deg, #F0B86E, #F5D78E);
    bottom: 30%; right: 10%;
    transform: rotate(-40deg);
    animation: introFloat 1.4s ease-out forwards 0.7s;
}

.intro-p5 {
    width: 28px; height: 42px;
    background: linear-gradient(135deg, #FDE8B0, #F5A623);
    top: 50%; left: 8%;
    transform: rotate(15deg);
    animation: introFloat 1.4s ease-out forwards 0.8s;
}

@keyframes introGlow {
    to { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes introIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes introFloat {
    0% { opacity: 0; transform: rotate(var(--r, 0deg)) scale(0.3) translateY(30px); }
    100% { opacity: 0.45; transform: rotate(var(--r, 0deg)) scale(1) translateY(0); }
}

@media (max-width: 600px) {
    .intro-petal { filter: none; }
    .intro-p1 { width: 20px; height: 28px; top: 20%; left: 15%; }
    .intro-p2 { width: 16px; height: 24px; top: 28%; right: 18%; }
    .intro-p3 { width: 14px; height: 20px; bottom: 25%; left: 22%; }
    .intro-p4 { width: 18px; height: 26px; bottom: 32%; right: 14%; }
    .intro-p5 { width: 12px; height: 18px; top: 45%; left: 10%; }
    .intro-sub { letter-spacing: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    .intro { display: none; }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HERO ===== */
.hero {
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: start;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
}

.hero-image-wrap img {
    width: 100%;
    max-width: 460px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.hero-deco-stem {
    position: absolute;
    bottom: -15%;
    left: -210px;
    width: 220px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    padding-top: 30px;
    padding-left: 20px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.35;
}

.hero-title {
    font-family: 'Klein Condensed', serif;
    font-size: 140px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: 3px;
    margin-left: -70px;
    position: relative;
    z-index: 2;
    background: var(--cream);
    display: inline-block;
    padding: 5px 20px 5px 15px;
    border-radius: 20px 0 0 20px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.btn {
    display: inline-block;
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    background: var(--orange);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 20px 45px;
    font-size: 15px;
    line-height: 1.3;
}

.btn:hover {
    background: #e09510;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245,166,35,0.4);
}

.btn:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.btn-hero {
    padding: 5px 40px;
    font-size: 16px;
}

.btn-primary {
    border-radius: 50px;
}

.btn-outline {
    background: var(--orange);
    color: var(--dark);
    border: none;
}

.hero-deco-butterfly {
    position: absolute;
    right: -400px;
    top: -290px;
    width: 800px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

/* ===== ABOUT ===== */
.about {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-text {
    position: relative;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

.about-text strong {
    font-weight: 700;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.about-btn {
    margin-top: 25px;
}

.section-title {
    font-family: 'Klein Condensed', serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-block-reverse {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.about-block-reverse .about-text p {
    font-size: 17px;
}

/* ===== TARIFF BUTTON ===== */
.btn-tariff {
    display: inline-block;
    padding: 14px 35px;
    background: var(--orange);
    border: none;
    border-radius: 50px;
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.btn-tariff:hover {
    background: #e09510;
    transform: translateY(-2px);
}

/* ===== FOR WHOM ===== */
.for-whom {
    padding: 70px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.card {
    background: transparent;
    border: 3px solid var(--orange);
    border-radius: 20px;
    padding: 22px 18px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid var(--orange);
    border-radius: 15px;
    pointer-events: none;
}

.card strong, .card em {
    font-weight: 700;
    font-style: italic;
}

/* ===== WEEKLY PROGRAM ===== */
.weekly {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.weekly-deco {
    position: absolute;
    top: -30px;
    right: -30%;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.weekly-deco-left {
    position: absolute;
    top: -30px;
    left: -30%;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
    transform: scaleX(-1);
}

.weekly .container {
    position: relative;
    z-index: 1;
}

.weeks-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.week-col {
    position: relative;
}

.week-label {
    display: inline-block;
    background: var(--orange);
    color: var(--dark);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.week-col p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.week-col .wk-heading {
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 4px;
}

.week-col ul {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.week-col ul li {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
    margin-bottom: 3px;
}

.week-col ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--dark);
    font-weight: bold;
}

.weekly-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 20px 0 40px;
}

/* ===== PRICING ===== */
.pricing {
    padding: 70px 0;
}

.pricing-table {
    margin-top: 25px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 2px solid var(--dark);
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.pricing-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    white-space: nowrap;
}

.pricing-personal-details {
    border-top: 2px solid var(--orange);
}

.pricing-personal-details summary {
    list-style: none;
    cursor: pointer;
}

.pricing-personal-details summary::-webkit-details-marker {
    display: none;
}

.pricing-toggle-icon {
    font-size: 14px;
    color: var(--orange);
    transition: transform 0.3s;
    display: inline-block;
    margin-left: 6px;
}

.pricing-personal-details[open] .pricing-toggle-icon {
    transform: rotate(180deg);
}

.pricing-row-personal {
    border-bottom: 2px solid var(--orange);
}

.pricing-personal-body {
    padding: 15px 0 20px;
}

.pricing-personal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-personal-body ul li {
    font-size: 15px;
    padding: 4px 0 4px 18px;
    position: relative;
    line-height: 1.5;
    color: var(--dark);
}

.pricing-personal-body ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.pricing-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-info-box {
    background: var(--orange-light);
    border-radius: 20px;
    padding: 25px 30px;
    flex: 1;
}

.pricing-info-box ul {
    list-style: none;
    padding: 0;
}

.pricing-info-box ul li {
    font-size: 17px;
    font-weight: 600;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.pricing-info-box ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-cta-inline {
    flex-shrink: 0;
}

.tariffs-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Personal tariff — wide horizontal card */
.tariff-personal-wide {
    display: flex;
    gap: 0;
    margin-top: 50px;
    border: 3px solid var(--orange);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8EE 0%, #fff 60%);
    position: relative;
}

.tariff-personal-img {
    flex: 0 0 40%;
    min-height: 320px;
    background: linear-gradient(135deg, #F5A623 0%, #E8943A 50%, #D4802E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tariff-personal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-pattern {
    width: 80%;
    height: 80%;
    max-width: 320px;
}

.tariff-personal-info {
    flex: 1;
    padding: 35px 35px 30px;
    display: flex;
    flex-direction: column;
}

.tariff-personal-info h4 {
    font-family: 'Klein Condensed', serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 12px;
}

.tariff-personal-info p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tariff-personal-info .tc-label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.tariff-personal-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tariff-personal-info ul li {
    font-size: 15px;
    padding: 3px 0 3px 18px;
    position: relative;
    line-height: 1.5;
}

.tariff-personal-info ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.tariff-personal-info .btn-pay-wrap {
    margin-top: auto;
    text-align: center;
}

.tariff-personal-info .card-price-old-p {
    display: block;
    text-align: center;
    color: #aaa;
    text-decoration: line-through;
    font-size: 15px;
    margin-bottom: 4px;
}

/* Tariff 3 seats counter */
.t3-seats {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    margin: 0;
}

.tariff-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.tariff-card h4 {
    font-family: 'Klein Condensed', serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}

.tariff-card-body {
    border: 3px solid var(--orange);
    border-radius: 20px;
    padding: 25px 22px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tariff-card-body .btn-pay-wrap {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 32px;
    text-align: center;
    position: relative;
}

.tariff-card-body::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid var(--orange);
    border-radius: 15px;
    pointer-events: none;
}

.tariff-card-body p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tariff-card-body .tc-label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.tariff-card-body ul {
    list-style: none;
    padding: 0;
}

.tariff-card-body ul li {
    font-size: 15px;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.tariff-card-body ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tariff-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.tariff-bottom .limited {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ===== PRICE TIMER ===== */
.price-timer {
    margin-top: 25px;
    margin-bottom: 30px;
}

.price-timer-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 50%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245,166,35,0.2);
}

.price-timer-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.price-timer-inner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.price-timer-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.price-timer-label {
    color: #fff;
    font-family: 'Klein Condensed', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-timer-icon {
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.price-timer-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.timer-unit {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    min-width: 58px;
    backdrop-filter: blur(4px);
}

.timer-unit span {
    display: block;
    color: var(--orange);
    font-family: 'Klein Condensed', serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.timer-unit small {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.timer-sep {
    color: var(--orange);
    font-size: 24px;
    font-weight: 700;
    opacity: 0.5;
}

.price-current {
    color: var(--dark);
    font-weight: 800;
}

.price-old {
    color: #aaa;
    text-decoration: line-through;
    font-size: 0.8em;
    font-weight: 400;
    margin-left: 6px;
}

.card-price-old {
    display: block;
    text-align: center;
    color: #aaa;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 4px;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 70px 0;
}

.reviews-title {
    font-family: 'Klein Condensed', serif;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.review-card {
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid var(--orange);
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 21px;
}

.review-card-offset {
    margin-top: 40px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0 80px;
    position: relative;
    overflow-x: clip;
}

.cta-section .container {
    text-align: right;
}

.cta-tulips {
    position: absolute;
    left: -15%;
    top: -110%;
    width: 1500px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.cta-btn {
    display: inline-block;
    padding: 35px 90px;
    background: var(--orange);
    color: var(--dark);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    text-align: center;
}

.cta-btn:hover {
    background: #e09510;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0 50px;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.footer-brand {
    font-family: 'Klein Condensed', serif;
    font-size: 60px;
    font-weight: 900;
    color: var(--dark);
}

.footer-support {
    align-self: end;
}

.footer-support a {
    display: inline-block;
    padding: 12px 40px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-support a:hover {
    background: #e09510;
}

.footer-legal {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    text-align: right;
}

.footer-legal .inn {
    margin-top: 10px;
}

.footer-link-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--dark);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-link-btn:hover {
    background: #e09510;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    background: none;
    border: none;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-family: 'Klein Condensed', serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.modal-tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.modal-tariff-card {
    border: 3px solid var(--orange);
    border-radius: 16px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-tariff-card h4 {
    font-family: 'Klein Condensed', serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--dark);
}

.modal-tariff-card .modal-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.modal-tariff-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
}

.modal-tariff-card .btn {
    font-size: 13px;
    padding: 12px 20px;
    margin-top: auto;
    text-align: center;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: var(--orange);
    padding: 12px 20px;
    text-align: center;
}

.promo-banner p {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.promo-btn {
    display: inline-block;
    margin-left: 12px;
    padding: 10px 22px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    min-height: 44px;
}

.promo-btn:hover {
    opacity: 0.85;
}

/* ===== EMAIL MODAL ===== */
.email-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.email-modal-overlay.active { display: flex; }

.email-modal {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 35px;
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
}

.email-modal h3 {
    font-family: 'Klein Condensed', serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.email-modal p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.email-modal input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--orange);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 12px;
    outline: none;
}

.email-modal input[type="email"]:focus {
    border-color: #e09510;
}

.email-modal .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.email-modal .consent-row input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.email-modal .consent-row a {
    color: var(--orange);
    text-decoration: underline;
}

.email-modal .btn-subscribe {
    display: inline-block;
    padding: 14px 40px;
    background: var(--orange);
    color: var(--dark);
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
}

.email-modal .btn-subscribe:hover {
    background: #e09510;
}

.email-modal .btn-subscribe:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.email-modal .email-close {
    position: absolute;
    top: 12px; right: 18px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-success { color: #2a9d2a; font-weight: 600; display: none; margin-top: 10px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 18px 25px;
    z-index: 3000;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner.active { display: flex; }

.cookie-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    flex: 1;
    margin: 0;
    min-width: 200px;
}

.cookie-banner-inner a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-banner-inner button {
    padding: 10px 30px;
    background: var(--orange);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    min-height: 44px;
}

/* ===== TARIFF SOLD OUT ===== */
.tariff-card.sold-out {
    opacity: 0.6;
    pointer-events: none;
}

.tariff-card .sold-out-badge {
    display: none;
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

.tariff-card.sold-out .sold-out-badge { display: block; }
.tariff-card.sold-out .btn-pay-wrap { display: none; }

/* ===== PAYMENT OVERLAY ===== */
.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-overlay.active {
    display: flex;
}

.payment-box {
    background: var(--cream);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.payment-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--orange-light);
    border-top: 5px solid var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-box h3 {
    font-family: 'Klein Condensed', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.payment-box p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-box .btn-confirm {
    display: inline-block;
    padding: 16px 40px;
    background: var(--orange);
    color: var(--dark);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-box .btn-confirm:hover {
    background: #e09510;
    transform: translateY(-2px);
}

.payment-success {
    display: none;
}

.payment-success.active {
    display: block;
}

.payment-loading.hidden {
    display: none;
}

.payment-success .tg-link {
    display: inline-block;
    margin-top: 15px;
    padding: 18px 45px;
    background: var(--orange);
    color: var(--dark);
    font-family: 'Helvetica Custom', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-success .tg-link:hover {
    background: #e09510;
    transform: translateY(-2px);
}

/* ===== BRANCH DECORATIONS ===== */
.deco-branch-fireplace {
    position: absolute;
    top: 80px;
    left: -160px;
    width: 1500px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.deco-branch-bouquet {
    position: absolute;
    bottom: -150px;
    left: -120px;
    width: 640px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.deco-branch-tariff {
    position: absolute;
    bottom: -170px;
    left: -360px;
    width: 1000px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrap img {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 80px;
        margin-left: 0;
        padding: 5px 15px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-deco-butterfly {
        width: 400px;
        right: -150px;
        top: -150px;
    }

    .hero-deco-stem {
        display: none;
    }

    .about-block,
    .about-block-reverse {
        grid-template-columns: 1fr;
    }

    .about-block-reverse .about-image {
        order: 2;
    }

    .about-block-reverse .about-text {
        order: 1;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .about-image img {
        max-width: 80%;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weeks-row {
        grid-template-columns: 1fr;
    }

    .weekly-deco {
        width: 100%;
        right: -50%;
    }

    .weekly-deco-left {
        width: 100%;
        left: -50%;
    }

    .tariff-personal-wide {
        flex-direction: column;
    }

    .tariff-personal-img {
        flex: none;
        min-height: 0;
        max-height: 200px;
    }

    .tariff-personal-info {
        padding: 25px 22px;
    }

    .tariffs-detail {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .review-card-offset {
        margin-top: 0;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal {
        text-align: center;
        margin-left: 0;
    }

    .pricing-info-row {
        flex-direction: column;
    }

    .cta-section {
        overflow: hidden;
    }

    .cta-section .container {
        text-align: center;
    }

    .tariff-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .tariff-bottom div:first-child {
        display: none;
    }

    .deco-branch-fireplace {
        width: 800px;
        left: -100px;
        top: 50px;
    }

    .deco-branch-bouquet {
        width: 350px;
        left: -60px;
        bottom: -80px;
    }

    .deco-branch-tariff {
        width: 500px;
        left: -150px;
        bottom: -80px;
    }
}

/* ===== RESPONSIVE: iPad Portrait (768px) ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 68px;
    }

    .hero-deco-butterfly {
        width: 350px;
        right: -120px;
        top: -130px;
        opacity: 0.7;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-name {
        font-size: 16px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .cta-btn {
        font-size: 24px;
        padding: 30px 70px;
    }

    .footer-brand {
        font-size: 48px;
    }
}

/* ===== RESPONSIVE: MOBILE (600px) ===== */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    /* Promo banner */
    .promo-banner {
        padding: 15px 20px;
    }

    .promo-banner p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .promo-btn {
        margin-left: 0;
        width: 100%;
    }

    /* Hero */
    .hero {
        padding: 30px 0 40px;
        overflow: hidden;
    }

    .hero-image-wrap img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 56px;
        margin-left: 0;
        margin-bottom: 30px;
        padding: 5px 10px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-deco-butterfly {
        display: none;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
        min-height: 44px;
    }

    .hero-buttons {
        gap: 15px;
    }

    /* About */
    .about {
        padding: 40px 0;
    }

    .about-block,
    .about-block-reverse {
        gap: 25px;
        margin-bottom: 50px;
    }

    .about-image {
        overflow: hidden;
        border-radius: 30px;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text p {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    /* For whom */
    .for-whom {
        padding: 40px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        font-size: 15px;
        padding: 18px 15px;
    }

    /* Weekly */
    .weekly {
        padding: 40px 0;
    }

    .weeks-row {
        gap: 30px;
        margin-bottom: 20px;
    }

    .weekly-deco,
    .weekly-deco-left {
        display: none;
    }

    .week-label {
        font-size: 13px;
        padding: 6px 16px;
    }

    .week-col p,
    .week-col ul li {
        font-size: 14px;
    }

    /* Pricing */
    .pricing {
        padding: 40px 0;
    }

    .pricing-price {
        font-size: 22px;
    }

    .pricing-name {
        font-size: 14px;
    }

    .pricing-row {
        padding: 12px 0;
    }

    .pricing-info-box {
        padding: 18px 20px;
    }

    .pricing-info-box ul li {
        font-size: 14px;
    }

    .tariffs-detail {
        max-width: 100%;
    }

    .tariff-card h4 {
        font-size: 24px;
    }

    .tariff-card-body {
        padding: 20px 18px;
    }

    .tariff-card-body p,
    .tariff-card-body ul li {
        font-size: 14px;
    }

    /* CTA */
    .cta-btn {
        font-size: 18px;
        padding: 25px 50px;
    }

    .cta-tulips {
        width: 600px;
    }

    /* Reviews */
    .reviews {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 30px 0 40px;
    }

    .footer-brand {
        font-size: 40px;
    }

    .footer-support a {
        font-size: 14px;
        padding: 10px 30px;
    }

    .footer-legal {
        font-size: 11px;
    }

    /* Decorations — hide on mobile to prevent overflow */
    .deco-branch-fireplace,
    .deco-branch-bouquet,
    .deco-branch-tariff {
        display: none;
    }

    .cta-tulips {
        display: none;
    }

    /* Modal */
    .modal-tariffs {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    /* Payment overlay */
    .payment-box {
        padding: 35px 25px;
    }
}

/* ===== RESPONSIVE: SMALL MOBILE (400px) ===== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        padding: 12px 18px;
        font-size: 12px;
        width: 100%;
    }

    .section-title {
        font-size: 22px;
    }

    .reviews-title {
        font-size: 32px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 20px 35px;
    }

}

/* ===== PRICE TIMER MOBILE ===== */
@media (max-width: 768px) {
    .price-timer-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .price-timer-text {
        align-items: center;
    }

    .price-timer-label {
        font-size: 18px;
    }

    .price-timer-countdown {
        gap: 6px;
    }

    .timer-unit {
        min-width: 50px;
        padding: 8px 10px;
    }

    .timer-unit span {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .price-timer-inner {
        padding: 20px 16px;
    }

    .price-timer-label {
        font-size: 16px;
    }

    .timer-unit {
        min-width: 44px;
        padding: 8px 8px;
    }

    .timer-unit span {
        font-size: 22px;
    }

    .timer-unit small {
        font-size: 9px;
    }

    .timer-sep {
        font-size: 18px;
    }
}
