/* ============================================================
   Glambot – styles.css
   Design: Clean B2B based on SketchSelfie/Interatouch style
   Palette: Dark Navy + Pink/Magenta accent
   ============================================================ */

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

:root {
  --navy:    #1a2332;
  --navy-80: #1a2332cc;
  --brand:   #e84b9a;
  --brand-dark: #c73a80;
  --brand-20: rgba(232,75,154,.15);
  --brand-light: #f9d2e8;
  --seafoam: #f9a8d4;
  --cream:   #fdf2f8;
  --white:   #ffffff;
  --surface: #f8f9fb;
  --border:  #e4e7eb;
  --text:    #1a2332;
  --text-2:  #5a6a80;
  --text-3:  #8896a8;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(26,35,50,.08), 0 1px 2px rgba(26,35,50,.05);
  --shadow-md: 0 4px 16px rgba(26,35,50,.10), 0 2px 6px rgba(26,35,50,.06);
  --shadow-lg: 0 16px 48px rgba(26,35,50,.14), 0 4px 12px rgba(26,35,50,.07);

  --transition: 240ms cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, select { cursor: pointer; font-family: inherit; }
details, summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { line-height: 1.7; }

em { font-style: normal; color: var(--brand); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--md  { padding: 14px 28px; font-size: 1rem; }
.btn--lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,75,154,.35); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--ghost-hero {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-hero:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--brand-light); border-color: var(--brand-light); transform: translateY(-1px); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 14px;
}
.badge--outline {
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--navy);
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--brand); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
}
.nav__icon:hover { color: var(--brand); background: var(--brand-20); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a2332 100%);
  color: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__title {
  color: var(--white);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__partner {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.partner-link { color: var(--brand); font-weight: 600; }
.partner-link:hover { text-decoration: underline; }

.hero__visual { position: relative; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__demo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: #fff;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}
.hero__demo-badge:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,75,154,.4);
}
.hero__demo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
}
.hero__demo-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 2px;
}

/* ── VIDEO POPUP ─────────────────────────────────────────── */
.video-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.88);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
  cursor: pointer;
}
.video-popup.active { opacity: 1; visibility: visible; }
.video-popup__inner {
  position: relative;
  max-width: 400px;
  width: auto;
  height: 85vh;
  max-height: 85vh;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  cursor: default;
}
.video-popup__inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-popup__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px; height: 40px;
  border: none; background: none;
  color: #fff; font-size: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: .7; transition: opacity .15s;
}
.video-popup__close:hover { opacity: 1; }

.hero__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 420px;
  color: rgba(255,255,255,.3);
}
.hero__placeholder svg {
  width: 80px;
  height: 80px;
}
.hero__placeholder span {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 40px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border-right: none; }

.stat__number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--light { background: var(--surface); }
.section--dark  { background: var(--navy); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header--light .section__title,
.section__header--light .section__desc {
  color: var(--white);
}

.section__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.section__tag--light { color: var(--seafoam); }

.section__title {
  color: var(--navy);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  margin-inline: auto;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step__num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step__img-wrap {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--border);
  box-shadow: var(--shadow-md);
}

.step__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f2f5 0%, #e4e7eb 100%);
  color: var(--text-3);
}
.step__placeholder svg {
  width: 48px;
  height: 48px;
}

.step__title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step__desc { font-size: .92rem; color: var(--text-2); }

.step__connector {
  flex-shrink: 0;
  width: 64px;
  color: var(--seafoam);
  margin-top: 120px;
  opacity: .6;
}
.step__connector svg { width: 100%; }

/* ── FEATURES GRID ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.feature-card__icon {
  width: 44px;
  height: 44px;
  color: var(--brand);
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 44px; height: 44px; }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: .92rem; color: var(--text-2); }

/* ── EVENTS GRID ─────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.event-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,75,154,.12), rgba(232,75,154,.04));
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--brand);
}
.event-card__icon svg { width: 22px; height: 22px; }
.event-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.event-card p { font-size: .88rem; color: var(--text-2); }

/* ── VIDEO GRID (9:16) ───────────────────────────────────── */
.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}
.video-carousel__track::-webkit-scrollbar { display: none; }
.video-carousel__track .video-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.video-carousel__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 2;
}
.video-carousel__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.video-carousel__btn svg { width: 20px; height: 20px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  text-align: center;
}

.video-card__wrap {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  transition: all var(--transition);
  cursor: pointer;
}
.video-card__wrap:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,75,154,.3);
  transform: translateY(-4px);
}

.video-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.2);
}
.video-card__placeholder svg {
  width: 48px;
  height: 48px;
}

.video-card__wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: transform .2s, opacity .2s;
  z-index: 2;
}
.video-card__play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}
.video-card__play:hover {
  transform: scale(1.1);
  opacity: 1;
}
.video-card__wrap.playing .video-card__play {
  opacity: 0;
  pointer-events: none;
}

.video-card__label {
  display: none;
}

/* ── RENTAL GRID ─────────────────────────────────────────── */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.rental-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.rental-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.rental-card__num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 14px;
}

.rental-card h3 { margin-bottom: 10px; }
.rental-card p  { font-size: .92rem; color: var(--text-2); }

/* ── REQUIREMENTS ────────────────────────────────────────── */
.requirements {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
}

.requirements__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.requirements__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.requirements__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text-2);
}
.requirements__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--brand); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
  list-style: none;
}
.faq-item__q:hover { color: var(--brand); }

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-3);
  transition: transform var(--transition);
}
.faq-item__icon svg { width: 20px; height: 20px; }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); color: var(--brand); }

.faq-item__a {
  padding: 0 24px 22px;
}
.faq-item__a p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1a3e 100%);
  padding: 80px 0;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-banner__content h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-banner__content p { color: rgba(255,255,255,.7); font-size: 1rem; }

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section__title { text-align: left; margin-bottom: 20px; }
.contact-info__text { font-size: 1rem; color: var(--text-2); margin-bottom: 32px; }

.contact-info__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--brand);
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--transition);
}
.channel-link:hover { border-color: var(--brand); background: var(--brand-20); }

/* ── FORM ─────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1.5px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,75,154,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238896a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-weight: 600;
}
.form-success {
  background: #e8f7f0;
  color: #1a7a4a;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-error {
  background: #fef2f2;
  color: #c0392b;
}
.form-success.show,
.form-error.show { display: flex; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--brand); }

.footer__copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  width: 100%;
  text-align: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__placeholder { height: 360px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .video-carousel__track .video-card { flex: 0 0 180px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }
  .requirements__list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0;
    background: var(--white);
    padding: 32px 24px;
    gap: 24px;
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav__links.open a { font-size: 1.1rem; }

  .hero { padding: 48px 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__placeholder { height: 260px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

  .steps { flex-direction: column; align-items: center; }
  .step__connector { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .video-carousel__btn { display: none; }
  .video-popup__inner { max-width: 85vw; height: 75vh; }
  .video-popup__close { top: -38px; }
  .hero__demo-badge { bottom: 14px; left: 14px; padding: 10px 16px; font-size: .82rem; }
  .video-carousel__track .video-card { flex: 0 0 160px; }
  .rental-grid { grid-template-columns: 1fr; }
  .requirements__list { grid-template-columns: 1fr; }

  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: row; flex-wrap: wrap; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .requirements { padding: 28px 20px; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up { animation: fadeUp .6s cubic-bezier(.4,0,.2,1) both; }
.anim-fade-in { animation: fadeIn .6s ease both; }
