/* ═══════════════════════════════════════════════════════
   JetCi Landing — Page-Specific Styles
   ═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   HOME PAGE — Hero Section
   ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 25%, #bbf7d0 55%, #86efac 100%);
}

/* Animated background shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 10s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-10px, 20px) scale(0.95); }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero__content { /* RTL: left is the text, right is the phone */ }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: white;
  border: 1px solid var(--brand-light-2);
  border-radius: var(--border-radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  color: var(--brand-dark);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  animation: slideDown 0.6s ease forwards;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: var(--font-weight-black);
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  animation: slideUp 0.7s 0.1s ease both;
}

.hero__title .highlight {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 0.6s 0.8s ease forwards;
}

@keyframes underline {
  to { transform: scaleX(1); }
}

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

.hero__desc {
  font-size: clamp(var(--font-size-base), 1.8vw, var(--font-size-lg));
  color: var(--gray-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  max-width: 45ch;
  animation: slideUp 0.7s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  animation: slideUp 0.7s 0.3s ease both;
}

.hero__download-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.35s ease both;
}

.hero__download-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  white-space: nowrap;
}

.hero__download-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
  animation: slideUp 0.7s 0.4s ease both;
}

.hero__stat {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--border-radius-lg);
}

.hero__stat-num {
  font-size: clamp(1.4rem, 2.5vw, var(--font-size-3xl));
  font-weight: var(--font-weight-black);
  color: var(--brand-primary);
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slideUp 0.8s 0.15s ease both;
}

.hero__phone-wrap {
  position: relative;
  z-index: 2;
}

/* Real Premium Phone Screen Mockup */
.hero__phone-mockup {
  position: relative;
  width: clamp(270px, 30vw, 310px);
  height: 560px;
  background: #090d16;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2), 0 35px 70px -15px rgba(0, 0, 0, 0.35);
  border: 4px solid #1e293b;
  margin: 0 auto;
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 25;
  color: #0f172a;
}

.phone-time {
  font-size: 11px;
  font-weight: 800;
  font-family: system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

.dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 18px;
  background: #000000;
  border-radius: 20px;
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
}

.mockup-app-header {
  margin-top: 34px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 15;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.mockup-logo {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mockup-wallet-badge {
  background: #ecfdf5;
  color: #059669;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #a7f3d0;
}

.mockup-map {
  position: relative;
  flex: 1;
  background: #f1f5f9;
  overflow: hidden;
}

.map-svg-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.animated-route {
  stroke-dasharray: 8 6;
  animation: routeDash 2.5s linear infinite;
}

@keyframes routeDash {
  to { stroke-dashoffset: -28; }
}

.mockup-pin {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(50%, -50%);
}

.mockup-pin--origin {
  top: 75px;
  right: 60px;
}

.mockup-pin--dest {
  top: 235px;
  right: 195px;
}

.pin-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #0f172a;
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.pin-dot--green { background: #10b981; }
.pin-dot--red   { background: #ef4444; }

.mockup-car {
  position: absolute;
  top: 140px;
  right: 140px;
  z-index: 12;
  font-size: 18px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  animation: carDrive 5s ease-in-out infinite alternate;
}

@keyframes carDrive {
  0%   { transform: translate(60px, -65px) rotate(0deg); }
  50%  { transform: translate(0px, 0px) rotate(-15deg); }
  100% { transform: translate(-55px, 95px) rotate(-30deg); }
}

.mockup-bottom-sheet {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 10px 12px 14px;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.08);
  z-index: 15;
}

.sheet-handle {
  width: 32px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 2px;
  margin: 0 auto 8px;
}

.mockup-services {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.mockup-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mockup-service-item.active {
  border-color: #10b981;
  background: #ecfdf5;
}

.srv-icon {
  font-size: 18px;
}

.srv-info {
  display: flex;
  flex-direction: column;
  margin-right: 8px;
  flex: 1;
}

.srv-info strong {
  font-size: 11px;
  color: #0f172a;
  font-weight: 800;
}

.srv-info small {
  font-size: 9px;
  color: #64748b;
}

.srv-price {
  font-size: 10px;
  font-weight: 800;
  color: #059669;
}

.mockup-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.3);
  cursor: pointer;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Floating Cards — Positioned Safely Around Phone */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
  width: 100%;
}

.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 30;
  max-width: 220px;
}

.hero__float-card--1 {
  top: 8%;
  left: 2%;
  animation: cardFloat1 5s ease-in-out infinite;
}

.hero__float-card--2 {
  bottom: 12%;
  right: 2%;
  animation: cardFloat2 6s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.hero__float-card .fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .hero__float-card {
    display: none;
  }
}

@keyframes cardFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50%       { transform: translate(5px, -10px) rotate(1deg); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(1deg); }
  50%       { transform: translate(-5px, 10px) rotate(-1deg); }
}

.hero__float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__float-card .fc-text strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.hero__float-card .fc-text span {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────
   SERVICES SECTION
   ───────────────────────────────────────────────────── */
.services-section { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-5);
}

.service-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  text-align: center;
  cursor: default;
  transition: transform var(--transition-spring), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
  border-color: var(--brand-primary);
}

.service-card:hover::before { opacity: 0.05; }

.service-card__icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
  display: block;
}

.service-card__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.service-card__fare {
  font-size: var(--font-size-sm);
  color: var(--brand-primary);
  font-weight: var(--font-weight-semi);
  margin-bottom: var(--space-2);
}

.service-card__cap {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.service-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 2px var(--space-2);
  font-size: 11px;
  font-weight: var(--font-weight-semi);
  border-radius: var(--border-radius-full);
}

/* ─────────────────────────────────────────────────────
   HOW IT WORKS SECTION
   ───────────────────────────────────────────────────── */
.how-it-works { background: var(--bg-page); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(to left, var(--brand-primary), var(--accent));
  border-radius: 1px;
}

.step {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-black);
  color: white;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.step__icon {
  font-size: 40px;
  margin-bottom: var(--space-4);
}

.step__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step__desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ─────────────────────────────────────────────────────
   FEATURES HIGHLIGHT SECTION (on home page)
   ───────────────────────────────────────────────────── */
.features-highlight { background: var(--gray-900); }
.features-highlight .section-header h2, .features-highlight h3 { color: white; }
.features-highlight .section-header p { color: var(--gray-400); }

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-5);
}

.bento-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition-spring), border-color var(--transition-base), background var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  background: var(--gray-700);
}

.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }

.bento-card__emoji { font-size: 40px; margin-bottom: var(--space-4); }
.bento-card__title { font-size: var(--font-size-xl); font-weight: var(--font-weight-bold); color: white; margin-bottom: var(--space-3); }
.bento-card__desc  { font-size: var(--font-size-sm); color: var(--gray-400); line-height: var(--line-height-relaxed); }
.bento-card__pill  {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(16,185,129,0.15);
  color: var(--brand-primary-l);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semi);
  margin-top: var(--space-4);
}

/* ─────────────────────────────────────────────────────
   DOWNLOAD SECTION
   ───────────────────────────────────────────────────── */
.download-section {
  background: var(--gradient-brand);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.download-section h2, .download-section p { color: white; }
.download-section p { color: rgba(255,255,255,0.85); max-width: 50ch; margin-inline: auto; margin-bottom: var(--space-8); }

.download-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--border-radius-xl);
  color: white;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all var(--transition-spring);
}

.btn-store:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.btn-store__icon { width: 36px; height: 36px; }
.btn-store__text small { display: block; font-size: 11px; opacity: 0.8; }
.btn-store__text strong { font-size: var(--font-size-lg); }

/* ─────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* ─────────────────────────────────────────────────────
   FEATURES PAGE
   ───────────────────────────────────────────────────── */
.features-page { padding-top: 0; }

.features-nav {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  justify-content: center;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-detail:last-child { border-bottom: none; }
.feature-detail:nth-child(even) .feature-detail__visual { order: -1; }

.feature-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--brand-light);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  margin-bottom: var(--space-4);
}

.feature-detail h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.5rem, 3vw, var(--font-size-4xl));
}

.feature-detail p {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-lg);
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.feature-checklist .check {
  width: 22px;
  height: 22px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-checklist .check::after {
  content: '✓';
  font-size: 12px;
  color: var(--brand-primary);
  font-weight: bold;
}

.feature-detail__visual {
  background: var(--gradient-hero);
  border-radius: var(--border-radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

/* ─────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────── */
.about-stats {
  background: var(--gradient-brand);
  border-radius: var(--border-radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  margin-block: var(--space-16);
}

.about-stats h2 { color: white; text-align: center; margin-bottom: var(--space-10); }

.about-stats .stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.value-card {
  padding: var(--space-6);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background: white;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.value-card__emoji { font-size: 36px; margin-bottom: var(--space-4); }
.value-card h3 { margin-bottom: var(--space-3); font-size: var(--font-size-xl); }

/* ─────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-alt);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.contact-info-item__label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-item__value {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi);
  color: var(--text-primary);
}

.faq-section { margin-top: var(--space-16); }

/* ─────────────────────────────────────────────────────
   PRIVACY & TERMS PAGES
   ───────────────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--navbar-height) + var(--space-6));
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
}

.legal-toc h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.legal-toc a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  transition: all var(--transition-base);
  border-right: 2px solid transparent;
}

.legal-toc a:hover,
.legal-toc a.active {
  color: var(--brand-primary);
  background: var(--brand-light);
  border-right-color: var(--brand-primary);
}

.legal-content { }

.legal-section {
  margin-bottom: var(--space-12);
  scroll-margin-top: calc(var(--navbar-height) + var(--space-6));
}

.legal-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--brand-light-2);
}

.legal-section p {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
}

.legal-section ul {
  list-style: disc;
  padding-right: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--text-secondary);
}

.legal-section li { line-height: var(--line-height-relaxed); }

.legal-highlight {
  background: var(--brand-light);
  border-right: 4px solid var(--brand-primary);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: var(--space-4) var(--space-5);
  margin-block: var(--space-5);
  color: var(--brand-dark);
  font-size: var(--font-size-sm);
}

.legal-warning {
  background: #fff7ed;
  border-right: 4px solid var(--warning);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: var(--space-4) var(--space-5);
  margin-block: var(--space-5);
  color: #92400e;
  font-size: var(--font-size-sm);
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 1; }
  .bento-card--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__desc { max-width: none; }
  .hero__actions { justify-content: center; }
  .hero__download-row { justify-content: center; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
  .hero__float-card--1 { display: none; }
  .hero__float-card--2 { display: none; }
  .hero__visual { order: -1; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .features-bento { grid-template-columns: 1fr; }

  .feature-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-detail:nth-child(even) .feature-detail__visual { order: 0; }
  .feature-checklist { text-align: right; }

  .contact-grid { grid-template-columns: 1fr; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero__download-btns { flex-direction: column; align-items: center; }
  .download-buttons { flex-direction: column; align-items: center; }
}
