/* components.css — Reusable UI components */

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--text-md);
  text-decoration: none;
  border: none;
  transition: background var(--ease-fast), box-shadow var(--ease-fast),
              transform var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* Primary CTA — red pill */
.btn--cta {
  position: relative;
  padding: var(--sp-4) var(--sp-8);
  background: var(--clr-red);
  color: var(--clr-white);
  font-weight: var(--fw-black);
  font-size: var(--text-lg);
  overflow: hidden;
  box-shadow: var(--shadow-red);
}
.btn--cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn--cta:hover {
  background: var(--clr-red-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229,57,53,0.40);
}
.btn--cta .btn-arrow { transition: transform var(--ease-spring); }
.btn--cta:hover .btn-arrow { transform: translateX(5px); }
.btn--cta .btn-phone { animation: phone-pulse 2s ease-in-out infinite; }
@keyframes phone-pulse {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(0deg); }
}

/* Secondary — outlined gold */
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold-line);
  padding: calc(var(--sp-4) - 2px) calc(var(--sp-8) - 2px);
}
.btn--outline:hover {
  background: var(--clr-gold-glow);
  border-color: var(--clr-gold);
  color: var(--clr-gold-bright);
  transform: translateY(-2px);
}

/* Ghost — for dark backgrounds */
.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: var(--clr-text-white);
  border: 1px solid rgba(255,255,255,0.20);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--sm { padding: var(--sp-2) var(--sp-5); font-size: var(--text-sm); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(10,15,30,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--ease-base), border-color var(--ease-base),
              box-shadow var(--ease-base);
}
.site-header.is-scrolled {
  background: rgba(10,15,30,0.97);
  border-bottom-color: var(--clr-gold-line);
  box-shadow: 0 4px 32px rgba(0,0,0,0.40);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: 100%;
}
.site-header__logo { flex-shrink: 0; text-decoration: none; }
.site-header__logo img { height: 48px; width: auto; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav { flex: 1; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-white-80);
  font-weight: var(--fw-medium);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast), background var(--ease-fast);
  position: relative;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: var(--sp-3); right: var(--sp-3);
  height: 1.5px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-base);
}
.nav-link:hover { color: var(--clr-text-white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--active { color: var(--clr-gold); }
.nav-link--active::after { transform: scaleX(1); }

/* ── DROPDOWN ─────────────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--sp-3));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 720px;
  background: rgba(15,30,58,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--clr-gold);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.50), 0 4px 12px rgba(0,0,0,0.30);
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-fast), transform var(--ease-fast);
}
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.nav-dropdown__grid--3col { grid-template-columns: repeat(3, 1fr); }
.nav-dropdown__heading {
  font-size: var(--text-2xs);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown ul { display: flex; flex-direction: column; gap: var(--sp-0-5); }
.nav-dropdown a {
  display: block;
  color: var(--clr-text-white-80);
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 5px var(--sp-2);
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast), background var(--ease-fast),
              padding-left var(--ease-fast);
}
.nav-dropdown a:hover {
  color: var(--clr-gold-bright);
  background: rgba(212,168,71,0.08);
  padding-left: var(--sp-4);
}

/* Header CTA group */
.site-header__actions { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: var(--sp-2);
  cursor: pointer;
  transition: background var(--ease-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.12); }
.nav-toggle__bar {
  display: block;
  width: 100%; height: 2px;
  background: var(--clr-text-white);
  border-radius: 2px;
  transition: transform var(--ease-base), opacity var(--ease-base);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0; left: auto;
  width: min(380px, 100vw);
  background: var(--clr-midnight);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--ease-base);
  overflow-y: auto;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.70);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease-base);
}
.mobile-nav__overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav__body { flex: 1; padding: var(--sp-4) 0; }
.mobile-nav__close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer; border: none;
  transition: background var(--ease-fast);
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.16); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  color: var(--clr-text-white-80);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  text-decoration: none;
  border: none; background: none; width: 100%; cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--ease-fast), background var(--ease-fast);
}
.mobile-nav__link:hover { color: var(--clr-gold); background: rgba(212,168,71,0.06); }
.mobile-nav__sub {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav__sub.is-open { display: flex; }
.mobile-nav__sub-heading {
  font-size: var(--text-2xs);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold);
  padding: var(--sp-4) var(--sp-8) var(--sp-2);
}
.mobile-nav__sub a {
  display: block;
  padding: var(--sp-2) var(--sp-8);
  color: var(--clr-text-white-55);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.mobile-nav__sub a:hover { color: var(--clr-gold-bright); }
.mobile-nav__footer {
  padding: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav__emergency {
  display: flex; align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-red-dark);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: var(--fw-black);
  font-size: var(--text-lg);
  text-decoration: none;
  justify-content: center;
  box-shadow: var(--shadow-red);
}

/* ── MOBILE STICKY BOTTOM BAR ─────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  height: 64px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.mobile-cta-bar__call {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  background: var(--clr-red-dark);
  color: white;
  font-weight: var(--fw-black);
  font-size: var(--text-md);
  text-decoration: none;
  height: 100%;
  flex: 1;
  transition: background var(--ease-fast);
}
.mobile-cta-bar__call:hover { background: var(--clr-red-dark); color: white; }
.mobile-cta-bar__quote {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  background: var(--clr-navy);
  color: white;
  font-weight: var(--fw-bold);
  font-size: var(--text-md);
  text-decoration: none;
  height: 100%;
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.10);
  transition: background var(--ease-fast);
}
.mobile-cta-bar__quote:hover { background: var(--clr-navy-light); color: white; }
.mobile-cta-bar__inner { display: flex; height: 100%; }

/* ── TRUST TICKER ─────────────────────────────────────────── */
.trust-ticker {
  overflow: hidden;
  background: var(--clr-gold);
  padding: var(--sp-3) 0;
}
.trust-ticker__inner {
  display: flex;
  gap: var(--sp-12);
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.trust-ticker:hover .trust-ticker__inner { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-ticker__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
  font-weight: var(--fw-black);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-midnight);
}
.trust-ticker__dot {
  width: 6px; height: 6px;
  background: var(--clr-midnight);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--clr-midnight);
  overflow: hidden;
  padding: var(--sp-20) 0;
}
.hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(20%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.80) 45%, rgba(10,15,30,0.40) 100%);
}
.hero__orb {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge-float {
  position: absolute;
  bottom: var(--sp-16); left: var(--sp-8);
  z-index: 3;
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-red);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-red);
  animation: badge-float 3s ease-in-out infinite;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: white;
  text-decoration: none;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__badge-float::before {
  content: '';
  width: 10px; height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* ── STAT BLOCKS ──────────────────────────────────────────── */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-6) var(--sp-8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat-block__number {
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--clr-gold-bright);
  letter-spacing: var(--ls-tight);
  font-family: var(--font-display);
}
.stat-block__label {
  font-size: var(--text-sm);
  color: var(--clr-text-white-55);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-top: var(--sp-2);
}

/* ── SERVICE CARD V2 ──────────────────────────────────────── */
.service-card-v2 {
  position: relative;
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  overflow: hidden;
  transition: box-shadow var(--ease-base), transform var(--ease-base),
              border-color var(--ease-base);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--clr-gold-glow);
  pointer-events: none;
  transition: opacity var(--ease-base), transform var(--ease-base);
  opacity: 0;
}
.service-card-v2:hover { box-shadow: var(--shadow-lg); border-color: var(--clr-gold); transform: translateY(-6px); }
.service-card-v2:hover::before { opacity: 1; transform: scale(1.2); }
.service-card-v2__icon {
  width: 56px; height: 56px;
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  margin-bottom: var(--sp-6);
  transition: background var(--ease-base), transform var(--ease-base);
}
.service-card-v2:hover .service-card-v2__icon { background: var(--clr-navy-light); transform: scale(1.08) rotate(-3deg); }
.service-card-v2__title {
  font-size: var(--text-xl); font-weight: var(--fw-bold);
  color: #0D1526; margin-bottom: var(--sp-3);
}
.service-card-v2__desc { font-size: var(--text-sm); color: #2E3A52; line-height: var(--lh-loose); }
.service-card-v2__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: #7C5800; font-weight: var(--fw-semibold);
  font-size: var(--text-sm); margin-top: var(--sp-5);
  text-decoration: none;
}

/* ── BENTO GRID ───────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.bento-card {
  position: relative;
  background: var(--clr-surface-1);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  overflow: hidden;
  transition: box-shadow var(--ease-base), transform var(--ease-base);
  text-decoration: none; color: inherit; display: block;
}
.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bento-card--dark  { background: var(--clr-navy); color: white; border-color: var(--clr-navy-border); }
.bento-card--dark  h3, .bento-card--dark p { color: var(--clr-text-white-80); }
.bento-card--dark  h3 { color: white; }
.bento-card--red   { background: var(--clr-red); color: white; border-color: transparent; }
.bento-card--red   h3, .bento-card--red p { color: rgba(255,255,255,0.9); }
.bento-card--tall  { grid-row: span 2; }
.bento-card--wide  { grid-column: span 2; }
.bento-card__icon  {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.bento-card--dark .bento-card__icon  { background: rgba(255,255,255,0.10); color: var(--clr-gold); }
.bento-card--light .bento-card__icon { background: var(--clr-navy); color: var(--clr-gold); }
.bento-card--red .bento-card__icon   { background: rgba(255,255,255,0.20); color: white; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: var(--clr-midnight);
  background-image:
    radial-gradient(ellipse at 80% 50%, var(--clr-gold-glow) 0%, transparent 60%),
    linear-gradient(135deg, var(--clr-midnight) 0%, var(--clr-navy) 100%);
  padding: var(--sp-20) 0;
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: center;
}
.page-hero h1 { color: white; margin-bottom: var(--sp-5); }
.page-hero p  { color: var(--clr-text-white-80); font-size: var(--text-lg); line-height: var(--lh-loose); margin-bottom: var(--sp-8); }
.page-hero__deco { display: flex; align-items: center; justify-content: center; }
.page-hero__icon-wrap {
  width: 200px; height: 200px;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  animation: hero-icon-glow 3s ease-in-out infinite;
}
@keyframes hero-icon-glow {
  0%, 100% { box-shadow: 0 0 40px var(--clr-gold-glow); }
  50%       { box-shadow: 0 0 80px rgba(212,168,71,0.30); }
}
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--clr-text-white-55);
  margin-bottom: var(--sp-5);
}
.page-hero__breadcrumb a { color: var(--clr-gold); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--clr-gold-bright); }
.page-hero__breadcrumb span { color: var(--clr-text-white-55); }

/* ── WHY TIMELINE ─────────────────────────────────────────── */
.why-timeline { position: relative; padding-left: var(--sp-12); }
.why-timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-gold) 0%, var(--clr-gold-muted) 60%, transparent 100%);
}
.why-timeline__item { position: relative; margin-bottom: var(--sp-10); }
.why-timeline__item:last-child { margin-bottom: 0; }
.why-timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-12) + 13px);
  top: 4px;
  width: 16px; height: 16px;
  background: var(--clr-gold);
  border: 3px solid var(--clr-midnight);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--clr-gold-glow);
}
.why-timeline__item h3 { color: white; margin-bottom: var(--sp-2); }
.why-timeline__item p  { color: var(--clr-text-white-80); line-height: var(--lh-loose); margin: 0; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps { position: relative; padding-left: var(--sp-16); }
.process-steps::before {
  content: '';
  position: absolute;
  left: 26px; top: 40px; bottom: 0; width: 2px;
  border-left: 2px dashed var(--clr-gold-muted);
}
.process-step { position: relative; margin-bottom: var(--sp-10); }
.process-step:last-child { margin-bottom: 0; }
.process-step__number {
  position: absolute;
  left: calc(-1 * var(--sp-16));
  top: 0;
  width: 52px; height: 52px;
  border: 2px solid var(--clr-gold);
  border-radius: 50%;
  background: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  font-family: var(--font-display);
  z-index: 1;
}
.process-step h3 { margin-bottom: var(--sp-2); padding-top: var(--sp-3); }
.process-step p  { color: var(--clr-text-muted); line-height: var(--lh-loose); margin: 0; }

/* ── REVIEW CARD ──────────────────────────────────────────── */
.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  box-shadow: var(--shadow-sm);
  flex: 0 0 min(380px, 88vw);
  scroll-snap-align: start;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  font-size: 6rem;
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
  font-family: Georgia, serif;
}
.review-card__stars { display: flex; gap: var(--sp-1); margin-bottom: var(--sp-4); color: var(--clr-gold); }
.review-card__text {
  font-size: var(--text-md);
  line-height: var(--lh-loose);
  color: #1F2D45;
  margin: 0 0 var(--sp-6);
  font-style: italic;
}
.review-card__author {
  display: flex; align-items: center; gap: var(--sp-3);
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--sp-4);
}
.review-card__avatar {
  width: 44px; height: 44px;
  background: var(--clr-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  font-weight: var(--fw-black);
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.review-card__name  { font-weight: var(--fw-bold); color: #0D1526; }
.review-card__meta  { font-size: var(--text-xs); color: #2E3A52; }

/* Reviews slider wrapper */
.reviews-slider { position: relative; }
.reviews-track {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--sp-4);
}
.reviews-track::-webkit-scrollbar { display: none; }
.slider-controls { display: flex; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-6); }
.slider-btn {
  width: 44px; height: 44px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-body);
  cursor: pointer;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast);
}
.slider-btn:hover { background: var(--clr-navy); color: var(--clr-gold); border-color: var(--clr-navy); }

/* ── ACCORDION ────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: var(--sp-3); }
.accordion__item {
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.accordion__item.is-open { border-color: var(--clr-navy); box-shadow: var(--shadow-md); }
.accordion__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none; border: none;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-dark);
  cursor: pointer; text-align: left;
  transition: background var(--ease-fast), color var(--ease-fast);
}
.accordion__btn:hover { background: var(--clr-surface-1); }
.accordion__btn[aria-expanded="true"] { background: var(--clr-navy); color: white; }
.accordion__icon-wrap {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--clr-surface-2);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease-fast), transform var(--ease-base);
}
.accordion__btn[aria-expanded="true"] .accordion__icon-wrap { background: var(--clr-gold); transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0,1,0,1);
}
.accordion__panel.is-open { max-height: 600px; transition: max-height 0.45s ease-in-out; }
.accordion__panel-inner {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  color: var(--clr-text-body);
  line-height: var(--lh-loose);
  border-top: 1px solid var(--clr-border-light);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--clr-text-dark);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px var(--clr-gold-glow);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { font-size: var(--text-xs); color: var(--clr-red); margin-top: var(--sp-1); }
.form-input.is-error,
.form-textarea.is-error { border-color: var(--clr-red); }
.form-status { margin-top: var(--sp-4); padding: var(--sp-4); border-radius: var(--radius-md); font-weight: var(--fw-semibold); }
.form-status--success { background: #e6f9f0; color: #006b2e; border: 1px solid #a3d9b8; }
.loading-dots span { animation: blink 1.4s infinite both; display: inline-block; }
.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }

/* ── CERT CARD ────────────────────────────────────────────── */
.cert-card {
  position: relative;
  background: var(--clr-navy);
  border: 1px solid var(--clr-navy-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--ease-base);
}
.cert-card:hover { box-shadow: var(--shadow-gold); }
.cert-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(212,168,71,0.15) 45%,
    rgba(240,192,64,0.25) 50%, rgba(212,168,71,0.15) 55%, transparent 75%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity var(--ease-base);
  pointer-events: none;
}
.cert-card:hover::before { opacity: 1; animation: foil-shimmer 1.5s ease-in-out infinite; }
@keyframes foil-shimmer {
  0%   { background-position: 200% 0%; }
  100% { background-position: -200% 0%; }
}
.cert-card__icon {
  width: 64px; height: 64px;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-gold-line);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
}
.cert-card__title { color: white; font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.cert-card__desc  { color: var(--clr-text-white-55); font-size: var(--text-sm); line-height: var(--lh-loose); margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-midnight);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--clr-text-white-80);
}
.site-footer h3 {
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-main {
  padding: var(--sp-16) 0 var(--sp-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}
.footer-brand__desc { font-size: var(--text-sm); line-height: var(--lh-loose); margin: var(--sp-4) 0; color: var(--clr-text-white-55); }
.footer-brand__phone { font-size: var(--text-2xl); font-weight: var(--fw-black); color: var(--clr-gold-bright); text-decoration: none; }
.footer-brand__phone:hover { color: white; }
.footer-nav a {
  display: block;
  font-size: var(--text-sm);
  color: var(--clr-text-white-55);
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--ease-fast);
}
.footer-nav a:hover { color: var(--clr-gold); }
.footer-bottom {
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--clr-text-white-55);
}
.footer-bottom a { color: var(--clr-text-white-55); text-decoration: none; }
.footer-bottom a:hover { color: var(--clr-gold); }
.footer-bottom__links { display: flex; gap: var(--sp-6); }

/* ── INFO CARD ────────────────────────────────────────────── */
.info-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ── INFO GRID ────────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.info-card__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.info-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
  color: var(--clr-navy);
}
.info-card p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin: 0;
}
.info-card__link {
  display: inline-block;
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  text-decoration: none;
}
.info-card__link:hover {
  text-decoration: underline;
}

/* ── WHY GRID ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.why-item {
  padding: var(--sp-6);
  background: var(--clr-surface-1);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--clr-gold);
}
.why-item h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  margin-bottom: var(--sp-3);
}
.why-item p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin: 0;
}

/* ── AUDIENCE LIST ────────────────────────────────────────── */
.audience-list {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.audience-item {
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--clr-gold);
}
.audience-item__label {
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  margin-bottom: var(--sp-1);
}
.audience-item p {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin: 0;
  line-height: var(--lh-loose);
}

/* ── CITIES GRID ──────────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-6);
}
.cities-col h3 {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--clr-navy);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--clr-gold);
}
.cities-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cities-col ul li {
  font-size: var(--text-sm);
  color: var(--clr-text-body);
  padding: var(--sp-1) 0;
  border-bottom: 1px solid var(--clr-border-light);
}

/* ── CTA SECTION BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  border: 1px solid var(--clr-navy-border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--clr-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: white; margin-bottom: var(--sp-4); }
.cta-banner p  { color: var(--clr-text-white-80); font-size: var(--text-lg); margin-bottom: var(--sp-8); }
.cta-banner__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

