/* =========================================================
   DESIGN TOKENS — Template 2: Vertex (Navy + Amber)
   ========================================================= */
:root {
  --color-primary: #0f172a;        /* Deep navy */
  --color-primary-light: #1e293b;
  --color-primary-lighter: #334155;
  --color-accent: #f59e0b;         /* Amber */
  --color-accent-dark: #d97706;
  --color-accent-light: #fef3c7;
  --color-bg: #fafaf9;             /* Warm stone */
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-whatsapp: #25d366;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.1);
  --shadow-lg: 0 20px 40px rgba(15,23,42,0.15);
  --shadow-accent: 0 10px 30px rgba(245,158,11,0.3);

  --container: 1200px;
  --nav-height: 76px;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.1;
  color: var(--color-primary);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.section-head { text-align: left; }
.section-head.centered { text-align: center; }
.section-head.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.accent-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 2px;
}
.section-head.centered .accent-line { margin-left: auto; margin-right: auto; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(250,250,249,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* BRAND — plug-and-play */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.logo-wrap:hover { transform: rotate(-8deg); }
.logo-wrap .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.brand-name {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid var(--color-primary);
}
.nav-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px; height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(7px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://maex.in/sites/static/images/1c1a33ebc-d71a-4482-96c7-a48686614fcc.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 50%, rgba(15,23,42,0.55) 100%);
}
/* Geometric accent */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(245,158,11,0.15) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  color: var(--color-accent);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 880px;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: rgba(245,158,11,0.3);
  z-index: -1;
}
.hero p {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  max-width: 620px;
  opacity: 0.92;
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-top: 6px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-primary);
  order: 2;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual:hover img { transform: scale(1.06); }
.about-visual .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text strong { display: block; font-size: 1.15rem; line-height: 1; }
.badge-text span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; opacity: 0.85; }

.about-text { order: 1; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--color-text-muted); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.75; }
.about-text .lead {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--color-bg);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =========================================================
   BENEFITS / FEATURES
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.benefit-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.benefit p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* =========================================================
   HOURS & ADDRESS
   ========================================================= */
.info { background: var(--color-primary); color: #fff; }
.info .section-title { color: #fff; }
.info .section-subtitle { color: rgba(255,255,255,0.7); }
.info .accent-line { background: var(--color-accent); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-card {
  background: var(--color-primary-light);
  padding: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-primary-lighter);
}
.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}
.info-card h3 .icon-circle {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hours-list { display: flex; flex-direction: column; gap: 4px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-primary-lighter);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { color: rgba(255,255,255,0.7); }
.hours-row.today { color: var(--color-accent); font-weight: 700; }
.hours-row.today .time { color: var(--color-accent); }

.address-block { display: flex; flex-direction: column; gap: 20px; }
.address-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.address-row .icon-circle {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(245,158,11,0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.address-row .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}
.address-row .value { font-weight: 600; font-size: 1.05rem; }
.address-row .value a { transition: color 0.2s ease; }
.address-row .value a:hover { color: var(--color-accent); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--color-surface);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial .quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 4.5rem;
  color: var(--color-accent-light);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--color-accent);
}
.testimonial p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.author-avatar {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.author-info strong { display: block; font-size: 0.95rem; font-weight: 800; }
.author-info span { font-size: 0.82rem; color: var(--color-text-muted); font-weight: 500; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--color-surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }

/* Gallery Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: transform 0.2s ease;
  font-weight: 700;
}
.modal-close:hover { transform: rotate(90deg); }

/* =========================================================
   MAP
   ========================================================= */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  border-top: 3px solid var(--color-accent);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo-wrap { background: var(--color-accent); }
.footer-brand .logo-wrap .logo-img { padding: 6px; }
.footer-brand .brand-name { color: #fff; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-copy a { color: var(--color-accent); font-weight: 600; }

/* =========================================================
   FLOATING CTA BAR (mobile)
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: none;
  gap: 12px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.mobile-cta a {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-cta .call-btn { background: var(--color-primary); color: #fff; }
.mobile-cta .wa-btn { background: var(--color-whatsapp); color: #fff; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 95;
  transition: transform 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 500px; margin: 0 auto; order: 1; }
  .about-text { order: 2; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta { width: 100%; justify-content: center; }

  .section { padding: 76px 0; }
  .hero-inner { padding: 60px 24px; }
  .hero-stats { margin-top: 48px; padding-top: 24px; }

  .mobile-cta { display: flex; }
  .whatsapp-float { bottom: 100px; right: 20px; width: 56px; height: 56px; }

  .info-card { padding: 32px 28px; }
  .section-head { text-align: left; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
  .hero-stat .number { font-size: 1.6rem; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }