/* ============================================================
   Mecánica San Juan · Taller de motos en Neuquén
   Paleta: gris carbón #1A1A2E + naranja #F4791F + blanco
   Tipografía: Bebas Neue (display) + Inter (body)
   ============================================================ */

:root {
  --carbon: #1A1A2E;
  --carbon-deep: #121220;
  --carbon-soft: #23233B;
  --carbon-line: #2F2F4A;
  --orange: #F4791F;
  --orange-dark: #C25E0E;
  --orange-deep: #9C4A0A;
  --white: #FFFFFF;
  --paper: #F5F5F7;
  --paper-soft: #ECECF1;
  --ink: #14141F;
  --muted: #B5B5C4;          /* sobre carbón: ratio alto */
  --muted-soft: #9A9AAD;
  --muted-dark: #5A5A6E;
  --whatsapp: #1FA653;        /* verde oscuro accesible */
  --whatsapp-dark: #128C7E;
  --shadow-orange: 0 14px 40px rgba(244, 121, 31, 0.22);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.32s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--orange-dark); text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--carbon);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p  { max-width: 65ch; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-dark { background: var(--carbon); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange h2, .section-orange h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.9rem;
}
.section-dark .eyebrow { color: var(--orange); }
.section-orange .eyebrow { color: var(--white); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-top: 0.8rem; color: var(--muted-dark); font-size: 1.05rem; }
.section-dark .section-head p { color: var(--muted); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 0.6rem;
  top: -200px;
  z-index: 4000;
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0.6rem; color: var(--white); }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.section-dark :focus-visible { outline-color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--carbon); }
.btn-light:hover { background: var(--paper-soft); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--carbon); transform: translateY(-2px); }
.btn-carbon { background: var(--carbon); color: var(--white); }
.btn-carbon:hover { background: var(--carbon-deep); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp-dark); color: var(--white); }
.btn-whatsapp:hover { background: #0E7065; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--carbon-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand img { width: auto; height: 42px; }
.brand-name { font-family: "Bebas Neue", sans-serif; color: var(--white); font-size: 1.25rem; letter-spacing: 2px; line-height: 1; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  z-index: 1200;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-main { display: flex; align-items: center; gap: 1.6rem; }
.nav-main a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--dur) var(--ease);
}
.nav-main a:hover { color: var(--orange); }
.nav-main a:hover::after { width: 100%; }
.nav-main a[aria-current="page"] { color: var(--orange); }
.nav-main a[aria-current="page"]::after { width: 100%; }
.nav-cta { margin-left: 0.4rem; }
.nav-cta a { color: var(--white); }
.nav-cta a::after { display: none; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
  z-index: 900;
}
.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--carbon);
  color: var(--white);
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 121, 31, 0.22), transparent 45%),
    linear-gradient(180deg, var(--carbon-deep), var(--carbon));
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 121, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 121, 31, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--orange); display: block; }
.hero-sub {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 50ch;
}
.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-meta strong { color: var(--white); font-weight: 700; display: block; font-size: 1.05rem; }
.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--carbon-line);
  box-shadow: var(--shadow-soft);
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-orange);
  font-weight: 700;
  font-size: 0.95rem;
  max-width: 220px;
}
.hero-badge strong { font-family: "Bebas Neue", sans-serif; font-size: 1.8rem; letter-spacing: 1px; display: block; line-height: 1; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--carbon-deep);
  color: var(--muted);
  border-top: 1px solid var(--carbon-line);
  border-bottom: 1px solid var(--carbon-line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--orange);
  line-height: 1;
}
.trust-item span { font-size: 0.875rem; color: var(--muted); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--paper-soft);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.svc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  background: var(--carbon);
  border-radius: var(--radius-sm);
  padding: 6px;
}
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--muted-dark); font-size: 0.95rem; margin-bottom: 0; }
.svc-list { margin-top: 0.9rem; font-size: 0.9rem; color: var(--muted-dark); }
.svc-list li { padding-left: 1.2rem; position: relative; margin-bottom: 0.25rem; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.split-art img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-list { margin-top: 1.4rem; display: grid; gap: 0.8rem; }
.split-list li {
  padding-left: 2.2rem;
  position: relative;
  color: var(--muted);
}
.section-dark .split-list li { color: var(--muted); }
.split-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.split-list li strong { color: var(--white); font-weight: 700; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: var(--carbon-soft);
  border: 1px solid var(--carbon-line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Brands ---------- */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 1.5rem;
}
.brand-chip {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 2px;
  color: var(--muted);
  opacity: 0.85;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.brand-chip:hover, .brand-chip:focus { color: var(--orange); opacity: 1; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tst-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--paper-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tst-stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 2px; }
.tst-quote { font-size: 1rem; line-height: 1.6; color: var(--ink); margin: 0; }
.tst-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.tst-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--carbon);
  color: var(--orange);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tst-author strong { display: block; font-size: 0.95rem; color: var(--carbon); }
.tst-author span { font-size: 0.85rem; color: var(--muted-dark); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--carbon-soft);
  border: 1px solid var(--carbon-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.3rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-q .faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-q .faq-icon::after { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq-item[aria-expanded="true"] .faq-icon::after, .faq-item.open .faq-icon::after { opacity: 0; transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
  color: var(--muted);
}
.faq-a-inner { padding: 0 1.3rem 1.2rem; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 1.2rem; }
.loc-row { display: flex; gap: 1rem; align-items: flex-start; }
.loc-row .loc-ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--carbon); border-radius: var(--radius-sm); padding: 6px; }
.loc-row h4, .loc-row h3.loc-h { color: var(--carbon); font-family: "Inter", sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.15rem; }
.section-dark .loc-row h4, .section-dark .loc-row h3.loc-h { color: var(--white); }
.loc-row p, .loc-row a { color: var(--muted-dark); margin: 0; font-size: 0.95rem; }
.section-dark .loc-row p, .section-dark .loc-row a { color: var(--muted); }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--carbon-line);
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}
.loc-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.92rem; color: var(--carbon); }
.section-dark .form-group label { color: var(--white); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--carbon-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-control::placeholder { color: #6B6B7A; }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244, 121, 31, 0.18); outline: none; }
.form-group.invalid .form-control { border-color: #D8483B; }
.form-error {
  font-size: 0.85rem;
  color: #FF6B5E;
  font-weight: 600;
  min-height: 0;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.form-error.show { opacity: 1; }
.form-success {
  display: none;
  background: var(--whatsapp-dark);
  color: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  gap: 0.6rem;
  flex-direction: column;
}
.form-success.show { display: flex; }
.form-success a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--white); margin-inline: auto; opacity: 0.95; }
.cta-banner .btn { margin-top: 1.4rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 800;
  background: var(--whatsapp-dark);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.wa-float:hover, .wa-float:focus { background: #0E7065; transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--carbon-deep); color: var(--muted); padding-block: clamp(3rem, 5vw, 4rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; }
.footer-col h3.foot-h {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a, .footer-col p { color: var(--muted); font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--carbon-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--carbon-line);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted-soft);
}
.footer-bottom a { color: var(--muted-soft); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Page header (subpages) ---------- */
.page-hero {
  background: var(--carbon);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(244, 121, 31, 0.18), transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; max-width: 60ch; }
.breadcrumb { font-size: 0.875rem; color: var(--muted-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange); }

/* ---------- Bento highlight ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.bento .bento-cell {
  background: var(--carbon-soft);
  border: 1px solid var(--carbon-line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.bento .bento-cell.wide { grid-column: span 2; }
.bento .bento-cell h3 { color: var(--white); margin-bottom: 0.5rem; }
.bento .bento-cell p { color: var(--muted); margin: 0; }
.bento .bento-cell .bento-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .tst-grid, .bento { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .bento .bento-cell.wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 340px);
    background: var(--carbon);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 1.6rem 2rem;
    gap: 0.4rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 1100;
    border-left: 1px solid var(--carbon-line);
    overflow-y: auto;
  }
  .nav-open .nav-main { transform: translateX(0); }
  .nav-main a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--carbon-line);
    font-size: 1.05rem;
  }
  .nav-main a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 1rem; width: 100%; }
  .nav-cta .btn { width: 100%; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-badge { left: 0; bottom: -14px; }

  .split { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 480px) {
  .services-grid, .tst-grid, .bento, .steps-grid { grid-template-columns: 1fr; }
  .bento .bento-cell.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 1rem; }
  .wa-float { width: 52px; height: 52px; right: 0.8rem; bottom: 0.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
