/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent: #FF6F00;
    --accent-light: #FFA000;
    --text: #1a1a2e;
    --text-light: #555;
    --bg: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Security: disable drag on images */
img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    max-width: 100%;
    display: block;
}

/* Security: disable text selection on UI elements */
.btn, .nav__link, .logo {
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(46,125,50,0.35);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,50,0.45);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--small:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn--large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn--full { width: 100%; }

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.header.scrolled .logo__text,
.header.scrolled .nav__link {
    color: var(--text);
}

.header.scrolled .header__phone {
    color: var(--primary);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo__icon { font-size: 1.6rem; }

.logo__text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
    line-height: 1.3;
}

.logo--white .logo__text { color: var(--white); }

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav__link {
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.header.scrolled .nav__link:hover {
    color: var(--primary);
    background: rgba(46,125,50,0.08);
}

.header__phone {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    white-space: nowrap;
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: var(--transition);
}

.header__phone:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .burger span { background: var(--text); }

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(46,125,50,0.3) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.hero__title {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 0.9s ease 0.1s both;
}

.hero__title span {
    color: #81C784;
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInDown 1.1s ease 0.3s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInDown 1.2s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    animation: fadeIn 2s ease 1s both;
}

.hero__scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ========================================
   PAIN SECTION
======================================== */
.pain {
    padding: 100px 0;
    background: var(--white);
}

.pain__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pain__desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.pain__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.pain__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: var(--text);
}

.pain__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain__solution {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pain__solution-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pain__solution p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.pain__right {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pain__right img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    pointer-events: none;
}

.pain__img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pain__img-badge strong {
    display: block;
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.pain__img-badge span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   TOURS SECTION
======================================== */
.tours {
    padding: 100px 0;
    background: var(--bg);
}

.tours__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card__img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card__img img {
    transform: scale(1.08);
}

.tour-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-main);
    z-index: 1;
}

.tour-card__badge--new { background: #1976D2; }
.tour-card__badge--premium { background: #6A1B9A; }
.tour-card__badge--weekend { background: #00695C; }

.tour-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card__body h3 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
}

.tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tour-card__meta span {
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.tour-card__body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.tour-card__price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-card__price strong {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

/* ========================================
   ABOUT / FEATURES SECTION
======================================== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
}

.about .section-title,
.about .section-subtitle {
    color: var(--white);
}

.about .section-subtitle { color: rgba(255,255,255,0.75); }

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex;
        align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
}

.gallery__cta {
    text-align: center;
}

/* ========================================
   STEPS SECTION
======================================== */
.steps {
    padding: 100px 0;
    background: var(--bg);
}

.steps__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-card__num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.step-card h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-card__arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    padding: 0 16px;
    flex-shrink: 0;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.reviews__stars {
    font-size: 1.4rem;
    color: #FFC107;
    letter-spacing: 2px;
}

.reviews__rating strong {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text);
}

.reviews__rating span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-card__head img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
    pointer-events: none;
}

.review-card__head > div {
    flex: 1;
}

.review-card__head strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.review-card__head span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.review-card__stars {
    color: #FFC107;
    font-size: 0.95rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.review-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card__tour {
    display: inline-block;
    background: #E8F5E9;
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   OFFER SECTION
======================================== */
.offer {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.offer__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.offer__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.offer__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.78) 0%,
        rgba(27,94,32,0.7) 100%
    );
    z-index: 1;
}

.offer__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.offer__badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,111,0,0.5); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255,111,0,0); }
}

.offer__content h2 {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer__content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Timer */
.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.timer__item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
    min-width: 90px;
}

.timer__item span {
    display: block;
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
}

.timer__item label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    display: block;
}

.timer__sep {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

/* Seats bar */
.offer__seats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.seats__bar {
    width: 160px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.seats__fill {
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, #81C784, #4CAF50);
    border-radius: 10px;
    position: relative;
    animation: seatPulse 2s infinite;
}

@keyframes seatPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.offer__seats strong {
    color: #81C784;
    font-weight: 700;
}

/* ========================================
   QUIZ SECTION
======================================== */
.quiz {
    padding: 100px 0;
    background: var(--bg);
}

.quiz__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quiz__left .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.quiz__left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.quiz__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz__benefits li {
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz__right {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quiz__form {
    position: relative;
}

.quiz__step {
    display: none;
    padding: 40px;
    animation: fadeIn 0.4s ease;
}

.quiz__step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz__question {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.quiz__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.quiz__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.quiz__option:hover {
    border-color: var(--primary-light);
    background: #F1F8E9;
}

.quiz__option input {
    display: none;
}

.quiz__option.selected {
    border-color: var(--primary);
    background: #E8F5E9;
    color: var(--primary-dark);
    font-weight: 600;
}

.quiz__inputs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.quiz__inputs input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.quiz__inputs input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.quiz__inputs input.error {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
}

.quiz__agree {
    margin-bottom: 20px;
}

.quiz__agree label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.quiz__agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 1px;
    cursor: pointer;
}

.quiz__agree a {
    color: var(--primary);
    text-decoration: underline;
}

.quiz__note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.quiz__progress {
    height: 4px;
    background: var(--border);
}

.quiz__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

/* Success Step */
.quiz__success {
    text-align: center;
    padding: 60px 40px !important;
}

.success__icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pop 0.5s ease both;
}

@keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.quiz__success h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.quiz__success p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #0d1b0f;
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.6);
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer__col h4 {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer__col ul li a:hover {
    color: #81C784;
    padding-left: 4px;
}

.footer__phone {
    display: block;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer__phone:hover { color: #81C784; }

.footer__email {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__email:hover { color: #81C784; }

.footer__work {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer__license {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__license span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer__links a:hover { color: #81C784; }

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(46,125,50,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46,125,50,0.5);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: waPulse 3s infinite 2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

@keyframes waPulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}

/* ========================================
   ANIMATIONS (общие)
======================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    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; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
    .tours__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .pain__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pain__right { order: -1; }
    .pain__right img { height: 320px; }

    .quiz__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .steps__grid {
        flex-direction: column;
        gap: 32px;
        max-width: 340px;
        margin: 0 auto;
    }
    .step-card__arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
        height: 240px;
    }
    .gallery__item { height: 180px; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        z-index: 1100;
        gap: 4px;
    }
    .nav.open { right: 0; }
    .nav__link {
        color: var(--text) !important;
        font-size: 1rem;
        width: 100%;
        padding: 12px 16px;
    }
    .header__phone { display: none; }
    .burger { display: flex; }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .tours__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }

    .hero__stats { gap: 24px; }
    .stat strong { font-size: 1.5rem; }

    .timer__item { min-width: 70px; padding: 12px 14px; }
    .timer__item span { font-size: 1.8rem; }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .quiz__step { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .hero__btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__btns .btn { text-align: center; }
    .timer { gap: 6px; }
    .timer__sep { display: none; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: span 1; height: 220px; }
    .gallery__item { height: 180px; }
}