/* ============================================================
   Эвакуатор-НН — Premium Tow Truck Landing
   Dark, amber-accented, conversion-focused design
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0A1128;
  color: #F1F5F9;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
svg { display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  /* Dark backgrounds — navy blue */
  --bg-darkest: #0A1128;
  --bg-dark: #0F1B33;
  --bg-dark-elevated: #16223F;
  --bg-dark-hover: #1E2D4D;
  /* Light backgrounds */
  --bg-light: #FFFFFF;
  --bg-light-muted: #F8FAFC;
  --bg-light-elevated: #F1F5F9;
  /* Amber / Gold — premium accent */
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FBBF24;
  --amber-glow: rgba(245, 158, 11, 0.15);
  /* Red — emergency CTA */
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-light: #EF4444;
  /* Telegram blue */
  --telegram: #229ED9;
  /* Green */
  --green: #22C55E;
  /* Text on dark */
  --td: #F1F5F9;
  --td-muted: #94A3B8;
  --td-subtle: #64748B;
  /* Text on light */
  --tl: #0F172A;
  --tl-muted: #475569;
  --tl-subtle: #94A3B8;
  /* Borders */
  --bd-dark: rgba(255, 255, 255, 0.08);
  --bd-dark-hover: rgba(255, 255, 255, 0.15);
  --bd-light: #E2E8F0;
  /* Gradients */
  --grad-amber: linear-gradient(135deg, #F59E0B, #D97706);
  --grad-hero: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,158,11,0.12), transparent 60%), linear-gradient(to bottom, #0A1128 0%, #0F1B33 100%);
  --grad-contact: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(220,38,38,0.15), transparent 60%), linear-gradient(to bottom, #0F1B33, #0A1128);
}

/* ===== PAGE WRAPPER ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-darkest);
  overflow-x: hidden;
}

/* ===== REVEAL ANIMATION ===== */
.opacity-0 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* ===== CONTAINERS ===== */
.container-lg { max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.container-md { max-width: 64rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.container-sm { max-width: 56rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.container-xs { max-width: 48rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) {
  .container-lg, .container-md, .container-sm, .container-xs {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bd-dark);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo-img {
  height: 2.5rem;
  width: auto;
  border-radius: 0.375rem;
  object-fit: cover;
}
.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--grad-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(245,158,11,0.3);
}
.nav-logo-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #0A1128;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-amber { color: var(--amber); }
.brand-light { color: var(--td); }

/* Nav menu */
.nav-menu {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--td-muted);
}
.nav-menu a {
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--amber); }

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 4rem;
    left: 0; right: 0;
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--bd-dark);
    z-index: 30;
    font-size: 1.05rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.menu-open {
    max-height: 400px;
    opacity: 1;
    padding: 0.75rem 1.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav-menu a:last-child { border-bottom: none; }
}
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
@media (min-width: 640px) {
  .nav-actions { gap: 0.75rem; }
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-phone svg { width: 1.125rem; height: 1.125rem; }
@media (min-width: 768px) {
  .nav-phone { display: flex; }
}

/* Nav CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  height: 2.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px -2px rgba(220,38,38,0.4);
}
@media (min-width: 640px) {
  .nav-cta-btn { padding: 0.5rem 1.25rem; }
}
.nav-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-cta-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.nav-cta-btn .label-mobile { display: inline; }
.nav-cta-btn .label-desktop { display: none; }

/* Smaller CTA button on mobile */
@media (max-width: 639px) {
  .nav-cta-btn {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
    height: 2rem;
    gap: 0.3rem;
  }
  .nav-cta-btn svg { width: 0.85rem; height: 0.85rem; }
}
@media (min-width: 640px) {
  .nav-cta-btn .label-mobile { display: none; }
  .nav-cta-btn .label-desktop { display: inline; }
}

/* Burger */
.nav-burger {
  display: block;
  color: var(--td);
}
@media (min-width: 768px) {
  .nav-burger { display: none; }
}
.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.burger-line {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--td);
  transition: all 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 40rem;
  background: radial-gradient(ellipse, rgba(245,158,11,0.12), transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title .accent {
  background: var(--grad-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--td-muted);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.375rem; } }
.hero-subtitle strong { color: var(--amber-light); font-weight: 700; }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 9999px;
  padding: 1.125rem 2rem;
  box-shadow: 0 20px 40px -8px rgba(220,38,38,0.5);
  transition: all 0.2s ease;
  position: relative;
}
.hero-cta-phone:hover {
  background: var(--red-dark);
  transform: scale(1.03);
}
.hero-cta-phone::before {
  content: "";
  border-radius: inherit;
  background: inherit;
  z-index: -1;
  animation: 2s ease-out infinite pulse-ring;
  position: absolute;
  inset: 0;
}
@media (min-width: 640px) {
  .hero-cta-phone {
    font-size: 1.625rem;
    padding: 1.25rem 3rem;
  }
}
@keyframes pulse-ring {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

.hero-cta-messengers {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid var(--bd-dark);
}
.hero-msg-telegram {
  display: none;
}
.hero-msg-max {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--amber-light);
}
.hero-msg-max:hover { background: rgba(245, 158, 11, 0.15); }

.hero-cta-caption {
  color: var(--td-subtle);
  font-size: 0.85rem;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.stat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bd-dark);
  border-radius: 0.875rem;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: border-color 0.2s ease;
}
.stat-card:hover { border-color: rgba(245,158,11,0.3); }
.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .stat-number { font-size: 2rem; } }
.stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-dark);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--td-subtle);
  margin-top: 0.25rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-dark);
  padding: 1.5rem 0;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(245,158,11,0.3) 50%, transparent 95%);
  box-shadow: 0 0 20px 3px rgba(245,158,11,0.08);
  pointer-events: none;
}
.trust-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.5), transparent);
  box-shadow: 0 0 12px 2px rgba(245,158,11,0.15);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
@media (min-width: 768px) {
  .trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--td-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ============================================================
   YANDEX RATING BADGE
   ============================================================ */
.yandex-badge {
  padding: 1.25rem 0 0;
  display: flex;
  justify-content: center;
}
.yandex-badge-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,204,0,0.15);
  border-radius: 0.875rem;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 48rem;
}
.yandex-logo {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.yandex-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.yandex-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.yandex-top-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.yandex-stars {
  display: flex;
  gap: 0.125rem;
}
.yandex-rating {
  color: #FFCC00;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}
.yandex-reviews {
  color: var(--td-muted);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.yandex-text {
  font-size: 0.78rem;
  color: var(--td-subtle);
  font-weight: 500;
}
.yandex-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}
.yandex-cta svg {
  color: var(--amber);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .yandex-cta { display: flex; }
}
@media (min-width: 768px) {
  .yandex-badge-inner {
    max-width: 48rem;
  }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-dark {
  background: var(--bg-darkest);
}
.section-dark-alt {
  background: #0E1B38;
  box-shadow: inset 0 1px 0 rgba(245,158,11,0.12), 0 -1px 0 rgba(245,158,11,0.06), inset 0 40px 60px -20px rgba(0,0,0,0.4);
}
.section-dark-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(245,158,11,0.3) 50%, transparent 95%);
  box-shadow: 0 0 20px 3px rgba(245,158,11,0.08);
}
.section-dark + .section-dark {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.section-dark + .section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}
.section-dark-alt {
  overflow: hidden;
}
.section-dark-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(245,158,11,0.25) 50%, transparent 95%);
  box-shadow: 0 0 15px 2px rgba(245,158,11,0.06);
  pointer-events: none;
}
@media (min-width: 640px) {
  .section { padding-top: 5rem; padding-bottom: 5rem; }
}
.section-dark {
  background: linear-gradient(to bottom, #0A1128 0%, #0D1A2E 40%, #0A1128 100%);
  position: relative;
}

.section-dark-alt {
  background: linear-gradient(to bottom, #11203E 0%, #0E1B38 40%, #11203E 100%);
  position: relative;
}


.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label-amber {
  display: inline-block;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-title-light {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.section-title-dark {
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .section-title-light, .section-title-dark { font-size: 2.25rem; }
}
.section-subtitle-dark {
  color: var(--td-muted);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}
.section-subtitle-light {
  color: var(--td-muted);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

/* ============================================================
   SERVICES (Dark cards)
   ============================================================ */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card-dark {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--bd-dark);
  border-radius: 1rem;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.service-card-dark:hover {
  border-color: rgba(245,158,11,0.3);
  background: var(--bg-dark-hover);
  transform: translateY(-2px);
}
.service-card-photo {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}
.service-card-photo img,
.service-card-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card-dark:hover .service-card-photo img,
.service-card-dark:hover .service-card-photo picture img {
  transform: scale(1.06);
}
.service-card-body {
  flex: 1;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-title-light {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-text-light {
  font-size: 0.85rem;
  color: var(--td-muted);
  line-height: 1.6;
  flex: 1;
}

/* Mobile: stack photo on top, text below */
@media (max-width: 480px) {
  .service-card-dark {
    flex-direction: column;
  }
  .service-card-photo {
    flex: 0 0 auto;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .service-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }
  .service-title-light {
    font-size: 1.15rem;
  }
  .service-text-light {
    font-size: 0.9rem;
  }
}

/* ============================================================
   SITUATIONS (Light cards)
   ============================================================ */
.situations-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .situations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .situations-grid { grid-template-columns: repeat(3, 1fr); } }

.sit-card {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--bd-dark);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.25s ease;
  height: 100%;
}
.sit-card:hover {
  border-color: rgba(245,158,11,0.3);
  background: var(--bg-dark-hover);
  transform: translateY(-2px);
}
.sit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: rgba(245,158,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.sit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.sit-card p {
  font-size: 0.9rem;
  color: var(--td-muted);
  line-height: 1.7;
}

.situations-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Red CTA button */
.btn-call-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  padding: 1.125rem 2rem;
  box-shadow: 0 10px 20px -4px rgba(220,38,38,0.3);
  transition: all 0.2s ease;
}
.btn-call-red:hover { background: var(--red-dark); transform: scale(1.03); }
.btn-call-red svg { width: 1.25rem; height: 1.25rem; }

/* Full-width red */
.btn-call-red-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  padding: 1.125rem 1.5rem;
  box-shadow: 0 10px 20px -4px rgba(220,38,38,0.3);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 28rem;
}
.btn-call-red-full:hover { background: var(--red-dark); }
.btn-call-red-full svg { width: 1.25rem; height: 1.25rem; }

/* Dark CTA button */
.btn-call-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  padding: 1.125rem 2rem;
  box-shadow: 0 10px 20px -4px rgba(220,38,38,0.3);
  transition: all 0.2s ease;
}
.btn-call-dark:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-call-dark svg { width: 1.25rem; height: 1.25rem; }

/* Amber full-width */
.btn-amber-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad-amber);
  color: #0A1128;
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 9999px;
  padding: 1.125rem 1.5rem;
  box-shadow: 0 10px 24px -4px rgba(245,158,11,0.4);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 32rem;
}
.btn-amber-full:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -4px rgba(245,158,11,0.5); }
.btn-amber-full svg { width: 1.25rem; height: 1.25rem; }
.btn-amber-full .label-mobile { display: inline; }
.btn-amber-full .label-desktop { display: none; }
@media (min-width: 640px) {
  .btn-amber-full .label-mobile { display: none; }
  .btn-amber-full .label-desktop { display: inline; }
}

/* Messenger buttons */
.how-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.how-cta-messengers {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid;
}
.msg-telegram { display: none; }
.msg-max {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--amber-dark);
}
.msg-max:hover { background: rgba(245, 158, 11, 0.12); }

/* ============================================================
   HOW / STEPS
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .step { gap: 1.5rem; } }
.step-number-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--grad-amber);
  color: #0A1128;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px -2px rgba(245,158,11,0.3);
}
.step-line {
  width: 0.125rem;
  height: 2rem;
  background: rgba(245,158,11,0.2);
  margin-top: 0.5rem;
}
.step-content {
  background: var(--bg-dark-elevated);
  border-radius: 0.875rem;
  padding: 1.25rem;
  border: 1px solid var(--bd-dark);
  flex: 1;
}
.step-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.step-text {
  font-size: 0.9rem;
  color: var(--td-muted);
  line-height: 1.6;
}

/* ============================================================
   PHOTOS (Dark section with placeholders)
   ============================================================ */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .photos-grid { gap: 1rem; } }
@media (min-width: 1024px) { .photos-grid { grid-template-columns: repeat(3, 1fr); } }

/* Hide secondary photos on mobile (<= 1023px) — keep top 6 */
@media (max-width: 1023px) {
  .photo-desktop-only { display: none !important; }
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-dark-elevated), var(--bg-dark));
  border: 2px dashed rgba(245,158,11,0.25);
  border-radius: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--td-subtle);
  transition: border-color 0.2s ease;
}
.photo-placeholder:hover { border-color: rgba(245,158,11,0.5); }
.photo-placeholder svg { opacity: 0.5; }
.photo-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

/* Real photo cards */
.photo-card {
  aspect-ratio: 4/3;
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(245,158,11,0.15);
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.photo-card:hover {
  border-color: rgba(245,158,11,0.5);
  transform: scale(1.02);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-card:hover img {
  transform: scale(1.06);
}
.photo-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.9) 0%, rgba(10,14,20,0.6) 60%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.75rem 1rem 0.75rem;
  text-align: center;
  pointer-events: none;
}

/* ============================================================
   PRICES (Light section)
   ============================================================ */
.prices-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .prices-grid { grid-template-columns: repeat(2, 1fr); } }

.price-card-amber {
  background: var(--bg-dark-elevated);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--bd-dark);
  transition: all 0.25s ease;
  position: relative;
}
.price-card-amber:hover {
  border-color: rgba(245,158,11,0.3);
  background: var(--bg-dark-hover);
  transform: translateY(-2px);
}
.price-card-amber.featured {
  border: 2px solid rgba(245,158,11,0.5);
  box-shadow: 0 8px 24px -8px rgba(245,158,11,0.1);
}
.price-badge-amber {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-amber);
  color: #0A1128;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.price-title-dark {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.price-card-amber.featured .price-title-dark { margin-top: 0.5rem; }
.price-subtitle-muted {
  font-size: 0.875rem;
  color: var(--td-subtle);
  margin-bottom: 1rem;
}
.price-amount-amber {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.price-features-dark {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.price-feature-dark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.price-feature-dark svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--green);
  flex-shrink: 0;
}
.price-feature-dark span { color: var(--td-muted); }

/* Price note bar */
.price-note-amber {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.price-note-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.price-note-label {
  font-size: 0.8rem;
  color: var(--td-subtle);
  font-weight: 600;
}
.price-note-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--amber-dark);
}
.price-note-divider {
  width: 1px;
  height: 2rem;
  background: var(--bd-dark);
}
@media (max-width: 639px) {
  .price-note-amber { flex-direction: column; }
  .price-note-divider { display: none; }
}

.prices-cta {
  text-align: center;
  margin-top: 2rem;
}
.prices-disclaimer {
  font-size: 0.8rem;
  color: var(--td-subtle);
  margin-top: 0.75rem;
}

/* ============================================================
   WHY US (Premium dark rounded section)
   ============================================================ */
.why-us {
  padding: 4rem 0.5rem;
  background: #0E1B38;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.4), transparent);
  box-shadow: 0 0 25px 4px rgba(245,158,11,0.1);
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.25), transparent);
  box-shadow: 0 0 20px 2px rgba(245,158,11,0.06);
}
@media (min-width: 640px) {
  .why-us { padding: 5rem 1rem; }
}
.why-us-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(ellipse 50% 35% at 50% 0%, rgba(245,158,11,0.05), transparent 70%);
}
.why-us-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.why-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bd-dark);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,158,11,0.2);
}
.why-icon {
  color: var(--amber);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--td-muted);
  line-height: 1.7;
}
.why-cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--bd-dark);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}
.review-card:hover { border-color: rgba(245,158,11,0.25); }
.review-stars {
  color: var(--amber);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--td);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: var(--grad-amber);
  color: #0A1128;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.review-meta {
  font-size: 0.8rem;
  color: var(--td-subtle);
}
.reviews-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--td-subtle);
  font-size: 0.9rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-dark-elevated);
  border-radius: 0.875rem;
  border: 1px solid var(--bd-dark);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(245,158,11,0.2); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.975rem;
}
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.25rem;
  color: var(--td-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0.25rem 1.25rem 1.25rem;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  position: relative;
  background: #102040;
  padding: 4rem 1rem;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.4), transparent);
  box-shadow: 0 0 25px 4px rgba(245,158,11,0.1);
}
@media (min-width: 640px) { .contact-section { padding: 5rem 1.5rem; } }
.contact-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: radial-gradient(ellipse 50% 30% at 50% 100%, rgba(220,38,38,0.08), transparent 70%);
}
.contact-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.contact-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}
.contact-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  background: var(--grad-amber);
  color: #0A1128;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px -4px rgba(245,158,11,0.35);
  transition: all 0.2s ease;
}
.contact-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(245,158,11,0.45);
}
@media (max-width: 480px) {
  .contact-cta-phone {
    font-size: 1.375rem;
    padding: 1rem 1.5rem;
  }
}
.contact-cta-phone svg { flex-shrink: 0; }
.contact-cta-note {
  color: var(--td-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-cta-messengers {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  justify-content: center;
}
.msg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.875rem 0.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid var(--bd-dark);
}
.msg-btn:hover { transform: translateY(-1px); }
.msg-telegram { display: none; }
.msg-max {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--amber-light);
}
.msg-max:hover { background: rgba(245, 158, 11, 0.12); }
.contact-alt-msg:hover { border-color: var(--bd-dark-hover); color: var(--td); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid rgba(245,158,11,0.15);
  box-shadow: inset 0 20px 40px -20px rgba(245,158,11,0.05);
  color: var(--td-subtle);
  padding: 2.5rem 0 2rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-row { flex-direction: row; } }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-img {
  height: 2rem;
  width: auto;
  border-radius: 0.375rem;
  object-fit: cover;
}
.footer-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--grad-amber);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 1.125rem; height: 1.125rem; color: #0A1128; }
.footer-logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
}
.footer-info {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 640px) { .footer-info { text-align: right; } }
.footer-copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--td-subtle);
  border-top: 1px solid var(--bd-dark);
  padding-top: 1.5rem;
}

/* ============================================================
   FLOATING SIDEBAR WIDGET (Desktop — left side)
   ============================================================ */
.floating-sidebar {
  display: none;
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  background: rgba(18, 24, 33, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bd-dark);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
@media (min-width: 1024px) {
  .floating-sidebar { display: flex; }
}
.fs-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.fs-btn:hover {
  background: rgba(245,158,11,0.1);
  transform: scale(1.08);
}
/* Hide Telegram globally */
a[href*="t.me"] { display: none !important; }
.fs-btn-max:hover { background: rgba(245,158,11,0.08); }
.fs-divider {
  width: 1.5rem;
  height: 1px;
  background: var(--bd-dark);
}

/* ============================================================
   FLOATING MOBILE WIDGET
   ============================================================ */
.floating-mobile {
  display: flex;
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .floating-mobile { display: none; }
}
.fm-trigger {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--amber);
  color: #0A1128;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(245,158,11,0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.fm-trigger:hover { transform: scale(1.08); }
.fm-trigger svg { width: 1.375rem; height: 1.375rem; position: relative; z-index: 2; }
.fm-pulse, .fm-pulse-delayed {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.fm-pulse {
  background: rgba(245, 158, 11, 0.3);
  animation: fm-pulse-anim 2s ease-out infinite;
}
.fm-pulse-delayed {
  background: rgba(245, 158, 11, 0.2);
  animation: fm-pulse-anim 2s ease-out infinite 0.6s;
}
@keyframes fm-pulse-anim {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.fm-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.375rem;
  background: rgba(18, 24, 33, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bd-dark);
  border-radius: 0.875rem;
  padding: 0.375rem;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
  min-width: 8rem;
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fm-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fm-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--td);
  transition: background 0.15s ease;
}
.fm-menu-btn:hover {
  background: rgba(245,158,11,0.08);
  color: var(--amber);
}
.fm-menu-btn svg { width: 1.125rem; height: 1.125rem; color: var(--amber); flex-shrink: 0; }

/* ============================================================
   SCROLL TOP BUTTON
   ============================================================ */
#scrollTop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--bd-dark);
  color: var(--amber);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  transform: translateY(10px);
}
#scrollTop:hover { background: var(--bg-dark-hover); }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 20px -4px rgba(0,0,0,0.2);
  animation: toast-in 0.3s ease-out;
  max-width: 20rem;
}
.toast.success { background: var(--green); color: #fff; }
.toast.error { background: var(--red); color: #fff; }
.toast.removing { animation: toast-out 0.25s ease-in forwards; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(-0.5rem) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-0.5rem) scale(0.95); }
}

/* ============================================================
   MAIN
   ============================================================ */
main { flex: 1; }

/* ============================================================
   REVIEW MODAL
   ============================================================ */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.review-modal-overlay.active {
  display: flex;
}
.review-modal {
  background: #0E1B38;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.6);
}
.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td-subtle);
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.review-modal-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.review-modal-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.review-modal-logo {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.review-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.review-modal-subtitle {
  font-size: 0.85rem;
  color: var(--td-muted);
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-form-stars {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  padding: 0.5rem 0;
}
.review-star {
  cursor: pointer;
  transition: transform 0.15s;
}
.review-star:hover {
  transform: scale(1.15);
}
.review-form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bd-dark);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.review-form-input:focus {
  border-color: rgba(245,158,11,0.4);
}
.review-form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bd-dark);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}
.review-form-textarea:focus {
  border-color: rgba(245,158,11,0.4);
}
.review-form-submit {
  background: var(--grad-amber);
  color: #0A1128;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px -2px rgba(245,158,11,0.3);
}
.review-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -2px rgba(245,158,11,0.4);
}
.review-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem 0;
}
.review-success-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.review-success-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.review-success-text {
  color: var(--td-muted);
  font-size: 0.9rem;
}
.review-success-btn {
  margin-top: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
  padding: 0.625rem 2rem;
  border-radius: 0.625rem;
  transition: background 0.2s;
}
.review-success-btn:hover {
  background: rgba(255,255,255,0.14);
}
