/* =========================================
   ROBO CAMPS 2026 — РОДИТЕЛЬСКИЙ ДИЗАЙН
   Доверие · Тепло · Энергия · Конверсия
   ========================================= */

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

:root {
  /* Основная палитра — тёплый, доверительный, современный */
  --white: #ffffff;
  --bg: #f8f7f4;
  --bg2: #f0ede8;
  --black: #1a1a2e;
  --text: #2d2d44;
  --muted: #5a5a7b;

  /* Акценты — насыщенные но не кричащие */
  --primary: #2563eb;
  /* надёжный синий */
  --primary-d: #1d4ed8;
  --accent: #f97316;
  /* тёплый оранжевый */
  --accent-d: #ea6c0a;
  --green: #16a34a;
  --teal: #0891b2;

  /* Мягкие фоны для карточек */
  --card-blue: #eff6ff;
  --card-orange: #fff7ed;
  --card-green: #f0fdf4;
  --card-teal: #f0f9ff;
  --card-pink: #fdf2f8;
  --card-purple: #faf5ff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 16px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 32px rgba(26, 26, 46, 0.12);
  --font-h: 'Unbounded', sans-serif;
  --font: 'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}

.btn-nav:hover {
  background: var(--primary-d) !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  background: var(--white);
}

.nav-mobile a {
  padding: 13px 0;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  font-size: 1rem;
}

.nav-mobile .btn-nav {
  margin-top: 14px;
  text-align: center;
  border-radius: 50px !important;
  padding: 13px 24px !important;
}

.nav-mobile.open {
  display: flex;
}

@media(max-width:780px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: 68px;
  background: var(--white);
  overflow: hidden;
}

.hero-stripe-1 {
  height: 5px;
  background: var(--primary);
}

.hero-stripe-2 {
  height: 3px;
  background: var(--accent);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--black);
}

.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.hero-title-brand {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 2px 14px;
  border-radius: 8px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 800;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: var(--font);
}

.btn-primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--text);
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(26, 26, 46, 0.15);
  transition: border-color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(26, 26, 46, 0.12);
}

/* Hero image */
.hero-right {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-md);
}

.hero-badge-price {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  border: 4px solid var(--white);
}

.hbp-num {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.hbp-cur {
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.85;
}

.hbp-note {
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.7;
}

.hero-badge-discount {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 3px 14px rgba(22, 163, 74, 0.35);
  border: 3px solid var(--white);
  white-space: nowrap;
}

@media(max-width:880px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding-top: 56px;
  }

  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    letter-spacing: -1px;
  }
}

/* Stats bar */
.hero-stats-bar {
  background: var(--black);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.hsb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  gap: 4px;
}

.hsb-num {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hsb-txt {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.hsb-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

@media(max-width:640px) {
  .hsb-sep {
    display: none;
  }

  .hsb-item {
    padding: 16px 20px;
  }
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section {
  padding: 88px 0;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: var(--black);
}

.section-title em {
  font-style: normal;
  color: var(--primary);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
}

.section-sub a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  background: var(--bg);
}

.about-header {
  text-align: center;
  margin-bottom: 52px;
}

.about-header .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 26, 46, 0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.fc-blue {
  border-top: 3px solid var(--primary);
}

.fc-orange {
  border-top: 3px solid var(--accent);
}

.fc-green {
  border-top: 3px solid var(--green);
}

.fc-teal {
  border-top: 3px solid var(--teal);
}

.fc-pink {
  border-top: 3px solid #db2777;
}

.fc-purple {
  border-top: 3px solid #7c3aed;
}

.fc-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--black);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =========================================
   SCHEDULE
   ========================================= */
.schedule-section {
  background: var(--white);
}

.schedule-section .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.schedule-section .section-sub {
  margin: 0 auto;
}

.month-group {
  margin-bottom: 52px;
}

.month-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.tag-june {
  background: #fef9c3;
  color: #854d0e;
  border: 1.5px solid #fde047;
}

.tag-july {
  background: #fff7ed;
  color: #9a3412;
  border: 1.5px solid #fdba74;
}

.tag-august {
  background: #eff6ff;
  color: #1e40af;
  border: 1.5px solid #93c5fd;
}

.shifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 16px;
}

.shift-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 26, 46, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.shift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.sc-blue {
  border-left: 4px solid var(--primary);
}

.sc-orange {
  border-left: 4px solid var(--accent);
}

.sc-green {
  border-left: 4px solid var(--green);
}

.sc-teal {
  border-left: 4px solid var(--teal);
}

.sc-pink {
  border-left: 4px solid #db2777;
}

.sc-purple {
  border-left: 4px solid #7c3aed;
}

.sc-number {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(26, 26, 46, 0.07);
  line-height: 1;
}

.sc-dates {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sc-title {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--black);
}

.sc-desc {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  line-height: 1.6;
}

.sc-btn {
  display: inline-block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  margin-top: 4px;
  align-self: flex-start;
}

.sc-btn:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
}

/* =========================================
   INCLUDED
   ========================================= */
.included-section {
  background: var(--bg);
}

.included-section .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.included-section .section-sub {
  margin: 0 auto;
}

/* Two-column layout */
.inc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

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

/* Price hero card */
.inc-price-card {
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.25);
  position: sticky;
  top: 88px;
}

.ipc-top {
  padding: 32px 28px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ipc-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.ipc-price {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.ipc-price span {
  font-size: 1.1rem;
  opacity: 0.75;
}

.ipc-discount {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}

.ipc-discount strong {
  color: var(--accent);
}

.ipc-list {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ipc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.ipc-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #86efac;
}

.ipc-btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  margin: 0 28px 28px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.ipc-btn:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

/* Detail cards grid */
.inc-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-content: start;
}

.inc-detail-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 26, 46, 0.07);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.inc-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

.idc-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.idc-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.idc-title {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 3px;
}

.idc-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.idc-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   REGISTER / CTA
   ========================================= */
.register-section {
  background: var(--white);
}

.reg-top {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reg-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reg-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.reg-text {
  flex: 1;
  min-width: 280px;
}

.reg-eyebrow {
  display: inline-block;
  background: rgba(249, 115, 22, 0.25);
  color: #fed7aa;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  margin-bottom: 16px;
}

.reg-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.reg-pct {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.reg-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 360px;
  margin-bottom: 22px;
  line-height: 1.75;
}

.reg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.reg-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.reg-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  min-width: 280px;
}

.reg-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.rc-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.rc-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
}

.rc-val {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 900;
}

/* MAP */
.map-wrapper {
  position: relative;
  line-height: 0;
  border-top: 4px solid var(--primary);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 440px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media(max-width:640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MODAL
   ========================================= */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.8rem; line-height: 1;
  color: var(--muted); cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black); }

.modal-header { text-align: center; margin-bottom: 24px; }
.modal-header h3 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 900; color: var(--black); margin-bottom: 8px; letter-spacing: -0.5px; }
.modal-header p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.modal-form .form-group { margin-bottom: 16px; }
.modal-form label { display: block; font-size: 0.82rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.modal-form input, .modal-form select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(26,26,46,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg);
}
.modal-form input:focus, .modal-form select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}