/* ============================================
   ВСП — Выездная Служба Питания
   Design System & Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors — оранжевый акцент на светлом фоне */
    --c-bg:        #FFFFFF;
    --c-bg-alt:    #FFF8F4;
    --c-bg-card:   #FFFFFF;
    --c-bg-card-hover: #FFF5F0;
    --c-surface:   #F7F3F0;
    --c-border:    rgba(0, 0, 0, 0.08);
    --c-border-hover: rgba(255, 107, 53, 0.25);

    --c-primary:   #FF6B35;
    --c-primary-hover: #FF8555;
    --c-primary-glow: rgba(255, 107, 53, 0.25);
    --c-accent:    #F7C948;
    --c-accent-glow: rgba(247, 201, 72, 0.2);

    --c-text:      #000000;
    --c-text-secondary: #000000;
    --c-text-muted: #000000;

    --c-success:   #34D399;
    --c-gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7C948 100%);
    --c-gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF3E6C 100%);
    --c-gradient-bg: radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.06) 0%, transparent 50%);

    /* Typography */
    --f-heading: 'Nunito', sans-serif;
    --f-body:    'Nunito Sans', sans-serif;

    /* Spacing */
    --section-py: clamp(56px, 7vw, 98px);
    --container-px: clamp(16px, 4vw, 40px);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Transitions */
    --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}
button { cursor: pointer; }

/* ---------- Utilities ---------- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-box {
    background: var(--c-bg-card);
    border-radius: 36px;
    padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 60px);
    border: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
}
.section-box--alt {
    background: var(--c-bg-alt);
}
.section-box--primary {
    background: var(--c-primary);
    border-color: transparent;
}

.text-accent {
    background: var(--c-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--f-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--f-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--c-text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--f-heading);
    font-weight: 600;
    border-radius: var(--r-full);
    transition: all var(--t-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--c-primary);
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    box-shadow: 0 4px 24px var(--c-primary-glow);
}
.btn--primary:hover {
    background: var(--c-primary-hover);
    box-shadow: 0 8px 32px var(--c-primary-glow);
    transform: translateY(-2px);
}

.btn--outline {
    border: 2px solid rgba(0,0,0,0.15);
    color: var(--c-text);
    padding: 12px 30px;
    font-size: 15px;
    backdrop-filter: blur(4px);
}
.btn--outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(255, 107, 53, 0.06);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: all var(--t-base);
    background: transparent;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.08);
}

.header--menu-open {
    background: #111111 !important;
    backdrop-filter: none;
    box-shadow: none;
}

.header--menu-open .burger span {
    background: #ffffff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo__icon {
    width: 44px;
    height: 44px;
    display: flex;
}
.logo__icon svg {
    width: 100%;
    height: 100%;
}
.logo__img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo__text {
    display: flex;
    flex-direction: column;
}
.logo__name {
    font-family: var(--f-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    background: var(--c-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo__tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-secondary);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--r-full);
    transition: all var(--t-fast);
    color: var(--c-text-secondary);
}
.nav__link:hover {
    color: var(--c-text);
    background: rgba(0, 0, 0, 0.04);
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--r-full);
    color: var(--c-text-secondary);
    transition: all var(--t-fast);
    cursor: pointer;
}
.nav__dropdown-toggle:hover {
    color: var(--c-text);
    background: rgba(0, 0, 0, 0.04);
}

.nav__arrow {
    font-size: 11px;
    transition: transform var(--t-fast);
    display: inline-block;
}
.nav__dropdown:hover .nav__arrow {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 8px;
    background: transparent;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: all var(--t-fast);
    z-index: 100;
}
.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: -1;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav__dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-secondary);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}
.nav__dropdown-item:hover {
    color: var(--c-primary);
    background: rgba(255, 107, 53, 0.06);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.header__phone-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.header__phone {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--c-text);
    transition: color var(--t-fast);
}
.header__phone:hover {
    color: var(--c-primary);
}
.header__badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-primary);
}
.header__badge-dot {
    display: none;
}
.header__btn {
    padding: 14px 40px;
    font-size: 15px;
    height: 52px;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--t-base);
}
.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);
}

/* ============================================
   BLOCK 1: HERO
   ============================================ */
.hero {
    background: var(--c-bg);
    padding: calc(var(--header-h) + 24px) 0 40px;
}

.hero__card {
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--c-primary) url('../images/hero.png') center right / auto 100% no-repeat;
}

/* Gradient overlay so text is readable */

.hero__content {
    position: relative;
    z-index: 2;
    padding: 56px 60px;
    max-width: 620px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
}

.hero__title {
    font-family: var(--f-heading);
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 460px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn--white {
    background: #fff;
    color: var(--c-primary);
    padding: 14px 32px;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}

.btn--outline-white {
    border: 2px solid #ffffff;
    color: #fff;
    padding: 12px 30px;
    font-size: 15px;
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Hero stats */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 40px;
    right: 48px;
    z-index: 2;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 24px;
    padding: 24px 32px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
}
.hero__stat-row {
    display: flex;
    align-items: baseline;
    gap: 1px;
}
.hero__stat-number {
    font-family: var(--f-heading);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline;
}
.hero__stat-plus {
    font-family: var(--f-heading);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline;
}
.hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.hero__scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--c-primary);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ============================================
   BLOCK: MEALS
   ============================================ */
.meals {
    padding: var(--section-py) 0;
    background: transparent;
}

.meals__filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.meals__filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--c-border);
    border-radius: var(--r-full);
    background: transparent;
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    cursor: pointer;
    transition: all var(--t-base);
}

.meals__filter-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.meals__filter-btn--active,
.meals__filter-btn.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.meals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.meal-card {
    background: var(--c-bg-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-base);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.meal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.meal-card__image {
    height: 200px;
    overflow: hidden;
}

.meal-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 48px;
}

.meal-card__placeholder small {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meal-card__body {
    padding: 20px;
}

.meal-card__title {
    font-family: var(--f-heading);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--c-heading);
}

.meal-card__desc {
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--c-text-secondary);
    margin: 0 0 16px;
    line-height: 1.4;
}

.meal-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.meal-card__price {
    font-family: var(--f-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-primary);
}

.meal-card__weight {
    font-size: 13px;
    color: var(--c-text-muted);
}

.meals__cta {
    text-align: center;
}

/* ============================================
   BLOCK 2: SERVICES
   ============================================ */
.services {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
}

/* Service rows — interactive list style */
.services__list {
    display: flex;
    flex-direction: column;
}

.svc-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--c-border);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: visible;
    transition: all var(--t-base);
}
.svc-row:first-child {
    border-top: 1px solid var(--c-border);
}
.svc-row:hover {
    padding-left: 16px;
}

.svc-row__num {
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--c-primary);
    min-width: 32px;
    transition: all var(--t-base);
}

.svc-row__title {
    font-family: var(--f-heading);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    flex: 1;
    transition: all var(--t-base);
}
.svc-row:hover .svc-row__title {
    color: var(--c-primary);
}

.svc-row__tag {
    padding: 5px 14px;
    background: var(--c-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--r-full);
}

.svc-row__price {
    font-family: var(--f-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-primary);
    white-space: nowrap;
}

.svc-row__arrow {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    font-size: 22px;
    flex-shrink: 0;
    transition: all var(--t-base);
}
.svc-row:hover .svc-row__arrow {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
    transform: translateX(4px);
}

/* Floating image on hover */
.svc-row__img {
    position: absolute;
    left: calc(50% + 100px);
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8) rotate(-3deg);
    width: 200px;
    height: 150px;
    border-radius: var(--r-lg);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.svc-row:hover .svc-row__img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(2deg);
}

.svc-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.svc-row__placeholder {
    width: 100%;
    height: 100%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   BLOCK 3: SETS
   ============================================ */
.sets {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
}

.sets__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.sets__tab {
    padding: 10px 28px;
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1px solid var(--c-border);
    color: var(--c-text-secondary);
    transition: all var(--t-fast);
}
.sets__tab:hover {
    border-color: var(--c-border-hover);
    color: var(--c-text);
}
.sets__tab--active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.sets__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.set-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all var(--t-base);
    position: relative;
    display: flex;
    flex-direction: column;
}
.set-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.1);
}

.set-card--featured {
    border-color: var(--c-primary);
    box-shadow: 0 0 40px var(--c-primary-glow);
}
.set-card--featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-lg);
    padding: 1px;
    background: var(--c-gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.set-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-secondary);
}
.set-card__badge--accent {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.set-card__image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}
.set-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.set-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--c-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--c-text-muted);
    font-size: 13px;
    transition: all var(--t-slow);
}
.set-card__placeholder small {
    font-size: 11px;
    opacity: 0.5;
}
.set-card:hover .set-card__placeholder {
    transform: scale(1.05);
}

.set-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.set-card__title {
    font-family: var(--f-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.set-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}
.set-card__list li {
    font-size: 14px;
    color: var(--c-text-secondary);
    padding-left: 20px;
    position: relative;
}
.set-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
}

.set-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
}

.set-card__price-value {
    font-family: var(--f-heading);
    font-size: 28px;
    font-weight: 800;
    background: var(--c-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.set-card__price-unit {
    display: block;
    font-size: 12px;
    color: var(--c-text-muted);
}

/* ============================================
   BLOCK 4: ADVANTAGES
   ============================================ */
.advantages {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    padding: 40px 32px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-border-hover);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
}
.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--c-primary);
}
.advantage-card__icon svg {
    width: 100%;
    height: 100%;
}

.advantage-card__title {
    font-family: var(--f-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-card__text {
    font-size: 15px;
    color: var(--c-text-secondary);
    line-height: 1.6;
}

/* ============================================
   BLOCK 5: HOW WE WORK
   ============================================ */
.how {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
}

.how__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.how__timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--c-border);
}

.how__step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.how__step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--f-heading);
    font-size: 28px;
    font-weight: 800;
    background: var(--c-bg-card);
    border: 2px solid var(--c-border);
    border-radius: 50%;
    color: var(--c-primary);
    position: relative;
    z-index: 2;
    transition: all var(--t-base);
}
.how__step:hover .how__step-number {
    border-color: var(--c-primary);
    box-shadow: 0 0 30px var(--c-primary-glow);
    transform: scale(1.1);
}

.how__step-content h3 {
    font-family: var(--f-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.how__step-content p {
    font-size: 14px;
    color: var(--c-text-secondary);
    line-height: 1.6;
}

/* ============================================
   BLOCK 6: ABOUT (creative editorial layout)
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: 8%;
    left: -250px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--c-primary-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.about::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--c-accent-glow) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ----- Story column ----- */
.about__story {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
}

.about__eyebrow {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-primary);
}

.about__title {
    font-family: var(--f-heading);
    font-weight: 900;
    font-size: clamp(48px, 7vw, 110px);
    line-height: 0.92;
    letter-spacing: -0.025em;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--c-text);
}
.about__title span { display: block; }
.about__title-accent {
    color: var(--c-primary);
    font-style: italic;
    transform: translateX(48px);
    background: linear-gradient(135deg, var(--c-primary) 0%, #FF3E6C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about__quote {
    border-left: 3px solid var(--c-primary);
    padding-left: 24px;
    max-width: 460px;
}
.about__quote p {
    font-size: 18px;
    line-height: 1.55;
    font-style: italic;
    color: var(--c-text);
    margin-bottom: 10px;
}
.about__quote span {
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ----- Visual column ----- */
.about__visual {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
}

.about__image {
    position: absolute;
    inset: 0;
    border-radius: 240px 240px 32px 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}
.about__image .about__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-bg-alt) 0%, var(--c-surface) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--c-text-muted);
    font-size: 16px;
}
.about__image .about__placeholder small {
    font-size: 12px;
    opacity: 0.6;
}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Year stamp — circular floating badge */
.about__year-stamp {
    position: absolute;
    top: -20px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px var(--c-primary-glow);
    z-index: 3;
    transform: rotate(-12deg);
    animation: about-float 6s ease-in-out infinite;
}
.about__year-stamp span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.85;
}
.about__year-stamp strong {
    font-family: var(--f-heading);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
}

/* Quality badge — floating card bottom-right */
.about__badge {
    position: absolute;
    bottom: 24px;
    right: -36px;
    background: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: about-float-2 7s ease-in-out infinite;
}
.about__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.about__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.about__badge-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-text-muted);
    font-weight: 700;
}
.about__badge-text strong {
    font-family: var(--f-heading);
    font-size: 17px;
    font-weight: 800;
    margin-top: 2px;
}

/* ----- Pillars row ----- */
.about__pillars {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--c-border);
}
.pillar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pillar__num {
    font-family: var(--f-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: 3px;
}
.pillar h3 {
    font-family: var(--f-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}
.pillar p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text-secondary);
}

@keyframes about-float {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50%      { transform: rotate(-7deg) translateY(-8px); }
}
@keyframes about-float-2 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
        position: relative;
    }
    .about__title-accent {
        transform: none;
    }
    .about__story {
        padding-right: 130px;
    }
    .about__visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .about__pillars {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
        padding-top: 40px;
    }
    .about__year-stamp {
        top: 0;
        right: 0;
        left: auto;
        width: 115px;
        height: 115px;
        transform: rotate(-8deg);
    }
    .about__year-stamp strong { font-size: 28px; }
    .about__badge {
        right: 8px;
        bottom: 12px;
        padding: 14px 18px;
    }
}

/* ============================================
   BLOCK 7: MARQUEE
   ============================================ */
.marquee {
    padding: 28px 0;
    background: var(--c-primary);
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    width: max-content;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    padding-right: 32px;
}

.marquee__item {
    font-family: var(--f-heading);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee__separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

/* ============================================
   BLOCK: DELIVERY ZONES
   ============================================ */
.zones {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.zones__cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.zone-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: var(--color, #FF6B35);
    color: #fff;
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-full);
    transform: rotate(var(--rotate, 0deg));
    transition: all var(--t-base);
    cursor: default;
    white-space: nowrap;
}
.zone-pill:hover {
    transform: rotate(0deg) scale(1.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.zone-pill--lg {
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.zone-pill--accent {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 800;
    background: var(--c-gradient-1);
    letter-spacing: 0.5px;
}

/* ============================================
   BLOCK 8: REVIEWS
   ============================================ */
.reviews {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
}

.reviews__slider {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 36px;
    transition: all var(--t-base);
}
.review-card:hover {
    border-color: var(--c-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
}

.review-card__stars {
    font-size: 18px;
    color: var(--c-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    color: var(--c-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-surface);
    border-radius: 50%;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--c-primary);
    border: 2px solid var(--c-border);
}

.review-card__author strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}
.review-card__author span {
    font-size: 13px;
    color: var(--c-text-muted);
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.reviews__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    background: var(--c-bg-card);
    transition: all var(--t-fast);
}
.reviews__btn:hover {
    border-color: var(--c-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--c-primary);
}
.reviews__btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   BLOCK 9: FAQ
   ============================================ */
.faq {
    padding: var(--section-py) 0;
    background: transparent;
}

.faq__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.faq__tab {
    padding: 10px 28px;
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 2px solid var(--c-border);
    background: transparent;
    color: var(--c-text-secondary);
    cursor: pointer;
    transition: all var(--t-fast);
}

.faq__tab:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.faq__tab--active,
.faq__tab--active:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.faq__panels {
    max-width: 100%;
}

.faq__panel {
    display: none;
}

.faq__panel--active {
    display: block;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    border-bottom: 1px solid var(--c-border);
}
.faq__item:first-child {
    border-top: 1px solid var(--c-border);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--f-heading);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--t-fast);
    color: var(--c-text);
}
.faq__question:hover {
    color: var(--c-primary);
}

.faq__icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--c-primary);
    transition: transform var(--t-base);
    flex-shrink: 0;
}
.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base);
}
.faq__answer p {
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--c-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   BLOCK 10: CONTACT
   ============================================ */

.contact {
    padding: var(--section-py) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    filter: blur(100px);
    pointer-events: none;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info .section-title {
    text-align: left;
}

.contact__text {
    font-size: 16px;
    color: var(--c-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: all var(--t-fast);
}
.contact__detail:hover {
    border-color: var(--c-border-hover);
    background: var(--c-bg-card-hover);
}
.contact__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--t-fast);
    font-size: 22px;
}
.contact__detail:hover .contact__detail-icon {
    transform: scale(1.08);
}
.contact__detail-icon svg {
    width: 22px;
    height: 22px;
}
.contact__detail-icon--phone {
    background: rgba(255, 107, 53, 0.1);
    color: var(--c-primary);
}
.contact__detail-icon--mail {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}
.contact__detail-icon--tg {
    background: rgba(34, 158, 217, 0.12);
    color: #229ED9;
}
.contact__detail div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact__detail strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.contact__detail span {
    font-size: 13px;
    color: var(--c-text-muted);
}

/* Contact guarantee block */
.contact__guarantee {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.contact__guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text-secondary);
}
.contact__guarantee-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--c-primary);
}

/* Contact Form */
.contact__form {
    background: var(--c-bg-card);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 40px;
}

.form__group {
    margin-bottom: 16px;
}

.form__input {
    width: 100%;
    padding: 16px 20px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-size: 15px;
    color: var(--c-text);
    transition: all var(--t-fast);
}
.form__input::placeholder {
    color: var(--c-text-muted);
}
.form__input:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-glow);
}

.form__select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A9A' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__privacy {
    text-align: center;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 12px;
}
.form__privacy a {
    color: var(--c-primary);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.logo--footer .logo__name {
    font-size: 20px;
}

.footer__about {
    font-size: 14px;
    color: var(--c-text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--f-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-text);
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: var(--c-text-secondary);
    padding: 4px 0;
    transition: color var(--t-fast);
}
.footer__link:hover {
    color: var(--c-primary);
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer__social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--t-fast);
}
.footer__social svg {
    width: 22px;
    height: 22px;
}
.footer__social--telegram {
    background: #229ED9;
}
.footer__social--telegram:hover {
    background: #1A8BC5;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(34, 158, 217, 0.4);
}
.footer__social--max {
    background: linear-gradient(135deg, #7927FF 0%, #FF2B5C 100%);
}
.footer__social--max:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(121, 39, 255, 0.4);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
    color: var(--c-text-muted);
}
.footer__bottom a {
    color: var(--c-text-muted);
    transition: color var(--t-fast);
}
.footer__bottom a:hover {
    color: var(--c-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes float-emoji {
    0%, 100% { opacity: 0; transform: translateY(20px) rotate(-5deg); }
    20%, 80% { opacity: 0.3; }
    50% { opacity: 0.5; transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(255, 107, 53, 0.2); }
    50% { border-color: rgba(255, 107, 53, 0.5); }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FLOATING ACTION BUTTONS (FAB)
   ============================================ */
.fab {
    position: fixed;
    bottom: 28px;
    right: 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--t-base);
    pointer-events: none;
}
.fab.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.fab__btn {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all var(--t-base);
    color: #fff;
    flex-shrink: 0;
}
.fab__btn svg {
    width: 32px;
    height: 32px;
}

.fab__btn--order {
    background: var(--c-primary);
}
.fab__btn--order:hover {
    background: var(--c-primary-hover);
    transform: scale(1.1);
    box-shadow: 0 8px 32px var(--c-primary-glow);
    color: #fff;
}

.fab__btn--telegram {
    background: #229ED9;
}
.fab__btn--telegram:hover {
    background: #1A8BC5;
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(34, 158, 217, 0.35);
    color: #fff;
}

/* ============================================
   DEGUSTATION PROMO BLOCK
   ============================================ */
.degu-promo {
    padding: var(--section-py) 0;
}
.degu-promo__card {
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background:
        var(--c-primary) url('../images/дегустация.png') center / 120% no-repeat;
}
.degu-promo__content {
    position: relative;
    z-index: 2;
    padding: 56px 60px;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.degu-promo__title {
    color: #fff;
}
.degu-promo__subtitle {
    font-size: 17px;
    color: #fff;
    max-width: 460px;
}
.degu-promo__btn {
    width: fit-content;
}
.degu-promo__title {
    font-family: var(--f-heading);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.degu-promo__subtitle {
    font-size: clamp(17px, 1.4vw, 20px);
    color: #fff;
    max-width: 400px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}
.modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--c-bg-alt);
    border-radius: var(--r-xl);
    padding: clamp(32px, 5vw, 56px);
    max-width: 620px;
    width: 100%;
    position: relative;
    transform: translateY(24px);
    transition: transform var(--t-base);
}
.modal-overlay.is-open .modal {
    transform: translateY(0);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
    border: none;
}
.modal__close:hover {
    background: var(--c-border);
}
.modal__title {
    font-family: var(--f-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}
.modal__subtitle {
    font-size: 15px;
    color: var(--c-text-secondary);
    margin-bottom: 28px;
}
.modal__label {
    display: block;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}
.modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal__form .form__group {
    margin: 0;
}


/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav--mobile-open {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    background: #111111;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 24px 0 40px;
}
.nav--mobile-open .nav__link,
.nav--mobile-open .nav__dropdown-toggle {
    font-size: 20px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 0;
    width: 100%;
    text-align: left;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav--mobile-open .nav__link:hover,
.nav--mobile-open .nav__dropdown-toggle:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.nav--mobile-open .nav__dropdown {
    display: flex;
    flex-direction: column;
}
.nav--mobile-open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: rgba(0,0,0,0.12);
    min-width: unset;
    padding: 8px 0;
    display: none;
}
.nav--mobile-open .nav__dropdown-menu::before {
    display: none;
}
.nav--mobile-open .nav__dropdown--open .nav__dropdown-menu {
    display: block;
}
.nav--mobile-open .nav__dropdown-item {
    font-size: 16px;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    display: block;
}
.nav--mobile-open .nav__dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.nav--mobile-open .nav__arrow {
    transition: transform 0.3s;
    font-size: 22px;
}
.nav--mobile-open .nav__dropdown--open .nav__arrow {
    transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .sets__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .how__timeline::before {
        display: none;
    }
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero__subtitle {
        margin: 0 auto 36px;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__stats {
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card--large {
        grid-column: span 2;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews__track {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .nav {
        display: none;
    }
    .nav--mobile-open {
        display: flex;
    }
    .burger {
        display: flex;
    }
    .header__phone {
        display: none;
    }
    .header__btn {
        display: none;
    }
}

@media (max-width: 768px) {
    h1, h2, h3,
    .section-title,
    .section-subtitle,
    .hero__title,
    .hero__subtitle,
    .ol-hero__title,
    .ol-hero__subtitle,
    .about__title,
    p {
        text-wrap: balance;
    }

    .degu-promo__card {
        background:
            linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
            var(--c-primary) url('../images/дегустация.png') right -20px center / 280% no-repeat;
        min-height: 400px;
    }
    .degu-promo__content {
        padding: 32px 24px;
    }

    .hero__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        pointer-events: none;
        z-index: 1;
    }

    .hero__content {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
    .service-card--large {
        grid-column: span 1;
    }

    .sets__grid {
        grid-template-columns: 1fr;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .how__timeline {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }


    .footer__top {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact__form {
        padding: 24px;
    }

    .sets__tabs {
        flex-wrap: wrap;
    }

    .marquee__item {
        font-size: 16px;
    }

    .degu-promo__content {
        padding: 36px 28px;
    }
}
