:root {
  --navy: #0d1f3c;
  --navy-mid: #162e52;
  --navy-light: #1e3d6b;
  --orange: #f47200;
  --orange-bright: #ff8c1a;
  --orange-glow: rgba(244, 114, 0, 0.28);
  --ink: #0d1f3c;
  --muted: #5a6e8a;
  --line: #e0e8f4;
  --soft: #f5f8fc;
  --white: #ffffff;
  --green-wa: #25d366;
  --shadow-card: 0 8px 32px rgba(13, 31, 60, 0.10);
  --shadow-strong: 0 20px 60px rgba(13, 31, 60, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
p { margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.skip-link {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
.skip-link:focus {
  width: auto; height: auto; clip: auto;
  z-index: 1000; padding: 10px 14px;
  background: var(--navy); color: var(--white);
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 70px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--white);
}
.brand small { display: block; color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange);
  box-shadow: 0 6px 20px var(--orange-glow);
  font-size: 22px; font-weight: 900; color: var(--white);
  letter-spacing: -1px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 8px 12px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-call {
  padding: 10px 18px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 6px 20px var(--orange-glow);
}
.nav-call:hover { background: var(--orange-bright) !important; }
.menu-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block; width: 20px; height: 2px;
  margin: 4px auto; background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 80px 0 64px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 30%, rgba(244,114,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}
.hero-copy { color: var(--white); }
.eyebrow {
  display: inline-block; margin: 0 0 14px;
  color: var(--orange); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 12px; background: rgba(244,114,0,0.12);
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(244,114,0,0.3);
}
h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(36px, 5.5vw, 66px); font-weight: 900; }
h1 .highlight { color: var(--orange); }
h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 800; }
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: 17px;
  max-width: 580px; margin: 20px 0 30px;
  line-height: 1.7;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 13px 22px;
  border-radius: var(--radius); border: 0;
  font-weight: 800; font-size: 15px; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 12px 32px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-bright); box-shadow: 0 16px 40px rgba(244,114,0,0.38); }
.btn-whatsapp {
  background: var(--green-wa); color: var(--white);
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1db954; }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.trust-strip span {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-weight: 700; color: rgba(255,255,255,0.9);
  font-size: 13px;
}

/* Hero Stats Panel */
.hero-stats {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 24px;
}
.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 16px; text-align: center;
}
.stat-box strong {
  display: block; font-size: 28px; font-weight: 900;
  color: var(--orange); line-height: 1;
}
.stat-box span { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600; margin-top: 4px; display: block; }
.hero-cta-card {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hero-cta-card p { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.hero-cta-card strong { color: var(--white); font-size: 20px; font-weight: 900; display: block; }
.hero-cta-card a {
  padding: 10px 16px;
  background: var(--white); color: var(--orange);
  border-radius: var(--radius); font-weight: 800;
  font-size: 14px; white-space: nowrap;
  transition: transform .2s;
}
.hero-cta-card a:hover { transform: scale(1.04); }

/* ── PROMO BANNER ── */
.promo-band {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9500 100%);
  padding: 20px 0;
}
.promo-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.promo-text { color: var(--white); }
.promo-text strong { font-size: 20px; font-weight: 900; display: block; }
.promo-text span { font-size: 14px; opacity: 0.9; }
.promo-offer {
  background: var(--white); color: var(--orange);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 900; font-size: 18px; text-align: center;
}
.promo-offer small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.promo-cta .btn { min-height: 44px; }

/* ── COMMON SECTION ── */
.section {
  padding: 88px 0;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading h2 { color: var(--navy); margin-bottom: 12px; }
.section-heading p { color: var(--muted); font-size: 17px; margin-top: 12px; }
.section-centered .section-heading { max-width: 100%; text-align: center; }

/* ── SERVICES ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  min-width: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--orange);
}
.service-card-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 24px 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.svc-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-size: 26px;
}
.service-card-top h3 { color: var(--white); font-size: 18px; margin-top: 6px; }
.service-card-body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.service-card-body p { color: var(--muted); font-size: 14px; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span {
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: var(--soft); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 999px;
}
.service-card-actions {
  display: flex; gap: 8px; padding: 0 22px 20px;
}
.service-card-actions a {
  flex: 1; text-align: center; font-size: 13px; font-weight: 800;
  padding: 9px 12px; border-radius: var(--radius);
  transition: transform .2s, background .2s;
}
.svc-call { background: var(--orange); color: var(--white); }
.svc-call:hover { background: var(--orange-bright); }
.svc-more { background: var(--soft); color: var(--navy); border: 1px solid var(--line); }
.svc-more:hover { background: var(--line); }

/* ── BRANDS WE SERVICE ── */
.brands-section {
  width: 100%; max-width: none; padding: 72px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.brand-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.brand-logo-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s, box-shadow .2s, transform .25s;
  cursor: default;
  min-height: 110px;
}
.brand-logo-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.brand-logo-item img {
  width: 80px; height: 44px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .3s, opacity .3s;
}
.brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-logo-item span {
  font-size: 13px; font-weight: 800; color: var(--navy);
  letter-spacing: 0.03em;
}

/* ── WHY CHOOSE ── */
.why-section {
  width: 100%; max-width: none; padding: 88px 0;
  background: var(--navy);
}
.why-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.why-inner .section-heading h2 { color: var(--white); }
.why-inner .section-heading p { color: rgba(255,255,255,0.6); }
.why-inner .eyebrow {
  color: var(--orange); background: rgba(244,114,0,0.15);
  border-color: rgba(244,114,0,0.3);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  padding: 24px;
  transition: background .25s, border-color .25s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(244,114,0,0.4);
}
.feat-icon {
  width: 46px; height: 46px;
  background: rgba(244,114,0,0.18);
  border-radius: 12px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 14px;
  border: 1px solid rgba(244,114,0,0.3);
}
.feature-card strong { display: block; color: var(--white); font-size: 17px; margin-bottom: 8px; }
.feature-card span { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.steps::before {
  content: "";
  position: absolute; top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(244,114,0,0.2) 100%);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  text-align: center; padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 22px; font-weight: 900;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.step strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ── ABOUT ── */
.about-section {
  width: 100%; max-width: none; padding: 88px 0;
  background: var(--soft);
}
.about-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-content h2 { color: var(--navy); margin-bottom: 16px; }
.about-content p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-badge {
  padding: 8px 16px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-weight: 800; color: var(--navy); font-size: 14px;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
}
.about-visual .eyebrow { margin-bottom: 16px; }
.about-tagline {
  font-size: clamp(20px, 3vw, 28px); font-weight: 900;
  line-height: 1.3; margin-bottom: 24px;
}
.about-tagline em { color: var(--orange); font-style: normal; }
.about-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.astat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.astat strong { display: block; font-size: 26px; font-weight: 900; color: var(--orange); }
.astat span { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 26px;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card strong { display: block; color: var(--navy); font-size: 17px; margin-bottom: 10px; }
.review-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center; font-weight: 900; font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 800; color: var(--navy); font-size: 14px; }
.reviewer-loc { color: var(--muted); font-size: 12px; }
.center-action { text-align: center; margin-top: 36px; }

/* ── SERVICE AREAS ── */
.areas-section {
  width: 100%; max-width: none; padding: 72px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.areas-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto; text-align: center;
}
.areas-inner .section-heading { max-width: 100%; text-align: center; }
.areas-inner .section-heading h2 { color: var(--white); }
.areas-inner .section-heading p { color: rgba(255,255,255,0.6); }
.areas-inner .eyebrow { background: rgba(244,114,0,0.15); border-color: rgba(244,114,0,0.3); }
.area-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 0;
}
.area-list span {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-weight: 700; color: var(--white);
  font-size: 14px;
  transition: background .2s, border-color .2s;
}
.area-list span:hover { background: var(--orange); border-color: var(--orange); }

/* ── FAQ ── */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color .2s;
}
details[open] { border-color: var(--orange); }
summary {
  cursor: pointer; font-weight: 800;
  padding: 18px 20px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--navy);
}
summary::after {
  content: "+"; font-size: 22px; color: var(--orange);
  transition: transform .3s; flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); padding: 0 20px 18px; font-size: 15px; }

/* ── CONTACT ── */
.contact-wrap {
  max-width: 740px;
}
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cdetail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-card);
  transition: border-color .2s;
}
.cdetail:hover { border-color: var(--orange); }
.cdetail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(244,114,0,0.1); border-radius: 10px;
  border: 1px solid rgba(244,114,0,0.2);
  display: grid; place-items: center; font-size: 20px;
}
.cdetail-text strong { display: block; font-size: 13px; color: var(--muted); font-weight: 600; }
.cdetail-text a, .cdetail-text span { color: var(--navy); font-weight: 800; font-size: 15px; }
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  padding: 32px;
  display: grid; gap: 18px;
}
.contact-form h3 { color: var(--navy); font-size: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; color: var(--navy); }
input, select, textarea {
  width: 100%; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 12px 14px;
  font: inherit; color: var(--ink); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,114,0,0.12);
}
.hidden-field { display: none; }
.form-status { margin: 0; color: var(--orange); font-weight: 700; font-size: 14px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: var(--white); padding: 60px 0 28px; }
.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col strong { color: var(--white); font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.footer-brand .brand-mark { width: 40px; height: 40px; font-size: 18px; }
.footer-brand strong { color: var(--white); font-size: 20px; font-weight: 900; }
.footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.footer-socials a {
  padding: 8px 14px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 700;
  transition: background .2s, border-color .2s;
}
.footer-socials a.wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.footer-socials a.wa:hover { background: var(--green-wa); border-color: var(--green-wa); color: var(--white); }
.footer-socials a.call { background: rgba(244,114,0,0.15); border-color: rgba(244,114,0,0.3); }
.footer-socials a.call:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.copyright {
  width: min(1200px, calc(100% - 32px)); margin: 40px auto 0;
  color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px; font-size: 13px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}

/* ── FLOATING BUTTONS ── */
.floating-actions {
  position: fixed; right: 16px; bottom: 16px;
  z-index: 60; display: grid; gap: 10px;
}
.floating-actions a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  height: 52px; padding: 0 20px;
  border-radius: 999px; color: var(--white);
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform .2s, box-shadow .2s;
}
.floating-actions a:hover { transform: scale(1.06); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.float-call { background: var(--navy); border: 2px solid rgba(255,255,255,0.2); }
.float-whatsapp { background: var(--green-wa); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-anim { animation: float 3.5s ease-in-out infinite; }

/* ── TABLET + MOBILE NAV (≤1024px) ── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .brand-logos { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }

  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; inset: 70px 16px auto 16px;
    display: none; flex-direction: column;
    align-items: stretch; padding: 16px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius); box-shadow: var(--shadow-strong);
    z-index: 100;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius); }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero { padding: 56px 0 48px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .service-grid, .feature-grid, .steps, .reviews-grid { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-cta-row { flex-direction: column; }
  .contact-cta-row .btn { width: 100%; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo-offer { width: 100%; }
  .floating-actions {
    left: 12px; right: 12px;
    grid-template-columns: 1fr 1fr;
    bottom: 12px;
  }
  .floating-actions a { padding: 0 12px; }
  .site-footer { padding-bottom: 90px; }
  .copyright { flex-direction: column; text-align: center; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}
