/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #14213d;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --bg-soft: #fafbfd;
  --bg-dark: #0b1220;
  --card: #ffffff;
  --border: #e3e7ef;
  --border-strong: #d2d8e3;
  --text: #14213d;
  --muted: #5a6478;
  --accent: #f59e0b;
  --accent-2: #d97706;
  --primary: #2563eb;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(20, 33, 61, .04), 0 1px 3px rgba(20, 33, 61, .06);
  --shadow-md: 0 4px 10px rgba(20, 33, 61, .06), 0 10px 30px rgba(20, 33, 61, .08);
  --shadow-lg: 0 12px 28px rgba(20, 33, 61, .10), 0 24px 60px rgba(20, 33, 61, .12);
}

.container { width: min(1140px, 92%); margin: 0 auto; }
.container-narrow { width: min(780px, 92%); margin: 0 auto; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .9rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1220; font-weight: 900;
}
.brand-logo {
  height: 38px; width: auto;
  display: block;
}
.brand-name { font-size: 1.05rem; letter-spacing: .02em; }
.hero-logo {
  max-width: min(560px, 90%);
  height: auto;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.5));
}
.footer-logo {
  height: 42px; width: auto;
  display: block;
  margin-bottom: .2rem;
}

.nav-links {
  display: flex; gap: 1.3rem; margin-left: auto;
  font-size: .94rem; color: var(--muted);
}
.nav-links a { transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.lang-switch {
  display: inline-flex; gap: 4px;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 3px; background: var(--bg-alt);
}
.lang-switch button {
  appearance: none; border: 0; background: transparent;
  color: var(--muted); font-weight: 700; font-size: .8rem;
  padding: .35rem .7rem; border-radius: 999px; cursor: pointer;
  letter-spacing: .04em;
}
.lang-switch button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.menu-toggle {
  display: none;
  appearance: none; border: 0; background: transparent;
  width: 36px; height: 36px; padding: 6px; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: .2s;
  width: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  min-height: clamp(620px, 88vh, 900px);
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% 38%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 32, .82) 0%, rgba(11, 18, 32, .5) 45%, rgba(11, 18, 32, .1) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, .25) 0%, rgba(11, 18, 32, .45) 100%);
}
@media (max-width: 720px) {
  .hero { min-height: clamp(680px, 92vh, 880px); }
  .hero-image { object-position: 78% center; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(11, 18, 32, .35) 0%, rgba(11, 18, 32, .55) 50%, rgba(11, 18, 32, .85) 100%);
  }
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero h1 span { display: block; }
.hero-sub {
  max-width: 560px; font-size: 1.15rem; color: rgba(255,255,255,.92);
  margin: 1rem 0 1.8rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.8rem; }
.hero-badges {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.4rem;
  border-radius: 999px; font-weight: 700; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s, background .2s, color .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(245, 158, 11, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(245, 158, 11, .65); }
.btn-ghost {
  background: #fff; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--accent); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .55);
}
.btn-whatsapp:hover { transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(160deg, #0e1a36 0%, #0b1220 100%);
  color: #e6e9ef;
  position: relative; overflow: hidden;
}
.section-dark h2,
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.75); }
.section-dark > .container { position: relative; z-index: 2; }
.section-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
  opacity: .25;
  z-index: 0;
}
.section-dark::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.55) 60%, rgba(11,18,32,.25) 100%);
}
.section-cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(245, 158, 11, .15), transparent 60%),
    linear-gradient(160deg, #14213d 0%, #0b1220 100%);
  color: #e6e9ef;
}
.section-cta h2,
.section-cta .section-head h2 { color: #fff; }
.section-cta .section-head p { color: rgba(255,255,255,.7); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 { color: var(--text); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.steps li {
  background: var(--card); border: 1px solid var(--border);
  padding: 1.6rem 1.4rem; border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 800; margin-bottom: 1rem;
  box-shadow: 0 6px 16px -6px rgba(245, 158, 11, .6);
}
.steps p { color: var(--muted); margin: 0; }

/* ---------- Service cards ---------- */
.cards {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}
.card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card-body { padding: 1.5rem 1.5rem 1.8rem; }
.card-body h3 { margin: 0 0 .5rem; color: var(--text); }
.card ul { list-style: none; padding: 0; margin: 1rem 0 0; color: var(--muted); }
.card ul li { margin: .35rem 0; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Checks ---------- */
.checks-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .checks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .checks-grid { grid-template-columns: 1fr; }
}
.check {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.check:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.check:hover .check-media img { transform: scale(1.06); }
.check-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  display: grid; place-items: center;
}
.check-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  z-index: 1;
}
.check-media img[alt=""]:not([src]),
.check-media img:not([src]) { display: none; }
.check-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%);
  z-index: 2;
}
.check-fallback {
  font-size: 2.4rem; z-index: 0;
  opacity: .7;
}
.check-body { padding: 1.2rem 1.3rem 1.4rem; text-align: left; }
.check h4 { margin: 0 0 .3rem; font-size: 1.05rem; color: var(--text); }
.check p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ---------- Why ---------- */
.why-list {
  list-style: none; padding: 0; margin: 0 auto 2rem;
  max-width: 780px;
  display: grid; gap: .75rem;
}
.why-list li {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  padding: 1rem 1.2rem; border-radius: 12px;
  position: relative; padding-left: 2.6rem;
  backdrop-filter: blur(8px);
}
.why-list li::before {
  content: "✓"; position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--accent); font-weight: 800;
}
.why-goal {
  max-width: 780px; margin: 0 auto;
  text-align: center; color: rgba(255,255,255,.75);
}
.why-goal strong { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.3rem; color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); margin: .8rem 0 0; }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 640px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius); padding: 2rem;
  display: grid; gap: 1rem;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.contact-form .row {
  display: grid; gap: 1rem; grid-template-columns: 1fr 1fr;
}
.contact-form label {
  display: grid; gap: .4rem; font-size: .9rem; color: var(--muted);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .8rem 1rem;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .15);
}

.contact-direct {
  display: flex; flex-wrap: wrap; gap: .7rem;
  justify-content: center; margin-top: 1.8rem;
}
.contact-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 600; transition: border-color .2s, transform .15s, background .2s;
  backdrop-filter: blur(6px);
}
.contact-pill:hover { background: rgba(255, 255, 255, .14); }
.contact-pill svg { flex-shrink: 0; }
.contact-pill:hover { border-color: var(--accent); transform: translateY(-1px); }
.contact-pill-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border-color: transparent;
}
.contact-pill-wa:hover { border-color: #25D366; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border); padding: 2.5rem 0;
  background: var(--bg-alt); color: var(--muted); font-size: .9rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: .3rem; }
.footer-tag { margin: .4rem 0 0; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0; }
.footer-social {
  flex-direction: row; gap: .8rem; align-items: center;
}
.footer-social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  color: var(--muted); transition: .2s;
  box-shadow: var(--shadow-sm);
}
.footer-social a:hover {
  color: var(--accent); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.footer-logo { opacity: .85; }

.footer-credit {
  border-top: 1px solid var(--border);
  margin-top: 1.8rem; padding-top: 1.2rem;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: .4rem;
}
.footer-credit a {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--muted);
  transition: color .2s;
  padding: .15rem .5rem; border-radius: 999px;
}
.footer-credit a:hover {
  color: #e1306c;
  background: rgba(225, 48, 108, .08);
}
.footer-credit a strong { font-weight: 600; }

/* ---------- TikTok videos ---------- */
.videos-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  margin-bottom: 2rem;
}
.video-card {
  width: 100%; max-width: 340px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.video-card .tiktok-embed {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.videos-cta { text-align: center; }
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
}

/* ---------- SEO areas block ---------- */
.seo-areas {
  background: var(--bg-alt);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.seo-areas-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 1.5rem;
}
.seo-col h3 {
  font-size: 1.05rem;
  margin: 0 0 .6rem;
  color: var(--text);
}
.seo-col p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.seo-disclaimer {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Reading progress bar ---------- */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  transition: width .1s linear;
  box-shadow: 0 1px 6px rgba(245, 158, 11, .4);
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(20, 33, 61, .12);
  z-index: 90;
  padding: .5rem;
  gap: .5rem;
  padding-bottom: calc(.5rem + env(safe-area-inset-bottom));
}
.mobile-cta-bar .mcb-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .75rem .5rem;
  border-radius: 12px;
  font-weight: 600; font-size: .85rem;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform .15s, box-shadow .15s;
}
.mobile-cta-bar .mcb-btn:active { transform: scale(.96); }
.mobile-cta-bar .mcb-call {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; border-color: transparent;
}
.mobile-cta-bar .mcb-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border-color: transparent;
}
.mobile-cta-bar .mcb-form {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-color: transparent;
}
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  /* Push WhatsApp float so it doesn't overlap the bar */
  .wa-float { bottom: 80px; right: 14px; width: 50px; height: 50px; }
  /* Add bottom padding to body so sticky bar doesn't cover footer content */
  body { padding-bottom: 70px; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
  animation: wa-pulse 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6), 0 10px 30px rgba(37, 211, 102, .4); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, .4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, .4); }
}

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: .5rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .2s;
  }
  .nav-links a {
    padding: .9rem 1.2rem; border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .menu-toggle { display: block; order: 3; }
  .lang-switch { order: 2; margin-left: auto; }
  .brand { order: 1; }
  .nav-inner { flex-wrap: nowrap; gap: .5rem; }
  .brand-logo { height: 28px; }
  .lang-switch button { padding: .3rem .5rem; font-size: .72rem; }
}
@media (max-width: 380px) {
  .brand-logo { height: 24px; }
  .lang-switch button { padding: .28rem .42rem; font-size: .68rem; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); line-height: 1.15; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .section { padding: 3.5rem 0; }
  .hero-sub { font-size: 1rem; }
  .hero-badges { gap: .6rem .9rem; font-size: .85rem; }
  .btn { padding: .75rem 1.1rem; font-size: .9rem; }
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.4rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .hero-cta {
    flex-direction: column; align-items: stretch;
    gap: .6rem;
  }
  .hero-cta .btn { width: 100%; }
}
