/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --blue: #1E8BF0;
  --blue-dark: #1570C8;
  --blue-light: #E8F4FF;
  --dark: #0F1923;
  --dark2: #1A2533;
  --text: #1A2533;
  --text-muted: #6B7A8D;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(30,139,240,0.10);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --radius: 16px;
  --radius-sm: 10px;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { width:70px;height:65px;margin-bottom: 10px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__main {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 1px;
}
.logo__sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav__link:hover { color: var(--blue); background: var(--blue-light); }
.header__cta { margin-left: 8px; flex-shrink: 0; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav__link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.mobile-nav__link:hover { background: var(--blue-light); color: var(--blue); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(30,139,240,0.3);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,139,240,0.35);
}
.btn--white {
  background: white;
  color: var(--blue);
  border: 2px solid rgba(255,255,255,0.4);
  font-size: 16px;
  padding: 14px 32px;
}
.btn--white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn--full { width: 100%; }
.btn--big { font-size: 17px; padding: 16px 40px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,40,0.82) 0%,
    rgba(10,20,40,0.65) 55%,
    rgba(10,20,40,0.35) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 72px);
}
.hero__badge {
  display: inline-block;
  background: rgba(30,139,240,0.2);
  border: 1px solid rgba(30,139,240,0.5);
  color: #5BB8FF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero__title-blue { color: var(--blue); }
.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.check {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

/* FORM CARD */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-card--wide { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.form-card--wide .form-input { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: white; }
.form-card--wide .form-input::placeholder { color: rgba(255,255,255,0.6); }
.form-card--wide .form-input option { color: var(--text); background: white; }
.form-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.form-group { margin-bottom: 12px; }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,139,240,0.12); }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-success {
  text-align: center;
  padding: 24px;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  background: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 16px;
}
.form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--blue);
  padding: 24px 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-item__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
}
.stat-item__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--blue { background: var(--blue); }
.section--gray { background: var(--gray-bg); }

.section-head { margin-bottom: 48px; }
.section-head--white .section-title,
.section-head--white .section-sub { color: white; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-tag--white { color: rgba(255,255,255,0.8); }
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}
.section-sub {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card--accent {
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 100%);
  border-color: rgba(30,139,240,0.25);
}
.service-card__icon { font-size: 36px; margin-bottom: 14px; }
.service-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.service-card__divider {
  width: 32px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 12px;
  border-radius: 2px;
}
.service-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.why-card--active {
  background: white;
  border-color: white;
}
.why-card--active .why-card__title { color: var(--blue); }
.why-card--active .why-card__desc { color: var(--text-muted); }
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.why-card--active:hover { background: white; }
.why-card__icon { font-size: 48px; margin-bottom: 16px; }
.why-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.why-card__desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 40px 28px;
  background: white;
  border-right: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--blue-light); }
.step__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.step__arrow {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.step__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 10px;
}
.step__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item--open .faq-icon { transform: rotate(90deg); color: var(--blue); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== ORDER SECTION ===== */
.order-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.order-divider {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-card--wide { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__nav { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: block;
  margin-bottom: 4px;
}
.footer__link:hover { color: var(--blue); }
.footer__socials { display: flex; gap: 10px; }
.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  background: var(--dark);
  padding: 140px 0 60px;
  text-align: center;
}
.gallery-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.gallery-hero p { font-size: 16px; color: rgba(255,255,255,0.6); }
.gallery-hero span { color: var(--blue); }

.gallery-section { padding: 60px 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* BEFORE/AFTER CARD */
.ba-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.ba-card__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card__img--after { z-index: 1; }
.ba-card__img--before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-card__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.ba-card__handle::before {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
  padding: 2px;
}
.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  z-index: 11;
}
.ba-label--before { left: 12px; background: rgba(0,0,0,0.65); color: white; }
.ba-label--after { right: 12px; background: var(--blue); color: white; }
.ba-card__info { padding: 16px 18px; }
.ba-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.ba-card__type { font-size: 13px; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FLOAT CTA (mobile) ===== */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(30,139,240,0.4);
  white-space: nowrap;
  animation: floatBounce 3s ease-in-out infinite;
}
@keyframes floatBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__form-wrap { max-width: 480px; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .float-cta { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero__form-wrap{margin-right: 20px;}
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 24px; }
  .hero__title { font-size: 26px; }
  .section { padding: 56px 0; }
}

/* ===== PROMO SECTION ===== */
.promo-section { background: var(--white); }
.section-title__blue { color: var(--blue); }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.promo-card { background: var(--white); border: 2px solid var(--border); border-radius: 20px; padding: 36px 28px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s; position: relative; }
.promo-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,139,240,0.12); }
.promo-card--featured { background: linear-gradient(145deg, var(--blue) 0%, #1260c8 100%); border-color: transparent; transform: scale(1.04); box-shadow: 0 20px 50px rgba(30,139,240,0.3); }
.promo-card--featured:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 28px 60px rgba(30,139,240,0.4); border-color: transparent; }
.promo-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #F59E0B; color: white; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.promo-card__rooms { font-family: 'Unbounded', sans-serif; font-size: 72px; font-weight: 900; line-height: 1; color: var(--blue); margin-bottom: 4px; }
.promo-card--featured .promo-card__rooms { color: rgba(255,255,255,0.9); }
.promo-card__label { font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.promo-card--featured .promo-card__label { color: rgba(255,255,255,0.7); }
.promo-card__divider { width: 40px; height: 3px; background: var(--blue); border-radius: 2px; margin-bottom: 20px; }
.promo-card--featured .promo-card__divider { background: rgba(255,255,255,0.5); }
.promo-card__price { font-family: 'Unbounded', sans-serif; font-size: 30px; font-weight: 900; color: var(--text); margin-bottom: 24px; }
.promo-card--featured .promo-card__price { color: white; }
.promo-card__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; width: 100%; }
.promo-card__list li { font-size: 13px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.promo-card__list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.promo-card--featured .promo-card__list li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.15); }
.promo-card--featured .promo-card__list li::before { color: rgba(255,255,255,0.9); }
.promo-card__btn { display: inline-block; width: 100%; padding: 13px 24px; background: var(--blue); color: white; border-radius: 10px; font-size: 13px; font-weight: 700; text-align: center; transition: all 0.3s; margin-top: auto; }
.promo-card__btn:hover { background: #1260c8; transform: translateY(-1px); }
.promo-card__btn--white { background: white; color: var(--blue); }
.promo-card__btn--white:hover { background: rgba(255,255,255,0.9); }
.promo-note { text-align: center; font-size: 13px; color: var(--text-muted); font-style: italic; }
@media (max-width: 768px) { .promo-grid { grid-template-columns: 1fr; } .promo-card--featured { transform: scale(1); } .promo-card--featured:hover { transform: translateY(-6px); } }

/* ===== CHECKBOX ===== */
.form-checkbox { margin-bottom: 4px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--blue);
  border-color: var(--blue);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.checkbox-label input:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(30,139,240,0.15);
}
.checkbox-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-text a {
  color: var(--blue);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.checkbox-text a:hover { opacity: 0.75; }

/* Для белой формы в секции order */
.section--blue .checkbox-custom { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.section--blue .checkbox-label input:checked + .checkbox-custom { background: white; border-color: white; }
.section--blue .checkbox-label input:checked + .checkbox-custom::after { border-color: var(--blue); }
.section--blue .checkbox-text { color: rgba(255,255,255,0.75); }
.section--blue .checkbox-text a { color: white; }
