:root {
  --primary: #7a054a;
  --primary-dark: #5a0336;
  --primary-light: #9a1560;
  --accent: #34d399;
  --accent-dark: #10b981;
  --bg: #fefffa;
  --bg-section: #f7f7f7;
  --bg-card: #ffffff;
  --text: #7a054a;
  --text-body: #4a3040;
  --text-muted: #8a6070;
  --border: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(122, 5, 74, 0.08);
  --shadow-hover: 0 12px 40px rgba(122, 5, 74, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--primary); line-height: 1.2; font-weight: 600; }
.container { width: min(1140px, 92vw); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-section); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-head .ar { font-size: 1rem; margin-top: 0.5rem; direction: rtl; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 600; color: var(--accent-dark); margin-bottom: 0.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.35s var(--ease);
}
.btn-accent { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }

/* Top bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: 1280px; margin: 0 auto; padding: 0.4rem 4vw;
}
.top-bar-contact { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; }
.top-bar-contact a { color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.top-bar-contact a:hover { color: var(--accent); }
.top-bar-sep { opacity: 0.35; user-select: none; }

/* Ticker */
.ticker { background: var(--primary); color: var(--white); overflow: hidden; font-size: 0.8rem; padding: 0.45rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker-track span { white-space: nowrap; padding-right: 4rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(254, 255, 250, 0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: padding 0.3s var(--ease), box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 4vw; max-width: 1280px; margin: 0 auto; }
.logo img { height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { color: var(--text); font-weight: 500; font-size: 0.9rem; position: relative; }
.main-nav a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.main-nav a:not(.btn):hover::after, .main-nav a.active:not(.btn)::after { width: 100%; }
.main-nav a.active { color: var(--primary); font-weight: 600; }
.nav-cta { padding: 0.55rem 1.25rem !important; font-size: 0.85rem !important; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-links--top { margin-top: 0; gap: 0.45rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  color: var(--primary); transition: 0.3s var(--ease);
}
.social-link--top {
  width: 30px; height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}
.social-link:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.social-link--top:hover {
  background: var(--accent); color: var(--primary-dark); border-color: var(--accent);
}
.nav-social-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); transition: 0.3s; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media video { opacity: 0; transition: opacity 1s var(--ease); filter: brightness(0.75) saturate(0.85); }
.hero-media video.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(90,3,54,0.88) 0%, rgba(122,5,74,0.78) 45%, rgba(90,3,54,0.82) 100%);
  z-index: 1;
}
.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06);
  will-change: transform;
}
.hero-shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; }
.hero-shape-2 { width: 180px; height: 180px; bottom: 20%; left: 8%; }
.hero-content { position: relative; z-index: 3; padding: 8rem 4vw 4rem; max-width: 720px; margin: 0 auto 0 max(4vw, calc((100vw - 1140px)/2)); }
.hero-content h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }
.hero-content .hero-ar { direction: rtl; font-size: 1.15rem; opacity: 0.92; margin-bottom: 0.5rem; }
.hero-content p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.8rem; border: 1px solid rgba(255,255,255,0.2);
}

/* Parallax bands */
.parallax-band {
  position: relative; overflow: hidden;
}
.parallax-band-bg {
  position: absolute; inset: -20% 0; background-size: cover; background-position: center;
  will-change: transform; z-index: 0;
}
.parallax-band .container { position: relative; z-index: 1; }
.parallax-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(90, 3, 54, 0.72);
}
.parallax-band .container { z-index: 2; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-link { font-weight: 600; font-size: 0.9rem; color: var(--accent-dark); }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.75rem; color: var(--primary); font-weight: 700; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Team */
.team-founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.team-founder-card .card-img { aspect-ratio: 4/5; max-height: 420px; }
.team-founder-card .card-img img { object-position: top center; }
.team-founder-card h3 { font-size: 1.65rem; }
.team-founder-card .card-body { padding: 1.75rem; }
.team-card { text-align: center; }
.team-card .card-img { aspect-ratio: 1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.team-card .card-img img { object-position: top center; }
.team-role { color: var(--accent-dark); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }

/* Tech section */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.tech-card { padding: 2rem; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.tech-icon { font-size: 2rem; margin-bottom: 1rem; }

/* Insurance */
.insurance-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; align-items: center; }
.insurance-grid img { height: 48px; width: auto; opacity: 0.75; filter: grayscale(20%); transition: 0.3s; }
.insurance-grid img:hover { opacity: 1; filter: none; }

/* Google reviews carousel */
.reviews-section { overflow: hidden; }
.reviews-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.5rem;
  margin-bottom: 2.5rem; padding: 1.25rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.reviews-google-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--text-body); font-size: 1.05rem;
}
.reviews-stars, .reviews-card-stars { display: inline-flex; gap: 0.15rem; }
.reviews-star { color: #d1d5db; font-size: 1.15rem; line-height: 1; }
.reviews-star.is-filled { color: #fbbf24; }
.reviews-rating-text { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.reviews-rating-text strong { color: var(--primary); font-size: 1.15rem; }
.reviews-carousel {
  position: relative; max-width: 760px; margin: 0 auto;
}
.reviews-carousel-track {
  position: relative; min-height: 220px;
}
.reviews-card {
  position: absolute; inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s;
}
.reviews-card.is-active {
  opacity: 1; visibility: visible; transform: translateY(0);
  position: relative;
}
.reviews-card-quote { margin: 0 0 1.25rem; }
.reviews-card-quote p {
  font-size: 1.08rem; line-height: 1.75; color: var(--text-body);
  font-family: var(--font-display); font-style: italic;
}
.reviews-card-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.reviews-card-author { font-weight: 700; color: var(--primary); }
.reviews-card-link {
  margin-left: auto; font-weight: 600; font-size: 0.85rem; color: var(--accent-dark);
}
.reviews-card-link:hover { color: var(--primary); }
.reviews-carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 1.75rem;
}
.reviews-nav {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--primary); font-size: 1.5rem; line-height: 1;
  cursor: pointer; transition: 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.reviews-nav:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.reviews-dots { display: flex; gap: 0.5rem; }
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: #d1d5db; cursor: pointer; padding: 0;
  transition: 0.3s var(--ease);
}
.reviews-dot.is-active { background: var(--primary); transform: scale(1.15); }
.reviews-cta { text-align: center; margin-top: 2rem; }

/* Page hero inner pages */
.page-hero {
  padding: 8rem 0 4rem; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
.page-hero .ar { direction: rtl; color: var(--text-muted); margin-top: 0.75rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(52,211,153,0.2);
}
.form-msg { padding: 1rem; border-radius: var(--radius); margin-top: 1rem; display: none; }
.form-msg.success { background: #d1fae5; color: #065f46; display: block; }
.form-msg.error { background: #fee2e2; color: #991b1b; display: block; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* First visit timeline */
.visit-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 3.25rem;
}
.visit-timeline::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.28;
  border-radius: 3px;
}
.visit-timeline-item {
  position: relative;
  padding-bottom: 2.75rem;
}
.visit-timeline-item:last-child { padding-bottom: 0; }
.visit-timeline-marker {
  position: absolute;
  left: -3.25rem;
  top: 1.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 5px rgba(122, 5, 74, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.visit-timeline-icon {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}
.visit-timeline-item:last-child .visit-timeline-marker {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.18);
}
.visit-timeline-item:last-child .visit-timeline-icon {
  background: var(--accent);
}
.visit-timeline-item:hover .visit-timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 7px rgba(122, 5, 74, 0.12);
}
.visit-timeline-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.visit-timeline-item--reverse .visit-timeline-content {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.visit-timeline-item--reverse .visit-timeline-media { order: 2; }
.visit-timeline-item--reverse .visit-timeline-body { order: 1; }
.visit-timeline-item:hover .visit-timeline-content {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.visit-timeline-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.visit-timeline-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 5, 74, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.visit-timeline-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.visit-timeline-item:hover .visit-timeline-media img {
  transform: scale(1.04);
}
.visit-timeline-body {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-timeline-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.visit-timeline-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.7;
}
.timeline-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Service detail */
.service-content { max-width: 800px; margin: 0 auto; }
.service-content h2 { margin: 2rem 0 1rem; font-size: 1.75rem; }
.service-content ul { margin: 1rem 0 1rem 1.5rem; }
.service-content li { margin-bottom: 0.5rem; }
.service-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; max-height: 420px; }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.site-footer { margin-top: 0; }
.footer-cta {
  background: var(--primary); color: var(--white); text-align: center; padding: 3.5rem 1rem;
}
.footer-cta h2 { color: var(--white); margin-bottom: 0.5rem; }
.footer-cta p { opacity: 0.9; margin-bottom: 1.5rem; }
.footer-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.footer-main { background: var(--bg); padding: 3rem 0 1rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-grid a { color: var(--text-body); }
.footer-tagline { margin: 1rem 0 0.25rem; font-weight: 600; color: var(--primary); }
.footer-ar { direction: rtl; font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--text-muted); }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); animation: waBounce 0.6s var(--ease) 1s both;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
@keyframes waBounce { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Reveal animations */
.reveal, .reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible, .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, .ticker-track { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero-media video { display: none; }
  .visit-timeline-item:hover .visit-timeline-content { transform: none; }
  .visit-timeline-item:hover .visit-timeline-media img { transform: none; }
  .visit-timeline-item:hover .visit-timeline-marker { transform: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid var(--border); transform: translateY(-120%); opacity: 0;
    transition: 0.35s var(--ease); pointer-events: none; gap: 0.75rem;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 0.65rem 0; font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
  .top-bar-contact { display: none; }
  .top-bar-inner { justify-content: center; padding: 0.45rem 1rem; }
  .nav-social-mobile { display: flex; justify-content: center; padding: 0.75rem 0 0.25rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
  .nav-social-mobile .social-links--top { gap: 0.65rem; }
  .nav-social-mobile .social-link--top {
    width: 40px; height: 40px;
    background: var(--bg-section); border-color: var(--border); color: var(--primary);
  }
  .nav-social-mobile .social-link--top:hover {
    background: var(--primary); color: var(--white); border-color: var(--primary);
  }
  .hero { min-height: 85vh; }
  .hero-content { margin: 0 auto; text-align: center; padding: 5.5rem 1.25rem 3rem; max-width: 100%; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-content p { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-badge { font-size: 0.72rem; padding: 0.4rem 0.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .parallax-band-bg { transform: none !important; }
  .team-founders { grid-template-columns: 1fr; max-width: 420px; }
  .team-founder-card .card-img { max-height: 360px; }
  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-num { font-size: 2.25rem; }
  .grid-3, .grid-4, .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-cta h2 { font-size: 1.5rem; }
  .btn { min-height: 44px; padding: 0.75rem 1.5rem; }
  .ticker { font-size: 0.72rem; }
  .page-hero { padding: 6.5rem 1rem 3rem; }
  .visit-timeline { padding-left: 2.25rem; max-width: 100%; }
  .visit-timeline-marker { left: -2.25rem; width: 22px; height: 22px; top: 1.25rem; }
  .visit-timeline-icon { width: 10px; height: 10px; }
  .visit-timeline::before { left: 10px; }
  .visit-timeline-content,
  .visit-timeline-item--reverse .visit-timeline-content {
    grid-template-columns: 1fr;
  }
  .visit-timeline-item--reverse .visit-timeline-media,
  .visit-timeline-item--reverse .visit-timeline-body { order: unset; }
  .visit-timeline-media { min-height: 180px; }
  .visit-timeline-media img { min-height: 180px; }
  .visit-timeline-body { padding: 1.35rem 1.25rem; }
  .reviews-card { padding: 1.5rem 1.25rem; }
  .reviews-card-link { margin-left: 0; width: 100%; margin-top: 0.25rem; }
  .reviews-carousel-track { min-height: 260px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0.55rem 1rem; }
  .logo img { height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .insurance-grid img { height: 36px; }
}

@media (max-width: 768px) {
  .hero-media video { display: none; }
  .hero-media .hero-poster { opacity: 1; }
}
