:root {
  --luk-red: #d8232a;
  --luk-red-dark: #b81d23;
  --luk-red-light: #fdf0f0;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #ddd;
  --bg: #fff;
  --bg-gray: #f5f5f5;
  --sidebar-gray: #ececec;
  --font: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #f7f7f7;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Top utility bar ── */
.top-bar {
  background: var(--luk-red);
  color: #fff;
  font-size: 0.8125rem;
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar__search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.top-bar__search input {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  width: 120px;
  outline: none;
}

.top-bar__search button {
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #888;
}

.top-bar__hotline--mobile {
  display: none;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top-bar__right--desktop {
    display: none;
  }

  .top-bar__hotline--mobile {
    display: block;
  }

  .top-bar__inner {
    justify-content: center;
    position: relative;
  }

  .top-bar__left {
    display: none;
  }
}

/* ── Main header ── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 48px;
  width: auto;
}

/* ── Hero banner ── */
.hero-banner {
  background: var(--luk-red);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.06) 55%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2rem;
  text-align: left;
}

.hero-banner__label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.88;
}

.hero-banner__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-banner__sub {
  margin: 0.5rem 0 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  opacity: 0.9;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .hero-banner__inner {
    text-align: center;
  }

  .hero-banner__sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--luk-red);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
  }

  .logo__img {
    height: 40px;
  }

  .font-controls {
    display: none !important;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    z-index: 200;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.is-active {
    border-bottom: 1px solid #eee;
    border-left: 3px solid var(--luk-red);
    padding-left: calc(1rem - 3px);
    background: var(--luk-red-light);
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle span {
    transition: transform 0.2s, opacity 0.2s;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.logo__mark {
  width: 52px;
  height: 52px;
  background: var(--luk-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  font-style: italic;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--luk-red);
  letter-spacing: 0.02em;
}

.logo__badge {
  font-size: 0.65rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
}

.main-nav {
  display: none;
  font-size: 0.9375rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--luk-red);
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .main-nav a {
    padding-bottom: 0.25rem;
  }

  .main-nav a.is-active {
    font-weight: 700;
    border-bottom: 2px solid var(--luk-red);
  }
}

.font-controls {
  display: none;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 901px) {
  .font-controls {
    display: flex;
  }
}

.font-controls button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  color: inherit;
  font-family: inherit;
}

.font-controls button:hover {
  color: var(--luk-red);
}

/* ── Big Lukoil banner — removed duplicate block styles ── */
.hero-banner__logo {
  display: none;
}

/* ── Page layout ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}

.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--luk-red);
}

.page-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.main-col {
  min-width: 0;
}

/* ── Promo block ── */
.promo-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.promo-card__visual {
  background: linear-gradient(160deg, var(--luk-red) 0%, var(--luk-red-dark) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
}

.promo-card__litres {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.promo-card__litres-label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0.35rem;
  opacity: 0.95;
}

.promo-card__body {
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  text-align: left;
}

.promo-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--luk-red);
  background: var(--luk-red-light);
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.85rem;
}

.promo-card__lead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.promo-card__text {
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
}

.promo-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.promo-card__features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: #444;
  font-weight: 500;
}

.promo-card__features svg {
  width: 18px;
  height: 18px;
  color: var(--luk-red);
  flex-shrink: 0;
}

.promo-card__cta {
  display: inline-block;
  background: var(--luk-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.9rem 1.75rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.promo-card__cta-text--short {
  display: none;
}

.promo-card__cta:hover {
  background: var(--luk-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(216, 35, 42, 0.35);
}

@media (max-width: 640px) {
  .promo-card {
    grid-template-columns: 1fr;
    margin-bottom: 1.25rem;
  }

  .promo-card__visual {
    flex-direction: row;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }

  .promo-card__litres {
    font-size: 2.5rem;
  }

  .promo-card__litres-label {
    text-align: left;
    margin-top: 0;
  }

  .promo-card__body {
    padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0));
  }

  .promo-card__lead {
    font-size: 1.05rem;
  }

  .promo-card__features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .promo-card__cta {
    width: 100%;
    text-align: center;
    padding: 1rem 1.25rem;
    white-space: normal;
    line-height: 1.25;
  }

  .promo-card__cta-text--full {
    display: none;
  }

  .promo-card__cta-text--short {
    display: inline;
  }
}

.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .main-col {
    order: 1;
  }

  .page-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .benefits-row {
    grid-template-columns: 1fr;
  }

  .discounts__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-submit {
    width: 100%;
  }

  .booking__head {
    flex-direction: column;
    padding: 1rem;
  }

  .booking-form {
    padding: 1rem;
  }

  .booking-steps__item {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
}

/* ── Booking form ── */
.booking {
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--luk-red);
  padding: 0;
  margin-bottom: 2rem;
  display: none;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.booking.is-open {
  display: block;
}

.booking__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 0;
  background: linear-gradient(180deg, var(--luk-red-light) 0%, #fff 100%);
}

.booking__head-icon {
  width: 48px;
  height: 48px;
  color: var(--luk-red);
  flex-shrink: 0;
}

.booking__head-icon svg {
  width: 100%;
  height: 100%;
}

.booking__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--luk-red);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.booking__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.booking-steps {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.booking-steps__item {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  background: var(--bg-gray);
  letter-spacing: 0.03em;
}

.booking-steps__item.is-active {
  background: var(--luk-red);
  color: #fff;
}

.booking-form {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-row .req {
  color: var(--luk-red);
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--luk-red);
  box-shadow: 0 0 0 3px rgba(216, 35, 42, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
  cursor: pointer;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--luk-red);
  cursor: pointer;
}

.form-consent a {
  color: var(--luk-red);
  text-decoration: underline;
}

.form-consent a:hover {
  color: var(--luk-red-dark);
}

.form-actions {
  text-align: left;
}

.form-submit {
  background: var(--luk-red);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  transition: background 0.15s;
}

.form-submit:hover:not(:disabled) {
  background: var(--luk-red-dark);
}

.form-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.form-submit__loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.form-error {
  color: var(--luk-red);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.booking-success {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f0faf0, #fff);
  border-top: 3px solid #2e7d32;
}

.booking-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 56px;
  font-weight: 700;
}

.booking-success__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #2e7d32;
}

.booking-success__text {
  margin: 0;
  color: var(--text-muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── Promo hero strip (like screenshot) ── */
.strip-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-bottom: 2rem;
  min-height: 160px;
  background: #e8e8e8;
  overflow: hidden;
}

.strip-banner__text {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strip-banner__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.strip-banner__headline {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.02em;
}

.strip-banner__visual {
  background: var(--luk-red);
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.strip-banner__fuel {
  text-align: center;
  color: #fff;
}

.strip-banner__fuel-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.strip-banner__fuel-label {
  font-size: 0.875rem;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .strip-banner {
    grid-template-columns: 1fr;
  }

  .strip-banner__visual {
    width: 100%;
    clip-path: none;
    padding: 1.5rem;
  }
}

/* ── Benefits icons row ── */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  color: var(--luk-red);
}

.benefit-item__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item__text {
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.35;
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--luk-red);
  text-transform: uppercase;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.discounts {
  text-align: center;
  margin-bottom: 2rem;
}

.discounts__title {
  font-size: 1.125rem;
  margin: 0 0 1.25rem;
}

.discounts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.discount-item__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--luk-red);
  margin: 0.5rem 0 0;
}

.instructions {
  margin-bottom: 2rem;
}

.instructions ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.instructions li {
  margin-bottom: 0.35rem;
}

.instructions li::marker {
  color: var(--luk-red);
}

/* ── Accordion ── */
.accordion {
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--sidebar-gray);
  border: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.accordion__head:hover {
  background: #e0e0e0;
}

.accordion__toggle {
  width: 28px;
  height: 28px;
  background: var(--luk-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.accordion__body {
  display: none;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}

.accordion.is-open .accordion__body {
  display: block;
}

.accordion.is-open .accordion__toggle::before {
  content: "−";
}

.accordion:not(.is-open) .accordion__toggle::before {
  content: "+";
}

.advantage-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--luk-red);
  align-items: start;
}

.advantage-block:last-child {
  border-bottom: none;
}

.advantage-block__icon {
  color: var(--luk-red);
}

.advantage-block__icon svg {
  width: 64px;
  height: 64px;
}

.advantage-block__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--luk-red);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.advantage-block ul {
  margin: 0;
  padding-left: 1rem;
}

.advantage-block li {
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.advantage-block .highlight {
  color: var(--luk-red);
  font-weight: 700;
}

/* ── Table ── */
.levels-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  margin: 1rem 0;
}

.levels-table th,
.levels-table td {
  border-bottom: 1px solid var(--luk-red);
  padding: 0.6rem 0.5rem;
  text-align: center;
}

.levels-table th:first-child,
.levels-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.levels-table thead th {
  font-weight: 700;
  background: var(--bg-gray);
}

.levels-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.75rem 0;
}

.levels-list {
  font-size: 0.875rem;
  padding-left: 1.25rem;
}

.levels-list li::marker {
  color: var(--luk-red);
}

/* ── Sidebar ── */
.sidebar-widget {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.sidebar-widget__head {
  background: var(--sidebar-gray);
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget__body {
  padding: 1rem;
}

.sidebar-widget__body--red {
  background: var(--luk-red);
  color: #fff;
  padding: 1.25rem 1rem;
  text-align: center;
}

.btn-login {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sidebar-link {
  display: block;
  color: #fff;
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  opacity: 0.95;
}

.locator-input {
  display: flex;
  margin-bottom: 0.75rem;
}

.locator-input input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
}

.locator-input button {
  background: var(--luk-red);
  border: none;
  color: #fff;
  padding: 0 0.75rem;
  cursor: pointer;
}

.locator-map {
  height: 100px;
  background: linear-gradient(180deg, #f0f0f0, #ddd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.share-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.share-list li {
  padding: 0.4rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #eee;
}

.share-list li:last-child {
  border-bottom: none;
}

.hotline-box {
  background: var(--luk-red);
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.hotline-box__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hotline-box__phone {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.hotline-box__phone-link {
  color: inherit;
  text-decoration: none;
}

.hotline-box__phone-link:hover {
  text-decoration: underline;
}

.hotline-box__note {
  font-size: 0.75rem;
  opacity: 0.9;
  margin: 0.25rem 0 0;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-btn {
  display: block;
  padding: 0.6rem 1rem;
  background: #555;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.contact-btn:hover {
  background: #444;
  text-decoration: none;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.site-footer__privacy {
  margin: 0.5rem 0 0;
}

.site-footer__privacy a {
  color: var(--text-muted);
  text-decoration: underline;
}

.site-footer__privacy a:hover {
  color: var(--luk-red);
}

@media (min-width: 901px) {
  .hotline-box {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0;
    text-align: left;
    overflow: hidden;
  }

  .hotline-box__title {
    background: var(--sidebar-gray);
    padding: 0.65rem 1rem;
    margin: 0;
    color: var(--text);
  }

  .hotline-box__phone {
    padding: 1rem 1rem 0.25rem;
    color: var(--luk-red);
  }

  .hotline-box__phone-link {
    color: var(--luk-red);
  }

  .hotline-box__note {
    padding: 0 1rem 1rem;
    color: var(--text-muted);
    opacity: 1;
  }

  .sidebar-widget__body--red {
    background: #fff;
    color: var(--text);
    padding: 1rem;
    text-align: center;
  }

  .btn-login {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text);
  }

  .btn-login:hover {
    background: var(--sidebar-gray);
    border-color: #ccc;
  }

  .sidebar-link {
    color: var(--luk-red);
    opacity: 1;
  }

  .contact-btn {
    background: #6a6a6a;
  }

  .contact-btn:hover {
    background: #555;
  }
}

/* ── Success toast ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #2e7d32;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 100;
  max-width: 320px;
}

.toast.is-visible {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive: tablets & phones ── */
@media (max-width: 900px) {
  .page-wrap {
    padding: 1rem 1rem calc(2rem + env(safe-area-inset-bottom, 0));
  }

  .layout {
    gap: 1.5rem;
  }

  .hero-banner__inner {
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero-banner__title {
    font-size: 1.45rem;
  }

  .breadcrumbs {
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
  }

  .page-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .section-heading {
    font-size: 1.05rem;
  }

  .strip-banner__headline {
    font-size: 1.35rem;
  }

  .advantage-block {
    grid-template-columns: 56px 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .advantage-block__icon svg {
    width: 48px;
    height: 48px;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .sidebar > .hotline-box,
  .sidebar > .sidebar-widget {
    margin-bottom: 0;
  }

  .sidebar > .sidebar-widget:last-child,
  .sidebar > .hotline-box:nth-child(2) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar > .sidebar-widget,
  .sidebar > .hotline-box {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .top-bar__inner {
    padding: 0.5rem 0.75rem;
  }

  .top-bar__hotline--mobile {
    font-size: 0.875rem;
  }

  .page-wrap {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .form-row input,
  .form-row select {
    font-size: 16px;
  }

  .form-submit {
    width: 100%;
    min-height: 48px;
  }

  .form-consent input {
    width: 22px;
    height: 22px;
  }

  .booking-success {
    padding: 2rem 1rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    max-width: none;
  }
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border: 1px solid var(--border);
}

.table-scroll .levels-table {
  margin: 0;
  min-width: 560px;
}
