/* ==========================================================================
   MCOVER TELEMATICS — Design System
   Brand: Primary Purple #390573 | Primary Orange #FE6102
   ========================================================================== */

:root {
  /* Brand core */
  --purple: #390573;
  --purple-dark: #23044a;
  --purple-darker: #170231;
  --purple-light: #5a1aa8;
  --purple-tint-10: rgba(57, 5, 115, 0.1);
  --purple-tint-05: rgba(57, 5, 115, 0.05);
  --orange: #FE6102;
  --orange-dark: #d94f00;
  --orange-light: #ff8a42;
  --orange-tint-10: rgba(254, 97, 2, 0.1);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f7fb;
  --neutral-50: #f5f4f9;
  --neutral-100: #ece9f4;
  --neutral-200: #ddd8ea;
  --neutral-300: #c3bcd8;
  --neutral-500: #8a80a3;
  --neutral-700: #5a5270;
  --neutral-900: #241c3a;
  --ink: #1a1428;

  /* Semantic */
  --success: #17a673;
  --warning: #FE6102;
  --danger: #e0303f;

  /* Typography */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(23, 2, 49, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 2, 49, 0.1);
  --shadow-lg: 0 20px 48px rgba(23, 2, 49, 0.16);
  --shadow-orange: 0 10px 30px rgba(254, 97, 2, 0.3);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ---------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--purple-darker);
  letter-spacing: -0.01em;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------------------------------- Layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}
.section-dark {
  background: linear-gradient(160deg, var(--purple-darker) 0%, var(--purple) 55%, var(--purple-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-off { background: var(--off-white); }
.section-white { background: var(--white); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-industries { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
@media (max-width: 980px) {
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .grid-industries { grid-template-columns: repeat(2, 1fr); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-tint-10);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-dark .eyebrow { background: rgba(254, 97, 2, 0.16); }
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-tint-10);
}

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; color: var(--neutral-700); }
.section-dark .section-head p { color: var(--neutral-200); }

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(254,97,2,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }
.btn-ghost-dark {
  background: var(--purple-tint-05);
  color: var(--purple);
  border: 1.5px solid var(--purple-tint-10);
}
.btn-ghost-dark:hover { background: var(--purple); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* ---------------------------------- Header / Nav ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  /* Note: intentionally no backdrop-filter here — applying filter/
     backdrop-filter to this element would make it the containing block
     for its position:fixed descendants (the mobile nav panel and its
     overlay), breaking full-height positioning on mobile. */
  border-bottom: 1px solid var(--neutral-100);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--purple); background: var(--purple-tint-05); }
.nav-link .chev { width: 10px; height: 10px; transition: transform var(--dur) var(--ease); }
.has-dropdown:hover .chev, .has-dropdown:focus-within .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-900);
}
.dropdown a:hover { background: var(--off-white); color: var(--purple); }
.dropdown .dd-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: var(--purple-tint-05);
  color: var(--purple);
}
.dropdown .dd-icon svg { width: 18px; height: 18px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-main .btn-primary { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1100;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--purple-darker); border-radius: 2px; transition: all var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-main {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    gap: 2px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1000;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-link { padding: 14px 12px; font-size: 1.02rem; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none;
    background: var(--off-white);
    margin: 4px 0 8px;
  }
  .has-dropdown.mobile-open .dropdown { display: block; }
  .has-dropdown.mobile-open .chev { transform: rotate(180deg); }
  .header-actions .btn-primary { display: none; }
  .nav-main .btn-primary { display: inline-flex; margin-top: 16px; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0; background: rgba(23,2,49,0.5);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }
}

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 15% 0%, #4a1094 0%, transparent 60%),
              linear-gradient(155deg, var(--purple-darker) 0%, var(--purple) 60%, #2c0660 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow { background: rgba(254,97,2,0.16); }
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--orange-light); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--neutral-200);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px 32px; }
.hero-point { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--neutral-200); }
.hero-point svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; }

/* subtle background grid pattern for dark sections */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 75%);
  pointer-events: none;
}
.bg-glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,97,2,0.22) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: left; }
  .hero { padding-top: 32px; }
}

/* ---------------------------------- Cards ---------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card { padding: 34px 28px; position: relative; overflow: hidden; }
.service-card .icon-badge {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--purple), var(--purple-light));
  color: var(--white);
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(57,5,115,0.28);
  transition: transform var(--dur) var(--ease);
}
.service-card .icon-badge svg { width: 28px; height: 28px; }
.service-card:hover .icon-badge { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: var(--neutral-700); font-size: 0.96rem; margin-bottom: 18px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--orange); font-size: 0.92rem; }
.service-card .card-link svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }
.service-card .card-index {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  color: var(--neutral-300);
}

.trust-card { padding: 30px 26px; text-align: left; }
.trust-card .icon-badge {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-tint-10); color: var(--orange);
  margin-bottom: 18px;
}
.trust-card .icon-badge svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.trust-card p { color: var(--neutral-700); font-size: 0.92rem; }

.industry-card {
  padding: 26px 22px;
  text-align: center;
  background: var(--white);
}
.industry-card .icon-badge {
  width: 54px; height: 54px; margin-inline: auto; margin-bottom: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-tint-05); color: var(--purple);
}
.industry-card .icon-badge svg { width: 26px; height: 26px; }
.industry-card h3 { font-size: 1rem; margin-bottom: 6px; }
.industry-card p { color: var(--neutral-700); font-size: 0.86rem; }

/* ---------------------------------- Feature split section ---------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
.split.reverse .split-copy { order: 1; }
@media (max-width: 980px) {
  .split, .split.reverse .split-visual, .split.reverse .split-copy { order: initial; }
  .split { grid-template-columns: 1fr; }
}
.split-top { align-items: flex-start; }
.split-visual img { width: 100%; border-radius: var(--radius-lg); }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item .dot {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
  background: var(--purple-tint-05); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .dot svg { width: 17px; height: 17px; }
.feature-item strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--purple-darker); margin-bottom: 2px; }
.feature-item span { color: var(--neutral-700); font-size: 0.92rem; }

.section-dark .feature-item .dot { background: rgba(254,97,2,0.14); color: var(--orange); }
.section-dark .feature-item strong { color: var(--white); }
.section-dark .feature-item span { color: var(--neutral-200); }

/* ---------------------------------- Dashboard visual chrome ---------------------------------- */
.dash-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: linear-gradient(120deg, var(--purple-darker), var(--purple));
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.stat-strip .stat {
  background: rgba(255,255,255,0.05);
  padding: 16px 14px;
  text-align: center;
}
.stat-strip .stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; color: var(--white); display: block;
  margin-bottom: 4px;
}
.stat-strip .stat.accent .num { color: var(--orange-light); }
.stat-strip .stat .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--neutral-300); }
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.disclaimer-note {
  font-size: 0.8rem;
  color: var(--neutral-500);
  font-style: italic;
  margin-top: 10px;
}
.section-dark .disclaimer-note { color: var(--neutral-300); }

/* ---------------------------------- CTA band ---------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--purple-darker), var(--purple) 70%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-band::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,97,2,0.28), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: var(--neutral-200); }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--purple-darker);
  color: var(--neutral-200);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: var(--neutral-300); max-width: 300px; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-row a:hover { background: var(--orange); transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: var(--neutral-300); transition: color var(--dur); }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--neutral-300); margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
  font-size: 0.84rem; color: var(--neutral-500);
}
.footer-bottom a { color: var(--neutral-300); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ---------------------------------- Forms ---------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--purple-darker); }
.form-group label .req { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.96rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-tint-10);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .error-msg { font-size: 0.8rem; color: var(--danger); min-height: 1em; display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: var(--danger); }
.form-group.invalid .error-msg { display: block; }
.form-note { font-size: 0.82rem; color: var(--neutral-500); margin-top: 6px; }
.form-status {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 600; display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(23,166,115,0.1); color: var(--success); border: 1px solid rgba(23,166,115,0.25); }
.form-status.error { background: rgba(224,48,63,0.08); color: var(--danger); border: 1px solid rgba(224,48,63,0.2); }

/* ---------------------------------- Page hero (interior pages) ---------------------------------- */
.page-hero {
  background: linear-gradient(155deg, var(--purple-darker) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--neutral-300); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange-light); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 760px; }
.page-hero p { color: var(--neutral-200); font-size: 1.05rem; max-width: 640px; margin-top: 16px; }

/* ---------------------------------- Utilities ---------------------------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--neutral-200);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700; color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.two-col-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip-list li {
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--off-white); border: 1px solid var(--neutral-100);
  font-size: 0.84rem; font-weight: 600; color: var(--purple-darker);
}

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}

.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--dur) var(--ease);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 20px; height: 20px; }

.whatsapp-float {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: transform var(--dur) var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float.is-placeholder { opacity: 0.55; cursor: not-allowed; }
.whatsapp-float.is-placeholder:hover { transform: none; background: #25D366; }

.rot-up { transform: rotate(-90deg); }

.placeholder-text { color: var(--neutral-500); font-style: italic; }
