@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES (Abbis — orange palette) ── */
:root {
  --background: hsl(24, 40%, 97%);
  --foreground: hsl(20, 45%, 11%);
  --card: #fff;
  --primary: hsl(20, 88%, 52%);
  --primary-fg: #fff;
  --secondary: hsl(32, 92%, 56%);
  --muted: hsl(24, 30%, 95%);
  --muted-fg: hsl(20, 15%, 42%);
  --accent: hsl(10, 80%, 55%);
  --border: hsl(24, 25%, 89%);
  --ab-dark: hsl(18, 55%, 9%);
  --ab-soft: hsl(24, 35%, 95%);
  --ab-accent: hsl(32, 92%, 56%);
  --ab-glass-bg: hsla(20, 88%, 52%, 0.12);
  --ab-glass-border: hsla(0, 0%, 100%, 0.18);
  --ab-glass-bg-dark: hsla(0, 0%, 100%, 0.06);
  --ab-shadow-glow: 0 0 30px hsla(20, 88%, 52%, 0.4);
  --ab-shadow-card: 0 8px 32px hsla(18, 55%, 9%, 0.10);
  --radius: 0.75rem;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT HELPERS ── */
.content-max { max-width: 1280px; margin: 0 auto; }
.section-padding { padding: 5rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }

/* ── GLASS CARDS ── */
.glass-card {
  background: var(--ab-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ab-glass-border);
  border-radius: 16px;
}
.glass-card-dark {
  background: var(--ab-glass-bg-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ab-glass-border);
  border-radius: 16px;
}

/* ── GRADIENTS ── */
.gradient-hero { background: linear-gradient(135deg, hsl(18,55%,9%), hsl(16,60%,22%), hsl(20,88%,52%)); }
.gradient-dark { background: linear-gradient(180deg, hsl(18,55%,9%), hsl(16,50%,16%)); }
.gradient-cta  { background: linear-gradient(135deg, hsl(20,88%,52%), hsl(32,92%,56%)); }

/* ── HOVER GLOW ── */
.hover-glow { transition: all 0.3s ease; }
.hover-glow:hover { box-shadow: var(--ab-shadow-glow); transform: translateY(-6px); }

/* ══════════════════════════════════════
   BADGE / PILL
══════════════════════════════════════ */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(20,88%,52%,0.12);
  color: hsl(20,88%,45%);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsla(20,88%,52%,0.25);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(18,55%,9%);
  border-bottom: 1px solid hsla(0,0%,100%,0.10);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.navbar-logo .logo-dot { color: hsl(32,92%,58%); }
.navbar-logo svg { flex-shrink: 0; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.70);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: #fff; }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(135deg, #f0812a, #d9560f);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 86, 15, 0.4);
  background: linear-gradient(135deg, #d9560f, #b8440a);
}
.navbar-cta span { display: inline-block; transition: transform 0.3s ease; }
.navbar-cta:hover span { transform: translateX(4px); }

.navbar-toggle { display: none; background: none; border: none; cursor: pointer; }
.navbar-toggle svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

.navbar-mobile {
  display: none;
  flex-direction: column;
  background: hsl(18,55%,9%);
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid hsla(0,0%,100%,0.10);
  gap: 1rem;
}
.navbar-mobile a { color: hsla(0,0%,100%,0.80); font-size: 1rem; font-weight: 500; transition: color 0.2s; }
.navbar-mobile a:hover { color: #fff; }
.navbar-mobile .navbar-cta { justify-content: center; margin-top: 0.5rem; }
.navbar-mobile.open { display: flex; }

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero, linear-gradient(135deg, hsl(18,55%,9%), hsl(16,60%,22%), hsl(20,88%,52%)));
}
.glow-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(32,92%,58%,0.35), transparent);
  filter: blur(50px);
  pointer-events: none;
}
.glow-1 { width: 320px; height: 320px; top: 8%; left: 4%; animation: floatGlow 8s ease-in-out infinite; }
.glow-2 { width: 420px; height: 420px; top: 38%; right: -2%; animation: floatGlow2 10s ease-in-out infinite; }
.glow-3 { width: 260px; height: 260px; bottom: 6%; left: 38%; animation: floatGlow3 12s ease-in-out infinite; }

@keyframes floatGlow {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50%      { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
}
@keyframes floatGlow2 {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50%      { transform: translateY(20px) translateX(-15px); opacity: 0.5; }
}
@keyframes floatGlow3 {
  0%,100% { transform: translateY(10px) translateX(-10px); opacity: 0.25; }
  50%      { transform: translateY(-20px) translateX(25px); opacity: 0.55; }
}

.hero-circles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid hsla(32,92%,58%,0.14);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 1rem 2rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1.1fr 0.9fr; padding: 6rem 2rem 2rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(0,0%,100%,0.10);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsla(0,0%,100%,0.20);
  margin-bottom: 1.5rem;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(32,92%,58%);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.3); } }

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero h1 span { color: hsl(32,95%,62%); }
.hero p {
  color: hsla(0,0%,100%,0.78);
  font-size: 1.125rem;
  max-width: 34rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, #f0812a, #d9560f);
  color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { box-shadow: 0 0 30px hsla(20,88%,52%,0.5); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid hsla(0,0%,100%,0.35);
  color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.btn-outline:hover { background: hsla(0,0%,100%,0.10); }
.btn-outline svg { width: 16px; height: 16px; animation: arrowBounce 1.5s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

.hero-card { display: flex; justify-content: center; }
.hero-card-inner {
  padding: 2rem;
  width: 19rem;
  text-align: center;
  border-radius: 1.25rem;
  background: hsla(0,0%,100%,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(0,0%,100%,0.18);
  box-shadow: 0 8px 40px -8px hsla(18,55%,5%,0.4);
}
.hero-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0812a, #d9560f);
  animation: floatIcon 3s ease-in-out infinite;
}
.hero-card-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-card-inner p:first-of-type { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.hero-card-inner p:last-of-type { color: hsla(0,0%,100%,0.55); font-size: 0.875rem; font-weight: 300; }
.hero-progress { margin-top: 1.5rem; height: 6px; border-radius: 9999px; background: hsla(0,0%,100%,0.15); overflow: hidden; }
.hero-progress span { display: block; height: 100%; width: 78%; border-radius: 9999px; background: linear-gradient(90deg, #f0812a, #f7a94c); }
.hero-progress-label { margin-top: 0.6rem; font-size: 0.7rem; color: hsla(0,0%,100%,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ══════════════════════════════════════
   HIGHLIGHTS MARQUEE
══════════════════════════════════════ */
.highlights-section {
  background: var(--ab-soft);
  padding: 3.5rem 0;
  overflow: hidden;
}
.highlights-label {
  text-align: center;
  color: var(--muted-fg);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.chips-track-wrapper { position: relative; width: 100%; overflow: hidden; }
.chips-track-wrapper::before,
.chips-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 10;
  pointer-events: none;
}
.chips-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--ab-soft), transparent); }
.chips-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--ab-soft), transparent); }

.chips-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scrollChips 26s linear infinite;
}
.chips-track:hover { animation-play-state: paused; }
@keyframes scrollChips {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.chip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 3.25rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--ab-shadow-card);
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}
.chip-item .chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ══════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════ */
.section-eyebrow {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.section-sub {
  text-align: center;
  color: var(--muted-fg);
  font-weight: 300;
  max-width: 40rem;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════
   SERVICES / BENEFITS GRID
══════════════════════════════════════ */
.services-section { background: var(--background); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--ab-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ab-glass-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: var(--ab-shadow-glow); transform: translateY(-6px); }
.service-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: hsla(20,88%,52%,0.14);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; font-size: 1.05rem; }
.service-card p { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.6; }
.service-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

/* ══════════════════════════════════════
   WHY ABBIS
══════════════════════════════════════ */
.why-section { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--ab-glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ab-glass-border);
  border-radius: 16px;
  border-top: 2px solid var(--ab-accent);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { color: hsla(0,0%,100%,0.62); font-weight: 300; line-height: 1.6; }

/* ══════════════════════════════════════
   ABOUT SNIPPET
══════════════════════════════════════ */
.about-snippet { color: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-eyebrow { color: var(--ab-accent); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.about-snippet h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.5rem; }
.about-snippet > .content-max > .about-grid > div > p { color: hsla(0,0%,100%,0.72); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.value-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.5rem; }
.value-tag {
  background: var(--ab-glass-bg-dark);
  border: 1px solid var(--ab-glass-border);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsla(0,0%,100%,0.82);
}

.about-feature-card { padding: 2rem; }
.feature-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.feature-row:last-child { margin-bottom: 0; }
.feature-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: hsla(32,92%,58%,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-row strong { display: block; font-weight: 600; margin-bottom: 0.125rem; }
.feature-row span { font-size: 0.875rem; color: hsla(0,0%,100%,0.55); }

/* ══════════════════════════════════════
   CTA / WAITLIST SIGNUP
══════════════════════════════════════ */
.cta-banner { background: var(--background); text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.cta-banner > .content-max > p { color: var(--muted-fg); max-width: 38rem; margin: 0 auto 3rem; font-weight: 300; font-size: 1.1rem; }

.signup-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: left;
  box-shadow: var(--ab-shadow-card);
}
.signup-form { display: flex; flex-direction: column; gap: 1.1rem; }
.signup-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .signup-row { grid-template-columns: 1fr 1fr; } }
.signup-form label { font-size: 0.8rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.35rem; display: block; }
.signup-form input, .signup-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
}
.signup-form input::placeholder { color: var(--muted-fg); }
.signup-form input:focus, .signup-form select:focus { outline: none; box-shadow: 0 0 0 3px hsla(20,88%,52%,0.20); }
.role-toggle { display: flex; gap: 0.75rem; }
.role-option {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
}
.role-option input { display: none; }
.role-option.active {
  border-color: var(--primary);
  background: hsla(20,88%,52%,0.10);
  color: var(--primary);
}
.btn-submit {
  background: linear-gradient(135deg, #f0812a, #d9560f);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  border: none;
  align-self: flex-start;
  transition: all 0.3s;
  margin-top: 0.25rem;
}
.btn-submit:hover { box-shadow: var(--ab-shadow-glow); }
.signup-note { font-size: 0.78rem; color: var(--muted-fg); margin-top: 0.5rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; font-weight: 800; }
.footer-brand .logo-dot { color: hsl(32,92%,58%); }
.footer-tagline { margin-top: 1rem; font-size: 0.875rem; color: hsla(0,0%,100%,0.60); font-weight: 300; line-height: 1.7; max-width: 22rem; }
.footer-col h4 { font-weight: 600; font-size: 0.875rem; margin-bottom: 1rem; color: hsla(0,0%,100%,0.80); }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.8rem; color: hsla(0,0%,100%,0.55); transition: color 0.2s; }
.footer-col a:hover { color: hsla(0,0%,100%,0.85); }
.footer-col .text-item { font-size: 0.8rem; color: hsla(0,0%,100%,0.55); margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid hsla(0,0%,100%,0.10); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: hsla(0,0%,100%,0.40); }

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  box-shadow: var(--ab-shadow-glow);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.35s ease;
  z-index: 9999;
  pointer-events: none;
  min-width: 260px;
  max-width: 360px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: linear-gradient(135deg, #16a34a, #22c55e); border-left: 4px solid #14532d; }
.toast.error { background: linear-gradient(135deg, #dc2626, #ef4444); border-left: 4px solid #7f1d1d; }
@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast.show { animation: toastSlideIn 0.3s ease; }

/* ══════════════════════════════════════
   SOBRE / VISÃO / MISSÃO
══════════════════════════════════════ */
.vm-row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .vm-row { grid-template-columns: 1fr 1fr; } }
.vm-box {
  padding: 2rem;
}
.vm-box .icon { font-size: 1.75rem; margin-bottom: 0.85rem; }
.vm-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.vm-box p { color: hsla(0,0%,100%,0.68); font-weight: 300; line-height: 1.7; }

/* ══════════════════════════════════════
   VALORES
══════════════════════════════════════ */
.values-section { background: var(--ab-soft); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(5, 1fr); } }
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--ab-shadow-card);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--ab-shadow-glow); }
.value-card .icon { font-size: 1.9rem; margin-bottom: 0.85rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted-fg); font-size: 0.85rem; font-weight: 300; line-height: 1.6; }

/* ══════════════════════════════════════
   SERVICE CARD LISTS + "EM BREVE" TAG
══════════════════════════════════════ */
.service-soon {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: hsla(20,88%,52%,0.12);
  border-radius: 9999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.service-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-fg); font-size: 0.82rem; font-weight: 300; }
.service-list li .dot { color: var(--primary); font-size: 0.6rem; margin-top: 5px; }

/* ══════════════════════════════════════
   MOTORISTA PARCEIRO SPOTLIGHT
══════════════════════════════════════ */
.driver-spotlight { background: var(--gradient-cta, linear-gradient(135deg, hsl(20,88%,52%), hsl(32,92%,56%))); }
.driver-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .driver-spotlight-grid { grid-template-columns: 1.1fr 0.9fr; } }
.driver-spotlight .about-eyebrow { color: hsla(0,0%,100%,0.85); }
.driver-spotlight h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.driver-spotlight > .content-max > .driver-spotlight-grid > div > p { color: hsla(0,0%,100%,0.90); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; max-width: 34rem; }
.driver-check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.driver-check-list li { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 500; font-size: 0.95rem; }
.driver-check-list li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: hsla(0,0%,100%,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.btn-light {
  background: #fff;
  color: hsl(20,88%,45%);
  padding: 0.85rem 1.9rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
}
.btn-light:hover { box-shadow: 0 8px 30px hsla(18,55%,5%,0.25); transform: translateY(-2px); }
.driver-spotlight-card {
  padding: 2.25rem;
  background: hsla(0,0%,100%,0.14);
  border: 1px solid hsla(0,0%,100%,0.25);
}
.driver-spotlight-card .icon { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.driver-spotlight-card h4 { color: #fff; text-align: center; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.driver-spotlight-card p { color: hsla(0,0%,100%,0.85); text-align: center; font-size: 0.9rem; font-weight: 300; }

/* ══════════════════════════════════════
   CONTATO
══════════════════════════════════════ */
.contact-section { background: var(--background); text-align: center; }
.contact-section h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.contact-section > .content-max > p.section-sub { margin-bottom: 2.25rem; }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--ab-shadow-card);
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--foreground);
  transition: all 0.3s ease;
}
.contact-pill:hover { transform: translateY(-3px); box-shadow: var(--ab-shadow-glow); }
