/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --orange:        #F47B20;
  --orange-dark:   #D96A10;
  --orange-light:  #FF9A45;
  --orange-glow:   rgba(244,123,32,0.18);
  --blue:          #1A3A5C;
  --blue-dark:     #0D1F35;
  --blue-mid:      #162E4A;
  --blue-glass:    rgba(13,31,53,0.72);
  --white:         #FFFFFF;
  --gray-light:    #F4F6FA;
  --gray:          #8A9BB0;
  --text:          #1A2535;
  --text-light:    #5A6A7E;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;
  --shadow:        0 4px 24px rgba(13,31,53,0.09);
  --shadow-lg:     0 12px 48px rgba(13,31,53,0.16);
  --shadow-orange: 0 6px 28px rgba(244,123,32,0.32);
  --transition:    0.22s ease;
  --blur:          blur(18px);
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(244,123,32,0.45);
}
.btn--header {
  background: var(--orange);
  color: var(--white);
  padding: 9px 20px;
  font-size: 14px;
  border-radius: var(--radius-xs);
  box-shadow: none;
}
.btn--header:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}


/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.logo__icon svg { display: block; width: 100%; height: 100%; }
.logo__text strong { color: var(--orange); }
.logo__since {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 2px;
}


.nav { display: flex; gap: 24px; }
.nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }


/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 85% 75% at 70% 22%, rgba(244,123,32,0.11) 0%, transparent 62%),
    radial-gradient(ellipse 80% 95% at 12% 92%, rgba(63,126,179,0.18) 0%, transparent 62%),
    linear-gradient(160deg, #0B1B30 0%, #122B48 52%, #1A3A5C 100%);
  padding: 56px 0 56px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: 72% 55%;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: blur(1.5px) saturate(0.9) contrast(1.05);
  transform: scale(1.02);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.00) 40%),
    radial-gradient(700px 240px at 48% 10%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}


.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero__content {
  flex: 1;
  max-width: 640px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 28px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}


.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}


.hero__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero__title-accent { color: var(--orange-light); }


.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
  max-width: 460px;
  line-height: 1.65;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-num {
  font-size: 21px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
}
.hero__hours-icon { font-size: 14px; }


/* Hero badge */
/* Вращающееся кольцо вынесено на обёртку .hero__badge,
   чтобы overflow:hidden на .badge__circle его не обрезал */

/* Декоративные анимированные круги */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,123,32,0.13);
}
.hero__deco-ring--1 {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  animation: ring-spin 30s linear infinite;
  border-style: dashed;
  border-color: rgba(244,123,32,0.10);
}
.hero__deco-ring--2 {
  width: 320px; height: 320px;
  top: -60px; right: -30px;
  animation: ring-spin 20s linear infinite reverse;
  border-color: rgba(255,255,255,0.07);
}
.hero__deco-ring--3 {
  width: 700px; height: 700px;
  bottom: -300px; right: -200px;
  animation: ring-spin 45s linear infinite;
  border-style: dashed;
  border-color: rgba(244,123,32,0.05);
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__badge {
  flex-shrink: 0;
  position: relative;
  margin-left: -22px;
  z-index: 2;
}
.hero__badge::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.28);
  animation: spin 18s linear infinite;
  pointer-events: none;
}
.hero__badge::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(244,123,32,0.20);
  animation: spin 28s linear infinite reverse;
  pointer-events: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.badge__circle {
  width: 152px; height: 152px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-light), var(--orange-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 10px 36px rgba(244,123,32,0.22);
  text-align: center;
  padding: 14px;
  position: relative;
  overflow: hidden; /* безопасно — режет только внутренний блик */
}
/* Псевдоэлемент ::before теперь не нужен на badge__circle */
.badge__circle::before { display: none; }


.badge__top {
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 4px 0;
  white-space: nowrap;
}
.badge__bottom { font-size: 12px; color: rgba(255,255,255,0.75); }


/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--gray-light); }
.hero { overflow: clip; }
.footer { overflow: clip; }


.section__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section__subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 40px;
}
.section__title-line {
  width: 44px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin-bottom: 16px;
}


/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,31,53,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,123,32,0.15);
}
.service-card:hover::before { transform: scaleX(1); }


.service-card__icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}
.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}


/* ===== CALCULATOR ===== */
.calc__lead {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 15px;
}
.calc__card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.calc__fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.calc__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc__radio { cursor: pointer; }
.calc__radio input { display: none; }
.calc__radio span {
  display: flex;
  flex-direction: column;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #DDE3EC;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1.3;
}
.calc__radio span small {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  margin-top: 3px;
}
.calc__radio input:checked + span {
  border-color: var(--orange);
  background: linear-gradient(135deg, #FFF8F2, #FFF3E8);
  color: var(--orange-dark);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(244,123,32,0.12);
}
.calc__radio input:checked + span small { color: var(--orange); }
.calc__radio:hover span { border-color: var(--orange-light); }


/* Slider */
.calc__slider-wrap { display: flex; flex-direction: column; gap: 10px; }
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: #DDE3EC;
  outline: none;
  cursor: pointer;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  box-shadow: 0 2px 10px rgba(244,123,32,0.45);
  cursor: pointer;
  transition: transform var(--transition);
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
}
.calc__slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}
#calc-km-val { font-weight: 700; color: var(--orange-dark); }


/* Result panel */
.calc__result {
  background: linear-gradient(160deg, #0F2540 0%, #162E4A 60%, #1A3A5C 100%);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calc__result::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.calc__result-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.45);
  position: relative;
}
.calc__result-total {
  font-size: 46px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
}
.calc__result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.calc__breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}
.calc__breakdown-row span:last-child { font-weight: 600; color: rgba(255,255,255,0.90); }
.calc__breakdown-row--total {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 8px;
  margin-top: 2px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
}
.calc__breakdown-row--total span:last-child { color: var(--orange-light); font-size: 15px; }
.calc__result-cta {
  margin-top: 4px;
  width: 100%;
  position: relative;
}
.calc__result-note {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  line-height: 1.5;
  text-align: center;
  position: relative;
}


/* ===== PRICING ===== */
.pricing__visit {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pricing__visit-icon { font-size: 28px; flex-shrink: 0; }
.pricing__visit strong { color: var(--orange-light); }


/* TABS */
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  background: rgba(13,31,53,0.05);
  padding: 5px;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.tab {
  padding: 9px 22px;
  border-radius: var(--radius-xs);
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab:hover { color: var(--blue-dark); background: rgba(255,255,255,0.6); }
.tab--active {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 2px 8px rgba(13,31,53,0.10);
}


.tab-content { display: none; }
.tab-content--active { display: block; }


/* PACKAGE CARDS */
.pkg-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pkg-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,31,53,0.08);
}
.pkg-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
}
.pkg-card--blue .pkg-card__header {
  background: linear-gradient(135deg, #0D1F35 0%, #162E4A 100%);
}
.pkg-card--orange .pkg-card__header {
  background: linear-gradient(135deg, #C05A08 0%, var(--orange-dark) 50%, var(--orange) 100%);
}
.pkg-card__icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.pkg-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.pkg-card__tables {
  background: var(--white);
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.pkg-table-block { min-width: 0; }
.pkg-card__footnote {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  background: #F7F9FC;
  border-left: 3px solid var(--orange);
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  margin-bottom: 4px;
}
.pkg-table-block {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.pkg-table-block__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
  padding-left: 2px;
}


/* PRICE TABLE */
.price-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13,31,53,0.08);
  contain: layout paint;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 420px;
}
.price-table th {
  background: #F0F3F8;
  color: var(--text-light);
  padding: 9px 14px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(13,31,53,0.08);
}
.price-table th:first-child { text-align: left; }
.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #EEF1F6;
  text-align: center;
  color: var(--text);
  background: var(--white);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .row-label {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.price-table .row-label--accent {
  color: var(--blue-dark);
  font-weight: 700;
}
.price-table .row-4 td { background: #F7F9FC; }
.price-table .price-highlight {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 13px;
  white-space: nowrap;
}
.price-table .price-highlight--lg {
  font-size: 14px;
  color: var(--orange-dark);
  white-space: nowrap;
}


/* INDIVIDUAL */
.ind-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.ind-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ind-group {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,31,53,0.07);
}
.ind-group__title {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #0D1F35, #1A3A5C);
  letter-spacing: 0.1px;
}
.ind-group__footnote {
  padding: 7px 18px;
  font-size: 11px;
  color: var(--text-light);
  background: #F7F9FC;
  border-bottom: 1px solid #EEF1F6;
  font-style: italic;
}
.ind-group__list {
  padding: 4px 0;
}
.ind-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid #EEF1F6;
  gap: 12px;
  transition: background var(--transition);
}
.ind-row:last-child { border-bottom: none; }
.ind-row:hover { background: #F7F9FC; }
.ind-row__name {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}
.ind-row__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  white-space: nowrap;
  flex-shrink: 0;
}


@media (max-width: 720px) {
  .pkg-card__header { padding: 18px 20px; }
  .pkg-card__tables { padding: 16px 16px 20px; }
}


/* INDIVIDUAL TABLE — оставляем для совместимости */
.individual-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,31,53,0.06);
}
.individual-table .price-table { min-width: 300px; }
.individual-table .price-table td:last-child { font-weight: 700; color: var(--orange-dark); }


/* STORAGE */
.storage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.storage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(13,31,53,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.storage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.storage-card__label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.storage-card__price { font-size: 24px; font-weight: 800; color: var(--orange-dark); }
.storage-card__sub { font-size: 12px; color: var(--gray); margin-top: 4px; }


/* NOTES */
.pricing__notes {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow);
}
.pricing__notes p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 4px;
}
.pricing__notes p:last-child { margin-bottom: 0; }


/* ===== CONTACTS ===== */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(13,31,53,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card__icon { font-size: 28px; margin-bottom: 4px; }
.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}
.contact-card__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-card__value:hover { color: var(--orange); }
.contact-card__sub { font-size: 13px; color: var(--text-light); }


.contact-card--cta {
  background: linear-gradient(145deg, var(--orange-light), var(--orange-dark));
  border: none;
  box-shadow: var(--shadow-orange);
}
.contact-card--cta:hover { box-shadow: 0 12px 40px rgba(244,123,32,0.45); }
.contact-card--cta .contact-card__label { color: rgba(255,255,255,0.70); }
.contact-card--cta .contact-card__value { color: var(--white); font-size: 22px; }
.contact-card--cta .contact-card__sub { color: rgba(255,255,255,0.75); }


/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner { display: flex; flex-direction: column; gap: 14px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.footer__legal-item { font-size: 12px; color: rgba(255,255,255,0.38); }
.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.22); margin-top: 4px; }


/* ===== CORPORATE ===== */
.corporate {
  background:
    radial-gradient(ellipse 70% 60% at 95% 50%, rgba(244,123,32,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #0D1F35 0%, #162E4A 50%, #1A3A5C 100%);
  padding: 80px 0;
}
.corporate__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.corporate__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.30);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.corporate__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.corporate .section__title-line {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin-bottom: 16px;
}
.corporate__lead {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.corporate__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.corporate__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: background var(--transition), border-color var(--transition);
}
.corporate__feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(244,123,32,0.25);
}
.corporate__feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}
.corporate__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.corporate__feature-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
}
.corporate__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.corporate__cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}


/* Aside */
.corporate__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 72px;
  align-self: start;
}
.corporate__aside-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 24px;
}
.corporate__aside-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.corporate__aside-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.corporate__aside-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.corporate__aside-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.corporate__aside-requisites {
  background: rgba(244,123,32,0.08);
  border: 1px solid rgba(244,123,32,0.20);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.corporate__aside-req-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.corporate__aside-req-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.corporate__aside-req-row:last-child { border-bottom: none; }
.corporate__aside-req-row span:first-child { color: rgba(255,255,255,0.40); }
.corporate__aside-req-row span:last-child { color: var(--white); font-weight: 600; text-align: right; }
.corporate__aside-req-row a { color: var(--orange-light); text-decoration: none; font-weight: 600; }
.corporate__aside-req-row a:hover { color: var(--orange); }


@media (max-width: 900px) {
  .corporate__inner { grid-template-columns: 1fr; }
  .corporate__aside { position: static; }
  .corporate__features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .corporate__features { grid-template-columns: 1fr; }
  .corporate__cta { flex-direction: column; align-items: flex-start; }
}


/* ===== COOKIE NOTICE ===== */
.cookie {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  background: var(--blue-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(13,31,53,0.35);
  z-index: 999;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie--hidden {
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
}
.cookie__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 14px;
}
.cookie__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cookie__text {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}
.cookie__text a {
  white-space: normal;
  overflow-wrap: anywhere;
}
.cookie__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.40);
  font-size: 14px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color var(--transition);
  margin-top: -2px;
}
.cookie__close:hover { color: rgba(255,255,255,0.90); }
.cookie__bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.cookie__bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  transform-origin: left;
  transition: transform linear;
}


@media (max-width: 860px) {
  .calc__card { grid-template-columns: 1fr; }
  .calc__result {
    position: relative;
    top: auto;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .header__inner { height: 52px; }
  .nav { display: none; }
  .btn--header {
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }

  .hero { padding: 40px 0 44px; }
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.4px; padding: 4px 10px; }
  .hero__badge { align-self: center; margin-left: 0; }
  .badge__circle { width: 130px; height: 130px; }
  .badge__price { font-size: 20px; }
  .hero__stats { gap: 14px; }
  .hero__stat-num { font-size: 18px; }

  .section { padding: 48px 0; }
  .section__subtitle { font-size: 14px; margin-bottom: 28px; }

  .pricing__visit { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 14px; }

  .tabs { width: 100%; }
  .tab { flex: 1; text-align: center; padding: 9px 8px; font-size: 13px; }

  .pkg-card__header { padding: 16px 18px; gap: 12px; }
  .pkg-card__tables { padding: 14px 14px 18px; }
  .pkg-card__title { font-size: 16px; }

  .contacts__grid { grid-template-columns: 1fr; }
  .contact-card--cta .contact-card__value { font-size: 18px; }

  .corporate { padding: 48px 0; }
  .corporate__features { grid-template-columns: 1fr; gap: 12px; }
  .corporate__cta { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 34px 0 38px; }
  .hero__content {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__eyebrow { white-space: normal; text-align: left; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .badge__circle { width: 110px; height: 110px; }
  .badge__price { font-size: 18px; }
  .badge__top { font-size: 10px; }
  .badge__bottom { font-size: 11px; }

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

  .calc__radio span { font-size: 13px; padding: 9px 14px; }
  .calc__result-total { font-size: 36px; }

  .storage-cards { grid-template-columns: 1fr 1fr; }

  .ind-layout { grid-template-columns: 1fr; }

  .cookie {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    max-width: none;
    bottom: 16px;
  }

  .footer__legal { flex-direction: column; gap: 4px; }
}
