/* ============================================================
   JUMBO AUTO CARS — Premium Dark Glass Theme
   Cleaned & Consolidated CSS Architecture
   ============================================================ */

:root {
  --bg: #0A0B10;
  --bg-2: #12141C;
  --bg-3: #191C26;
  --card: rgba(255, 255, 255, 0.045);
  --card-border: rgba(255, 255, 255, 0.09);
  --grad-1: #7C5CFC;
  /* violet */
  --grad-2: #3B8CFF;
  /* blue */
  --grad-3: #22C55E;
  /* green status */
  --amber: #F5A524;
  /* warm accent */
  --text: #F5F6FA;
  --text-soft: #9AA0AE;
  --text-faint: #6B7080;
  --line: rgba(255, 255, 255, 0.09);

  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(.22, .68, 0, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 900px 600px at 15% -5%, rgba(124, 92, 252, 0.18), transparent 60%),
    radial-gradient(ellipse 800px 600px at 100% 10%, rgba(59, 140, 255, 0.14), transparent 60%);
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

::selection {
  background: var(--grad-1);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--grad-2);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Typography & Badges ---- */
.gradient-text {
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 0.55em 1.25em;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-3);
  box-shadow: 0 0 10px var(--grad-3);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grad-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  display: block;
}

.section-label.center {
  text-align: center;
  display: block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease, border-color .3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-grad {
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(124, 92, 252, 0.55);
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -6px rgba(124, 92, 252, 0.7);
}

.btn-line {
  background: var(--card);
  border-color: var(--card-border);
  color: var(--text);
}

.btn-line:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1.1em 2.2em;
  font-size: 1rem;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn-full-center {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.mt-sm {
  margin-top: 0.8rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: padding .3s ease, background .3s ease;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(18, 20, 28, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.6rem 0.8rem 0.6rem 1.4rem;
}

.site-header.scrolled .header-row {
  background: rgba(18, 20, 28, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color .25s ease;
}

.phone-link:hover {
  color: var(--text);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--card);
  transition: background .3s ease, border-color .3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 12000;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.open {
  display: flex !important;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.close-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: background .2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.mobile-nav-overlay li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav-overlay a:not(.btn):not(.phone-link) {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s ease;
}

.mobile-nav-overlay a:hover {
  color: var(--grad-2);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

/* ============================================================
   HERO & LIVE TRACKER
   ============================================================ */
.hero-section {
  position: relative;
  padding: 8.5rem 0 2.75rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 92, 252, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(10, 11, 16, 0.74), rgba(10, 11, 16, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 58ch;
  margin: 1.6rem auto 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.problem-section {
  padding: 2.75rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
}

.section-head p {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.p-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s ease;
}

.p-card:hover {
  transform: translateY(-4px);
}

.p-card.old {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.02);
}

.p-card.new {
  border-color: rgba(34, 197, 94, 0.35);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), rgba(255, 255, 255, 0.02));
}

.p-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--grad-3);
  color: #0A0B10;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.p-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.p-card.old .p-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.p-card.new .p-icon {
  background: rgba(34, 197, 94, 0.15);
  color: var(--grad-3);
}

.p-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.p-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.p-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-list li {
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.p-card.old .p-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
}

.p-card.new .p-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--grad-3);
  font-weight: 700;
}

/* ============================================================
   SERVICES / FEATURES GRID
   ============================================================ */
.features-section {
  padding: 2.75rem 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 11, 16, 0.67), rgba(10, 11, 16, 0.8)),
    url("../../images/services (21).webp") center/cover no-repeat;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.f-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}

.f-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 252, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.f-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  opacity: 0;
  transition: opacity .35s ease;
}

.f-card:hover::before {
  opacity: 1;
}

.f-card.featured {
  border-color: rgba(124, 92, 252, 0.35);
  background: linear-gradient(180deg, rgba(124, 92, 252, 0.08), rgba(255, 255, 255, 0.03));
}

.f-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grad-2);
  margin-bottom: 1.2rem;
}

.f-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.f-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 2.75rem 0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: transform .35s var(--ease), border-color .35s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 140, 255, 0.35);
}

.how-step .hs-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: block;
}

.how-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.how-step p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   BRANDS WE SERVICE
   ============================================================ */
.brands-section {
  padding: 2.75rem 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.brand-tile {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transition: transform .3s ease, border-color .3s ease;
}

.brand-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand-tile .bt-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.brand-tile .bt-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--grad-3);
  background: rgba(34, 197, 94, 0.12);
  padding: 0.25em 0.65em;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   GALLERY MASONRY
   ============================================================ */
.gallery-section {
  padding: 2.75rem 0 1.5rem;
}

.gallery-section .container {
  max-width: 1400px;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 1.2rem;
}

.g-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  position: relative;
}

.g-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}

.g-item:hover img {
  transform: scale(1.05);
}

.gallery-note {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  padding: 1.5rem 0 2.75rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

.testi-card .stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
}

.testi-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
}

.testi-person .name {
  font-weight: 700;
  font-size: 0.96rem;
}

.testi-person .role {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 2.75rem 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 11, 16, 0.67), rgba(10, 11, 16, 0.8)),
    url("../../images/services (7).webp") center/cover no-repeat;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 220px;
}

.faq-a p {
  padding-bottom: 1.6rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 65ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 2.75rem 0;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(124, 92, 252, 0.28), rgba(59, 140, 255, 0.22)),
    linear-gradient(180deg, rgba(10, 11, 16, 0.58), rgba(10, 11, 16, 0.7)),
    url("../../images/services (14).webp") center/cover no-repeat;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.c-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.c-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.c-head p {
  color: var(--text);
  opacity: 0.85;
  font-size: 1.05rem;
}

.c-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.c-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.ci-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.ci-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grad-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: block;
}

.ci-item p,
.ci-item address {
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.88;
  line-height: 1.6;
  overflow-wrap: anywhere;
  font-style: normal;
  margin: 0;
}

.ci-item a {
  color: var(--text);
  transition: color .2s ease;
  overflow-wrap: anywhere;
}

.ci-item a:hover {
  color: var(--grad-2);
}

.ci-item address a {
  text-decoration: underline;
  text-decoration-color: var(--card-border);
  text-underline-offset: 3px;
}

.ci-item address a:hover {
  text-decoration-color: var(--grad-2);
}

.c-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-map {
  margin-top: 2.5rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.6rem;
}

.c-map .c-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius-md) - 0.35rem);
  padding-top: 32%;
}

.c-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-col.brand-col .f-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.88;
  margin-top: 1.2rem;
  max-width: 32ch;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.85;
  transition: opacity .25s ease, color .25s ease;
  overflow-wrap: anywhere;
}

.footer-col a:hover {
  color: var(--grad-2);
  opacity: 1;
}

.footer-col li:not(:has(a)) {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.85;
}

.footer-col address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text);
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}

.footer-legal a:hover {
  color: var(--grad-2);
  opacity: 1;
}

/* ============================================================
   MISC & UTILITIES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: transform .3s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem clamp(1.25rem, 4vw, 3rem) 6rem;
}

.legal-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-wrap h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--grad-2);
}

.legal-wrap p,
.legal-wrap li,
.legal-wrap address {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.96rem;
  font-style: normal;
}

.legal-wrap ul {
  padding-left: 1.3rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-wrap a.back {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grad-2);
}

.legal-wrap a.inline {
  color: var(--grad-2);
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-banner {
  position: relative;
  padding: 9rem 0 3.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 92, 252, 0.2), transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(59, 140, 255, 0.16), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.error-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.error-banner > .container > p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 1.6rem;
}

.breadcrumb {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.breadcrumb a {
  color: var(--grad-2);
}

.breadcrumb span {
  margin: 0 0.6em;
}

.error-content {
  padding: 4rem 0 5rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem 0;
}

.error-links a {
  padding: 0.6em 1.4em;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.error-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.error-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Mobile bottom CTA bar (phones only, activated in responsive.css) ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  bottom: calc(0.7rem + env(safe-area-inset-bottom));
  z-index: 1000;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 -10px 40px -15px rgba(0,0,0,0.7);
  overflow: hidden;
}

.mobile-cta-bar>a,
.mobile-cta-bar>button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 56px;
  color: var(--text);
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-cta-bar>a:first-child {
  border-left: none;
}

.mobile-cta-bar svg {
  width: 22px;
  height: 22px;
}

.mobile-cta-bar .mobile-cta-item[href^="https://wa.me"] svg {
  fill: #25D366;
}

.mobile-cta-bar a[href^="tel:"] svg {
  fill: none;
  stroke: var(--amber);
}