/* Shareide - Inner Page Styles (Modern V5) */

/* ═══════════════════════════════════════════
   PAGE HERO — Animated Premium
   ═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, #FFFCF0 0%, #FFFFFF 40%, #F4F7FF 100%);
  padding: 148px 0 110px;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #EEF2F7;

  /* Per-page accent color (overridden by modifier classes) */
  --ph-accent: rgba(245,184,0,0.38);
  --ph-accent-2: rgba(59,130,246,0.20);
  --ph-accent-3: rgba(16,185,129,0.15);
}

/* Dot grid pattern for premium depth */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Gold shimmer line at bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), rgba(255,170,0,0.6), transparent);
  border-radius: 3px;
  animation: line-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes line-shimmer {
  0%, 100% { width: 180px; opacity: 0.7; }
  50% { width: 340px; opacity: 1; }
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

/* ── Injected Background Layer ── */
.ph-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ── Blobs ── */
.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.page-hero.ph-ready .ph-blob {
  opacity: 1;
}

.ph-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 40% 40%, var(--ph-accent), transparent 70%);
  top: -180px; right: -100px;
  animation: ph-float-a 10s ease-in-out infinite;
}

.ph-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle at 60% 60%, var(--ph-accent-2), transparent 70%);
  bottom: -120px; left: -60px;
  animation: ph-float-b 13s ease-in-out infinite;
  animation-delay: -4s;
}

.ph-blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 50% 50%, var(--ph-accent-3), transparent 70%);
  top: 20%; right: 8%;
  animation: ph-float-c 11s ease-in-out infinite;
  animation-delay: -7s;
}

@keyframes ph-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(-20px, 25px) scale(1.04); }
  60% { transform: translate(15px, -15px) scale(0.97); }
}
@keyframes ph-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(18px, -22px) scale(1.05); }
  70% { transform: translate(-12px, 14px) scale(0.96); }
}
@keyframes ph-float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 18px) scale(1.06); }
}

/* ── Decorative Rings ── */
.ph-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,184,0,0.1);
  animation: ph-ring-spin 18s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.page-hero.ph-ready .ph-ring { opacity: 1; }

.ph-ring--1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-color: rgba(245,184,0,0.18);
  animation: ph-ring-spin 22s linear infinite;
}
.ph-ring--2 {
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-color: rgba(245,184,0,0.12);
  border-style: dashed;
  animation: ph-ring-spin 16s linear infinite reverse;
}
@keyframes ph-ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Dot grid ── */
.ph-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.048) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 90%);
}

/* ── Per-page accent colour variants ── */
.page-hero--safety   { --ph-accent: rgba(236,72,153,0.30); --ph-accent-2: rgba(245,184,0,0.25); --ph-accent-3: rgba(239,68,68,0.14); }
.page-hero--drive    { --ph-accent: rgba(245,184,0,0.42); --ph-accent-2: rgba(16,185,129,0.22); --ph-accent-3: rgba(245,184,0,0.16); }
.page-hero--carpool  { --ph-accent: rgba(245,184,0,0.38); --ph-accent-2: rgba(16,185,129,0.22); --ph-accent-3: rgba(59,130,246,0.14); }
.page-hero--download { --ph-accent: rgba(245,184,0,0.38); --ph-accent-2: rgba(59,130,246,0.22); --ph-accent-3: rgba(16,185,129,0.16); }
.page-hero--support  { --ph-accent: rgba(245,184,0,0.35); --ph-accent-2: rgba(59,130,246,0.22); --ph-accent-3: rgba(139,92,246,0.14); }
.page-hero--cities   { --ph-accent: rgba(245,184,0,0.38); --ph-accent-2: rgba(20,184,166,0.22); --ph-accent-3: rgba(59,130,246,0.14); }
.page-hero--loyalty  { --ph-accent: rgba(245,184,0,0.42); --ph-accent-2: rgba(139,92,246,0.22); --ph-accent-3: rgba(245,184,0,0.12); }
.page-hero--passenger{ --ph-accent: rgba(59,130,246,0.26); --ph-accent-2: rgba(245,184,0,0.35); --ph-accent-3: rgba(16,185,129,0.14); }
.page-hero--fleet    { --ph-accent: rgba(245,184,0,0.42); --ph-accent-2: rgba(234,88,12,0.22); --ph-accent-3: rgba(16,185,129,0.14); }
.page-hero--blog     { --ph-accent: rgba(245,184,0,0.35); --ph-accent-2: rgba(139,92,246,0.22); --ph-accent-3: rgba(59,130,246,0.12); }
.page-hero--company  { --ph-accent: rgba(245,184,0,0.38); --ph-accent-2: rgba(139,92,246,0.22); --ph-accent-3: rgba(245,184,0,0.12); }
.page-hero--howitworks{ --ph-accent: rgba(245,184,0,0.38); --ph-accent-2: rgba(59,130,246,0.22); --ph-accent-3: rgba(16,185,129,0.16); }
.page-hero--form     { --ph-accent: rgba(245,184,0,0.42); --ph-accent-2: rgba(16,185,129,0.22); --ph-accent-3: rgba(59,130,246,0.14); }

/* ── Background icon watermark ── */
.ph-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(245,184,0,0.07);
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s ease;
  user-select: none;
}
.page-hero.ph-ready .ph-watermark { opacity: 1; }

/* ── Floating feature chips ── */
.ph-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ph-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(245,184,0,0.22);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #0A0A1A;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;
}
.ph-chip i { color: #d97706; font-size: 13px; }
.page-hero.ph-ready .ph-chip { opacity: 1; transform: translateY(0); }
.ph-chip--1 { left: 3.5%; top: 26%; transition-delay: 0.45s; animation: chip-float-1 5.2s ease-in-out infinite 0.45s; }
.ph-chip--2 { left: 4%;   bottom: 24%; transition-delay: 0.65s; animation: chip-float-2 6.8s ease-in-out infinite 0.65s; }
.ph-chip--3 { right: 3.5%; top: 32%; transition-delay: 0.85s; animation: chip-float-3 5.8s ease-in-out infinite 0.85s; }
@keyframes chip-float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes chip-float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes chip-float-3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

@media (max-width: 900px) {
  .ph-chip { display: none; }
  .ph-watermark { font-size: 130px; right: -3%; opacity: 0; }
  .page-hero.ph-ready .ph-watermark { opacity: 1; }
}
@media (max-width: 600px) {
  .ph-watermark { display: none; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 8px 20px;
  background: rgba(245,184,0,0.08);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  animation: hero-in 0.7s 0s both cubic-bezier(0.23, 1, 0.32, 1);
}
.breadcrumb a { color: #64748B; transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: #CBD5E1; font-size: 10px; }
.breadcrumb__current { color: #d97706; font-weight: 700; }

/* ── Title ── */
.page-hero__title {
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 900;
  color: #080818;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  animation: hero-in 0.8s 0.12s both cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Desc ── */
.page-hero__desc {
  font-size: 18.5px;
  color: #4E5D6E;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: hero-in 0.8s 0.22s both cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Actions ── */
.page-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-in 0.8s 0.34s both cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Override outline button for light hero */
.page-hero .btn--outline {
  color: #0A0A1A;
  border-color: #D1D5DB;
  background: transparent;
}
.page-hero .btn--outline:hover {
  border-color: var(--primary);
  color: #0A0A1A;
  background: rgba(245,184,0,0.06);
  transform: translateY(-2px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ph-blob, .ph-ring, .ph-chip, .page-hero::after,
  .page-hero__title, .page-hero__desc,
  .page-hero__actions, .breadcrumb { animation: none !important; }
  .page-hero.ph-ready .ph-blob,
  .page-hero.ph-ready .ph-ring,
  .page-hero.ph-ready .ph-chip,
  .page-hero.ph-ready .ph-watermark { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 75px; min-height: auto; }
  .page-hero__title { font-size: clamp(26px, 6vw, 40px); letter-spacing: -1px; }
  .page-hero__desc { font-size: 15px; margin-bottom: 28px; }
  .ph-blob--1 { width: 340px; height: 340px; }
  .ph-blob--2 { width: 260px; height: 260px; }
  .ph-blob--3 { display: none; }
  .ph-ring--1, .ph-ring--2 { display: none; }
}

@media (max-width: 480px) {
  .page-hero { padding: 110px 0 60px; }
  .page-hero__title { font-size: clamp(22px, 6vw, 32px); letter-spacing: -0.8px; }
  .page-hero__desc { font-size: 14px; }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .breadcrumb { font-size: 12px; padding: 7px 16px; }
}

/* ═══════════════════════════════════════════
   STORY SECTION — How It All Started
   ═══════════════════════════════════════════ */

/* Origin insight quote box */
.origin-quote {
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(245,184,0,0.06), rgba(245,184,0,0.02));
  border: 1.5px solid rgba(245,184,0,0.22);
  border-left: 5px solid var(--primary);
  border-radius: 20px;
  position: relative;
}

.origin-quote__mark {
  font-size: 28px;
  color: rgba(245,184,0,0.35);
  margin-bottom: 12px;
  line-height: 1;
}

.origin-quote__text {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #0A0A1A;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.origin-quote__text strong {
  color: #d97706;
  font-weight: 800;
}

.origin-quote__sub {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

/* Problem → Solution cards */
.origin-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.origin-problem {
  background: #fff;
  border: 1.5px solid #EEF2F7;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.origin-problem:hover {
  border-color: rgba(245,184,0,0.3);
  box-shadow: 0 12px 40px rgba(245,184,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.origin-problem__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: rgba(245,184,0,0.1);
  color: #d97706;
  flex-shrink: 0;
}
.origin-problem__icon--red,
.origin-problem__icon--pink,
.origin-problem__icon--blue  { background: rgba(245,184,0,0.08); color: #D4900A; }

.origin-problem__arrow {
  display: none; /* used only on wider layout */
}

.origin-problem__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0A0A1A;
  margin: 0 0 8px;
}

.origin-problem__body p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

.origin-problem__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.origin-problem__label.problem {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
}
.origin-problem__label.solve {
  background: rgba(245,184,0,0.1);
  color: #D4900A;
}

.origin-problem__solve {
  padding: 14px 16px;
  background: rgba(5,150,105,0.05);
  border: 1px solid rgba(5,150,105,0.15);
  border-radius: 12px;
  margin-top: auto;
}
.origin-problem__solve strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0A0A1A;
  margin-top: 4px;
  line-height: 1.4;
}

/* Story split: image left, pillars right */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-split__visual {
  position: relative;
}

.story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.story-img-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.07);
}

/* Floating badges on the image */
.story-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,184,0,0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #0A0A1A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: badge-float 4s ease-in-out infinite;
}

.story-badge i { color: #d97706; font-size: 13px; }
.story-badge--tl { top: -14px; left: 20px; animation-delay: 0s; }
.story-badge--br { bottom: -14px; right: 20px; animation-delay: -1.5s; }
.story-badge--bl { bottom: 24px; left: -14px; animation-delay: -3s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Story content side */
.story-split__heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0A0A1A;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.story-split__text {
  font-size: 15.5px;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 992px) {
  .origin-problems { grid-template-columns: 1fr; gap: 14px; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .story-badge--bl { display: none; }
}

@media (max-width: 640px) {
  .origin-quote { padding: 24px 22px; }
  .origin-quote__text { font-size: 17px; }
  .story-badge--tl, .story-badge--br { font-size: 11px; padding: 6px 12px; }
}

/* ========== ABOUT PILLARS ========== */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid #EEF2F7;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-pillar:hover {
  border-color: rgba(245,184,0,0.3);
  box-shadow: 0 8px 24px rgba(245,184,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.about-pillar__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(245,184,0,0.1);
  color: #d97706;
  transition: all 0.3s ease;
}
.about-pillar:hover .about-pillar__icon { transform: scale(1.08); }

.about-pillar__icon--pink,
.about-pillar__icon--blue,
.about-pillar__icon--green,
.about-pillar__icon--orange,
.about-pillar__icon--purple { background: rgba(245,184,0,0.08); color: #D4900A; }

.about-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A1A;
  margin-bottom: 2px;
}
.about-pillar span {
  display: block;
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .about-pillar { padding: 14px 16px; gap: 12px; }
  .about-pillar__icon { width: 40px; height: 40px; font-size: 16px; border-radius: 12px; }
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 108px 0;
  background: #ffffff;
  position: relative;
}

/* Subtle gold separator at top */
.content-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,184,0,0.35), transparent);
  border-radius: 2px;
  pointer-events: none;
}

.content-section--alt {
  background: linear-gradient(180deg, #F7F9FD 0%, #F2F5FA 100%);
  border-top: 1px solid #E8EDF5;
  border-bottom: 1px solid #E8EDF5;
}

.content-section--alt::before {
  background: linear-gradient(90deg, transparent, rgba(245,184,0,0.25), transparent);
}

.content-section--dark {
  background: #09090B;
  color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .content-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .content-section { padding: 50px 0; }
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .two-col--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .two-col { gap: 35px; }
}

@media (max-width: 480px) {
  .two-col { gap: 25px; }
}

/* ========== THREE COLUMN GRID ========== */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .three-col { grid-template-columns: 1fr; }
}

/* ========== FOUR COLUMN GRID ========== */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .four-col { grid-template-columns: 1fr; }
}

/* ========== INFO CARDS ========== */
.info-card {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

/* Top accent line — always subtly visible */
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(255,140,0,0.5), transparent);
  border-radius: 24px 24px 0 0;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* Left accent */
.info-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), rgba(255,140,0,0.2));
  border-radius: 0 4px 4px 0;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.info-card:hover::before { opacity: 1; }
.info-card:hover::after  { opacity: 1; }

.info-card:hover {
  border-color: rgba(245,184,0,0.22);
  transform: translateY(-8px);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.06),
    0 24px 56px rgba(0,0,0,0.06),
    0 0 0 1px rgba(245,184,0,0.12),
    0 0 30px rgba(245,184,0,0.06);
}

.info-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.13), rgba(245,184,0,0.05));
  border-radius: 20px;
  color: #C47B00;
  font-size: 26px;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(245,184,0,0.1);
}

.info-card:hover .info-card__icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(245,184,0,0.22), rgba(245,184,0,0.1));
  box-shadow: 0 8px 24px rgba(245,184,0,0.2);
}

.info-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0A0A1A;
  letter-spacing: -0.01em;
}

.info-card__text {
  font-size: 14.5px;
  color: #5A6A7A;
  line-height: 1.75;
}

@media (max-width: 480px) {
  .info-card {
    padding: 25px 20px;
  }
  .info-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .info-card__title { font-size: 17px; }
  .info-card__text { font-size: 13px; }
}

/* ========== STAT CARDS ========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card:hover {
  border-color: rgba(245,184,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.stat-card__number {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary, #F5B800);
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 992px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 22px 14px; }
  .stat-card__number { font-size: 28px; }
  .stat-card__label { font-size: 12px; }
}

/* ========== TAB SWITCHER ========== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card, #fff);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245,184,0,0.2);
}

.tab-btn:hover:not(.active) {
  border-color: var(--primary);
  color: var(--text);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .tabs { gap: 8px; margin-bottom: 35px; flex-wrap: wrap; }
  .tab-btn { padding: 10px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .tabs { gap: 6px; margin-bottom: 25px; }
  .tab-btn { padding: 8px 16px; font-size: 12px; }
}

/* ========== PROCESS STEPS ========== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connector line */
.process-steps::before {
  content: '';
  position: absolute;
  left: 28px; /* center of 56px number circle */
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, #F5B800 0%, rgba(245,184,0,0.15) 100%);
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 28px 28px 20px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
  position: relative;
  z-index: 1;
}

.process-step:last-child { margin-bottom: 0; }

.process-step:hover {
  border-color: rgba(245,184,0,0.25);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.06),
    0 0 0 1px rgba(245,184,0,0.12),
    0 0 20px rgba(245,184,0,0.05);
  transform: translateX(8px);
}

.process-step__number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5B800 0%, #E8A500 100%);
  color: #000;
  font-size: 20px;
  font-weight: 900;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(245,184,0,0.35), 0 2px 6px rgba(245,184,0,0.2);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.process-step__content {
  padding-top: 4px;
}

.process-step__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0A0A1A;
  letter-spacing: -0.02em;
}

.process-step__content p {
  font-size: 14.5px;
  color: #5A6A7A;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .process-steps::before { left: 22px; }
  .process-step { padding: 22px 20px; gap: 18px; margin-bottom: 12px; }
  .process-step__number { width: 44px; height: 44px; min-width: 44px; font-size: 17px; border-radius: 13px; }
  .process-step__content h3 { font-size: 16px; }
  .process-step__content p { font-size: 13.5px; }
}

@media (max-width: 480px) {
  .process-steps::before { display: none; }
  .process-step { padding: 18px 16px; gap: 14px; margin-bottom: 10px; }
  .process-step__number { width: 40px; height: 40px; min-width: 40px; font-size: 15px; border-radius: 11px; }
}

/* ========== SAFETY STAT CARDS ========== */
.safety__stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.safety__stat-card {
  text-align: center;
  padding: 22px 16px;
  background: #fff;
  border: 1.5px solid rgba(245,184,0,0.22);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(245,184,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.safety__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245,184,0,0.12), 0 2px 6px rgba(0,0,0,0.05);
}

.safety__stat-value {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #F5B800;
  margin-bottom: 5px;
}

.safety__stat-text {
  font-size: 11px;
  color: #64748B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== PHOTO GRID ========== */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-grid-2__item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.photo-grid-2__item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.photo-grid-2__item:hover img {
  transform: scale(1.06);
}

/* Safety illustration */
.safety__illustration {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.07);
  display: block;
  margin-bottom: 16px;
}

/* ========== VALUES GRID ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 44px 32px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245,184,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::after { opacity: 1; }

.value-card:hover {
  border-color: rgba(245,184,0,0.22);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06), 0 24px 56px rgba(0,0,0,0.06), 0 0 0 1px rgba(245,184,0,0.1);
}

.value-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.13), rgba(245,184,0,0.05));
  border-radius: 22px;
  color: #C47B00;
  font-size: 28px;
  margin: 0 auto 22px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(245,184,0,0.1);
}

.value-card:hover .value-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(245,184,0,0.2);
}

.value-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0A0A1A;
  letter-spacing: -0.01em;
}

.value-card__text {
  font-size: 14.5px;
  color: #5A6A7A;
  line-height: 1.75;
}

@media (max-width: 992px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 20px; }
  .value-card__icon { width: 55px; height: 55px; font-size: 22px; }
  .value-card__title { font-size: 17px; }
}

/* ========== CITY CARDS ========== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.city-card:hover {
  border-color: rgba(245,184,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.city-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(245,184,0,0.04));
  border-radius: 14px;
  color: var(--primary-dark);
  font-size: 20px;
  margin: 0 auto 15px;
}

.city-card__name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.city-card__province {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-bottom: 10px;
}

.city-card__info {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.city-card__info--active {
  color: #10B981;
}

.city-card__info--active i {
  font-size: 6px;
  vertical-align: middle;
  margin-right: 4px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.city-card--featured {
  background: rgba(245,184,0,0.04);
  border-color: rgba(245,184,0,0.3);
}

.city-card--featured .city-card__icon {
  background: linear-gradient(135deg, rgba(245,184,0,0.2), rgba(245,184,0,0.08));
}

/* Coming Soon Tags */
.city-coming-soon-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--bg-card, #fff);
  border: 1px dashed rgba(245,184,0,0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.city-coming-soon-tag:hover {
  border-color: rgba(245,184,0,0.5);
  color: var(--primary);
  background: rgba(245,184,0,0.04);
}

/* Route Cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  padding: 28px 24px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.route-card:hover {
  border-color: rgba(245,184,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 20px 40px rgba(0,0,0,0.06);
}

.route-card__cities {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.route-card__city {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.route-card__arrow {
  color: var(--primary);
  font-size: 14px;
}

.route-card__detail {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.route-card__detail span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.route-card__detail span i {
  color: var(--primary);
  margin-right: 5px;
  font-size: 11px;
}

@media (max-width: 992px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .city-card { padding: 22px 14px; }
  .city-card__name { font-size: 15px; }
  .city-card__info { font-size: 11px; }
  .city-card__province { font-size: 11px; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-card { padding: 22px 18px; }
}

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover {
  border-color: rgba(245,184,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.blog-card__image {
  height: 220px;
  background: linear-gradient(135deg, #F6F8FB 0%, #EDF0F5 50%, rgba(245,184,0,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.blog-card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  background: rgba(245,184,0,0.9);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.blog-card__content {
  padding: 24px;
}

.blog-card__date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.4;
}

.blog-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-card__link:hover {
  gap: 10px;
}

@media (max-width: 992px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__content { padding: 18px; }
  .blog-card__title { font-size: 16px; }
  .blog-card__image { height: 170px; }
}

/* ========== BLOG V2 - Featured + Cards ========== */
.blog-featured {
  position: relative;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px 44px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F5B800, #D4900A);
}

.blog-featured:hover {
  border-color: rgba(245,184,0,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.blog-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(245,184,0,0.1);
  color: var(--primary-dark, #D4900A);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.blog-featured__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-featured__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 700px;
}

.blog-featured__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 20px;
}

.blog-featured__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-featured__meta span {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-featured__meta span i {
  color: var(--primary);
  font-size: 12px;
}

/* Blog Grid V2 */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card-v2 {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.blog-card-v2:hover {
  border-color: rgba(245,184,0,0.2);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 20px 40px rgba(0,0,0,0.06);
}

.blog-card-v2__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(245,184,0,0.04));
  border-radius: 14px;
  color: var(--primary-dark, #D4900A);
  font-size: 20px;
  margin-bottom: 18px;
}

.blog-card-v2__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card-v2__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-v2__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card-v2__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.blog-card-v2__footer span {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-v2__footer span i {
  color: var(--primary);
  font-size: 11px;
}

@media (max-width: 992px) {
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { padding: 36px 30px; }
}

@media (max-width: 576px) {
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .blog-featured { padding: 28px 22px; }
  .blog-featured__title { font-size: 20px; }
  .blog-card-v2 { padding: 24px 20px; }
}

/* ========== FAQ ========== */
.faq-search {
  max-width: 520px;
  margin: 0 auto 50px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 18px 25px 18px 55px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.faq-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.1);
}

.faq-search i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 16px;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card, #fff);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.faq-cat-btn.active {
  background: var(--primary, #F5B800);
  color: var(--black);
  border-color: var(--primary, #F5B800);
  font-weight: 700;
}

.faq-cat-btn:hover:not(.active) {
  border-color: var(--primary);
}

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

.faq-item {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245,184,0,0.15);
  box-shadow: 0 4px 16px rgba(245,184,0,0.06);
}

.faq-item.active {
  border-color: rgba(245,184,0,0.3);
  box-shadow: 0 4px 16px rgba(245,184,0,0.06);
  background: linear-gradient(135deg, rgba(245,184,0,0.02), transparent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  gap: 15px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

.faq-question i {
  color: var(--primary-dark);
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer__inner {
  padding: 0 25px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-search { margin-bottom: 35px; }
  .faq-search input { padding: 14px 20px 14px 48px; font-size: 14px; }
  .faq-categories { margin-bottom: 30px; }
  .faq-cat-btn { padding: 8px 16px; font-size: 12px; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .faq-answer__inner { padding: 0 18px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
  .faq-categories { gap: 6px; }
  .faq-cat-btn { padding: 7px 14px; font-size: 11px; }
  .faq-search { margin-bottom: 30px; }
  .faq-search input { padding: 12px 16px 12px 44px; font-size: 13px; }
  .faq-question { padding: 14px 15px; font-size: 14px; gap: 10px; }
  .faq-answer__inner { padding: 0 15px 14px; font-size: 13px; }
}

/* ========== CONTACT FORM ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,184,0,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 14px;
  }
  .form-group label { font-size: 13px; }
}

/* ========== TICKET LOOKUP ========== */
.ticket-lookup {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl, 20px);
}

.ticket-lookup h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ticket-lookup p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.ticket-lookup .form-group {
  text-align: left;
}

/* ========== LEGAL CONTENT ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg, 16px);
  padding: 25px 30px;
  margin-bottom: 40px;
}

.legal-toc h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 20px;
}

.legal-toc li {
  padding: 6px 0;
}

.legal-toc a {
  font-size: 14px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.legal-toc a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
  padding-top: 20px;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.legal-section li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 3px 0;
}

.legal-updated {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ========== TIER CARDS (Loyalty) ========== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tier-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
  border-color: rgba(245,184,0,0.15);
}

.tier-card--featured {
  border-color: var(--primary);
  background: rgba(245,184,0,0.04);
  box-shadow: 0 0 0 1px rgba(245,184,0,0.15), 0 8px 24px rgba(245,184,0,0.08);
}

.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--primary, #F5B800);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.tier-card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  border-radius: 50%;
}

.tier-card__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.tier-card__range {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tier-card__perks {
  text-align: left;
}

.tier-card__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.tier-card__perk i {
  color: var(--primary, #F5B800);
  font-size: 12px;
}

@media (max-width: 992px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card { padding: 28px 20px; }
  .tier-card__name { font-size: 18px; }
}

/* ========== DOWNLOAD PAGE ========== */
.download-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.download-app-card {
  text-align: center;
  padding: 48px 36px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.download-app-card:hover {
  border-color: rgba(245,184,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.download-app-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.12), rgba(245,184,0,0.04));
  border-radius: 24px;
  color: var(--primary-dark);
  font-size: 30px;
  margin: 0 auto 22px;
}

.download-app-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.download-app-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .download-apps { grid-template-columns: 1fr; gap: 24px; max-width: 500px; }
  .download-app-card { padding: 35px 28px; }
  .download-app-card__icon { width: 65px; height: 65px; font-size: 26px; }
  .download-app-card__title { font-size: 20px; }
}

@media (max-width: 480px) {
  .download-apps { gap: 18px; }
  .download-app-card { padding: 28px 20px; }
  .download-app-card__icon { width: 55px; height: 55px; font-size: 22px; border-radius: 16px; }
  .download-app-card__title { font-size: 18px; }
  .download-app-card__desc { font-size: 13px; margin-bottom: 20px; }
}

/* ========== REQUIREMENTS LIST ========== */
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  border-color: rgba(245,184,0,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.requirement-item i {
  color: var(--primary, #F5B800);
  font-size: 16px;
  min-width: 20px;
}

.requirement-item span {
  font-size: 15px;
  color: var(--text);
}

/* ========== EARNINGS CALCULATOR ========== */
.earnings-calc {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl, 20px);
  text-align: center;
}

.earnings-calc h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.earnings-calc p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.earnings-calc__result {
  padding: 24px;
  background: linear-gradient(135deg, rgba(245,184,0,0.08), rgba(245,184,0,0.03));
  border: 1px solid rgba(245,184,0,0.15);
  border-radius: var(--radius-lg, 16px);
  margin-top: 20px;
}

.earnings-calc__amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary, #F5B800);
}

.earnings-calc__period {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .earnings-calc { padding: 28px 20px; }
  .earnings-calc h3 { font-size: 20px; }
  .earnings-calc__amount { font-size: 34px; }
  .ticket-lookup { padding: 28px 20px; }
}

/* ========== MAP VISUAL ========== */
.map-visual {
  text-align: center;
  padding: 40px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl, 20px);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.map-visual i {
  font-size: 60px;
  color: var(--primary);
}

.map-visual p {
  font-size: 16px;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .map-visual { padding: 25px; min-height: 280px; }
  .map-visual i { font-size: 45px; }
  .map-visual p { font-size: 14px; }
  .legal-toc { padding: 18px 20px; }
  .legal-section h2 { font-size: 20px; }
  .legal-section h3 { font-size: 16px; }
  .legal-section p, .legal-section li { font-size: 14px; }
}

/* ========== IMAGE BANNER ========== */
.img-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.img-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.img-banner__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 30px 25px 25px;
}

.img-banner__overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.img-banner__overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0;
}

.img-banner--side-overlay img {
  aspect-ratio: 16 / 6;
}

@media (max-width: 768px) {
  .img-banner--side-overlay img { aspect-ratio: 16 / 9; }
  .img-banner--side-overlay > div[style] { padding: 25px !important; }
  .img-banner--side-overlay h3 { font-size: 22px !important; }
  .img-banner img { aspect-ratio: 16 / 8; }
  .img-banner__overlay h3 { font-size: 20px; }
  .img-banner__overlay p { font-size: 14px; }
  .img-banner__overlay { padding: 22px 18px 18px; }
}

@media (max-width: 480px) {
  .img-banner--side-overlay img { aspect-ratio: 4 / 3; }
  .img-banner--side-overlay > div[style] { padding: 18px !important; }
  .img-banner--side-overlay h3 { font-size: 18px !important; }
  .img-banner--side-overlay p { font-size: 14px !important; }
  .img-banner img { aspect-ratio: 4 / 3; }
  .img-banner__overlay { padding: 18px 14px 14px; }
  .img-banner__overlay h3 { font-size: 17px; }
  .img-banner__overlay p { font-size: 13px; }
}

/* ========== IMAGE GRIDS ========== */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.img-grid-2--wide {
  grid-template-columns: 2fr 1fr;
}

.img-grid-2__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.img-grid-2__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.img-grid-2__item:hover img {
  transform: scale(1.03);
}

.img-grid-2__item--contain img {
  object-fit: contain;
  background: var(--bg-card, #fff);
  padding: 20px;
}

.img-grid-2__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 22px 18px 18px;
}

.img-grid-2__overlay h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.img-grid-2__overlay h3 i {
  color: var(--primary);
  margin-right: 8px;
}

.img-grid-2__overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
}

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

.img-grid-3__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.img-grid-3__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.img-grid-3__item:hover img {
  transform: scale(1.05);
}

.img-grid-3__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 20px 15px 15px;
}

.img-grid-3__overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.img-grid-3__overlay p i {
  color: var(--primary);
  margin-right: 6px;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.photo-grid-2__item {
  border-radius: 12px;
  overflow: hidden;
}

.photo-grid-2__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* ========== STORY IMAGE ========== */
.story-image {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ========== SAFETY STAT CARDS ========== */
.safety__stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.safety__stat-card {
  text-align: center;
  padding: 22px 16px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 16px;
}

.safety__stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary, #F5B800);
  margin-bottom: 4px;
}

.safety__stat-text {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.safety__illustration {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}

/* ========== DRIVE CTA IMAGE ========== */
.drive-cta__image {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
  .drive-cta__image { max-width: 200px; margin: 20px auto; }
}

/* ========== APP SCREENSHOTS ========== */
.app-screens {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.app-screen {
  width: 200px;
  background: #000;
  border-radius: 32px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-screen:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 24px rgba(245,184,0,0.06);
}

.app-screen__inner {
  background: #111;
  border-radius: 24px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

@media (max-width: 480px) {
  .app-screen { width: 150px; border-radius: 22px; padding: 6px; }
  .app-screen__inner { min-height: 260px; border-radius: 18px; font-size: 12px; }
}

/* ========== IMAGE RESPONSIVE ========== */
@media (max-width: 992px) {
  .img-grid-2--wide { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .img-grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .img-grid-2--wide { grid-template-columns: 1fr; }
  .img-grid-2__item img { aspect-ratio: 16 / 8; }
  .img-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .img-grid-3__item img { aspect-ratio: 16 / 9; }
  .photo-grid-2__item img { aspect-ratio: 16 / 9; }
  .story-image img { aspect-ratio: 16 / 8; }
  .safety__stat-value { font-size: 24px; }
}

@media (max-width: 480px) {
  .img-grid-2__item img { aspect-ratio: 4 / 3; }
  .img-grid-2__overlay h3 { font-size: 16px; }
  .img-grid-2__overlay p { font-size: 13px; }
  .img-grid-3__item img { aspect-ratio: 4 / 3; }
  .img-grid-3__overlay p { font-size: 13px; }
  .photo-grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .photo-grid-2__item img { aspect-ratio: 4 / 3; }
  .story-image img { aspect-ratio: 4 / 3; }
  .safety__stat-card { padding: 18px 12px; }
  .safety__stat-value { font-size: 22px; }
  .safety__stat-text { font-size: 11px; }
  .requirement-item { padding: 12px 14px; gap: 12px; }
  .requirement-item span { font-size: 13px; }
}

/* ========== INLINE STYLE MOBILE OVERRIDES ========== */
@media (max-width: 768px) {
  .two-col h3[style*="font-size"],
  .content-section h3[style*="font-size"],
  .content-section--alt h3[style*="font-size"] {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  [style*="font-size: 60px"] { font-size: 42px !important; }
  [style*="font-size: 36px"] { font-size: 28px !important; }
  [style*="padding: 40px"] { padding: 28px 20px !important; }
}

@media (max-width: 480px) {
  .two-col h3[style*="font-size"],
  .content-section h3[style*="font-size"],
  .content-section--alt h3[style*="font-size"] {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }
  [style*="font-size: 60px"] { font-size: 36px !important; }
  [style*="font-size: 36px"] { font-size: 24px !important; }
  [style*="padding: 40px"] { padding: 22px 16px !important; }
  [style*="display: flex"][style*="gap: 15px"] { gap: 10px !important; }
}


/* ═══════════════════════════════════════════
   ABOUT PAGE — Mission/Vision/Promise Cards
   ═══════════════════════════════════════════ */
.about-mvp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-mvp__card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light, #eee);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-mvp__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: rgba(245,184,0,0.3);
}

.about-mvp__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(245,184,0,0.08);
  border-radius: 16px;
  font-size: 22px;
  color: #F5B800;
}

.about-mvp__card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text, #111);
}

.about-mvp__card p {
  font-size: 15px;
  color: var(--text-secondary, #666);
  line-height: 1.7;
}

/* Founder Quote Block */
.about-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light, #eee);
  border-radius: 24px;
  position: relative;
}

.about-quote__icon {
  font-size: 40px;
  color: rgba(245,184,0,0.2);
  margin-bottom: 20px;
}

.about-quote blockquote {
  font-size: 19px;
  font-weight: 600;
  color: var(--text, #111);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.about-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.about-quote__avatar {
  width: 48px;
  height: 48px;
  background: #F5B800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.about-quote__author strong {
  display: block;
  font-size: 15px;
  color: var(--text, #111);
}

.about-quote__author span {
  font-size: 13px;
  color: var(--text-secondary, #666);
}

@media (max-width: 768px) {
  .about-mvp { grid-template-columns: 1fr; gap: 16px; }
  .about-mvp__card { padding: 28px 24px; }
  .about-quote { padding: 32px 24px; }
  .about-quote blockquote { font-size: 16px; }
}


/* ═══════════════════════════════════════════
   SAFETY PAGE — Visual Stats Grid
   ═══════════════════════════════════════════ */
.safety-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.safety-visual-grid__card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light, #eee);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.safety-visual-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(245,184,0,0.3);
}

.safety-visual-grid__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(245,184,0,0.08);
  border-radius: 14px;
  font-size: 20px;
  color: #F5B800;
}

.safety-visual-grid__card strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #F5B800;
  margin-bottom: 4px;
}

.safety-visual-grid__card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary, #666);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .safety-visual-grid { gap: 12px; }
  .safety-visual-grid__card { padding: 24px 16px; }
  .safety-visual-grid__card strong { font-size: 22px; }
}

/* Force hero content visible immediately */
.page-hero [data-animate] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
