/* ==========================================================================
   Smart Consultancy Services — Stylesheet
   Design: modern registry, warmed up. Emerald + terracotta + gold on paper.
   ========================================================================== */

:root {
  --ink: #14233A;
  --ink-soft: #33465E;
  --paper: #F6F2E9;
  --paper-deep: #ECE5D5;
  --paper-card: #FCFAF3;

  --emerald: #0F7A5A;
  --emerald-deep: #0A5A42;
  --emerald-tint: #E4F1EB;

  --coral: #D4542C;
  --coral-deep: #A93D1C;
  --coral-tint: #FAE9E1;

  --gold: #BC8A2E;
  --gold-tint: #F6EDD6;

  --blue: #1E6FA8;
  --blue-tint: #E3EEF6;

  --rule: #CDBF9F;
  --rule-soft: #DFD5BE;
  --muted: #6E6553;

  --wa: #25D366;
  --wa-deep: #128C7E;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);

  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.btn-whatsapp { background: var(--emerald); color: #fff; }
.btn-whatsapp:hover {
  background: var(--emerald-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 122, 90, 0.3);
}
.btn-whatsapp svg { color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(212, 84, 44, 0.3);
}

.btn-large { font-size: 16px; padding: 14px 26px; }
.btn-xl { font-size: 17px; padding: 18px 36px; }
.btn-block { width: 100%; }
.btn-header { padding: 10px 18px; font-size: 14px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 233, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { color: var(--emerald); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--emerald); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, var(--emerald-tint) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, var(--coral-tint) 0%, transparent 40%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 26px;
}
.eyebrow-num { color: var(--coral); font-weight: 500; }
.eyebrow-rule { display: inline-block; width: 40px; height: 1px; background: var(--rule); }
.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 34px;
  line-height: 1.55;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-seal {
  color: var(--emerald);
  opacity: 0.9;
  justify-self: end;
  width: 100%;
  max-width: 320px;
  animation: rotate-slow 90s linear infinite;
}
@keyframes rotate-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-seal { animation: none; } }

/* ---------- STRIP ---------- */
.strip {
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--ink);
  color: var(--paper);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.strip-item { display: flex; align-items: baseline; gap: 16px; }
.strip-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.strip-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.7);
  line-height: 1.4;
}
.strip-divider { width: 1px; height: 40px; background: rgba(246, 242, 233, 0.2); }

/* ---------- SECTION HEAD ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-eyebrow::before { display: none; }
.section-head.center .section-eyebrow { padding-left: 0; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--coral);
}
.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- SERVICES (home cards) ---------- */
.services { padding: clamp(70px, 10vw, 120px) 0; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper-card);
  border: 1px solid var(--rule-soft);
  border-top: 4px solid var(--accent, var(--emerald));
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -28px rgba(20, 35, 58, 0.3);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--accent-tint, var(--emerald-tint));
  color: var(--accent, var(--emerald));
}
.service-icon svg { width: 26px; height: 26px; }
.service-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent, var(--emerald));
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.6;
  flex: 1;
}
.service-card .card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent, var(--emerald));
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link span { transition: transform 180ms ease; }
.service-card:hover .card-link span { transform: translateX(4px); }

/* ---------- PAIN POINTS / WHY ---------- */
.why {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--coral-tint);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.risk {
  background: var(--paper-card);
  border: 1px solid var(--rule-soft);
  border-left: 4px solid var(--coral);
  border-radius: 0 6px 6px 0;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.risk-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--coral-tint);
  color: var(--coral-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.risk-icon svg { width: 22px; height: 22px; }
.risk h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.risk p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.why-foot {
  margin-top: 36px;
  text-align: center;
  font-size: 17px;
  color: var(--ink);
}
.why-foot strong { color: var(--emerald-deep); font-weight: 600; }

/* ---------- PROCESS ---------- */
.process {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--emerald-tint);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 28px 24px;
  background: var(--paper-card);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(15, 122, 90, 0.35);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}
.process-step h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.process-step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ---------- ABOUT ---------- */
.about { padding: clamp(70px, 10vw, 120px) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-copy .section-eyebrow { margin-bottom: 16px; }
.about-copy .section-title { margin-bottom: 24px; max-width: 580px; }
.about-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 580px;
  line-height: 1.65;
}
.about-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px;
  position: relative;
  border-radius: 6px;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
  transform: translate(8px, 8px);
  z-index: -1;
}
.about-card-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-card-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-card-role { font-size: 14px; color: rgba(246, 242, 233, 0.7); margin-bottom: 28px; }
.about-card .btn-whatsapp { background: var(--emerald); color: #fff; }
.about-card .btn-whatsapp:hover { background: var(--emerald-deep); }
.about-card-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(246, 242, 233, 0.5);
  margin-top: 16px;
  text-align: center;
}

/* ---------- CTA ---------- */
.cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(188, 138, 46, 0.14);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  width: 820px; height: 820px;
  border: 1px solid rgba(188, 138, 46, 0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { color: var(--gold); margin-bottom: 20px; }
.cta-eyebrow::before { background: var(--gold); }
.cta-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--paper);
}
.cta-sub {
  font-size: 18px;
  color: rgba(246, 242, 233, 0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta .btn-whatsapp { background: var(--wa); color: #08312a; }
.cta .btn-whatsapp:hover {
  background: #1fb858;
  color: #06251f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}
.cta .btn-whatsapp svg { color: #08312a; }
.cta-meta {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(246, 242, 233, 0.55);
  letter-spacing: 0.08em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--paper-deep);
  padding-top: 60px;
  padding-bottom: 24px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: 14px; color: var(--ink-soft); transition: color 180ms ease; }
.footer-col a:hover { color: var(--emerald); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
.float-wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0.5;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .float-wa::after { animation: none; } }

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(circle at 90% 10%, var(--emerald-tint) 0%, transparent 45%),
    radial-gradient(circle at 5% 95%, var(--gold-tint) 0%, transparent 40%);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 22px;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--coral); }
.page-hero p {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0;
  line-height: 1.55;
}

.detail { padding: clamp(60px, 8vw, 100px) 0; border-bottom: 1px solid var(--rule-soft); }
.detail:nth-of-type(even) { background: var(--paper-deep); }
.detail-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.detail:nth-of-type(even) .detail-inner { grid-template-columns: 1.15fr 0.85fr; }
.detail:nth-of-type(even) .detail-side { order: 2; }
.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-accent, var(--emerald));
  margin-bottom: 18px;
}
.detail-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--d-accent, var(--emerald)); }
.detail h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
}
.detail-lead { font-size: 17px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 24px; }
.detail-list { list-style: none; padding: 0; margin: 0 0 28px; }
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--d-accent-tint, var(--emerald-tint));
  color: var(--d-accent, var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.detail-list .tick svg { width: 13px; height: 13px; }
.detail-list strong { color: var(--ink); font-weight: 600; }

.detail-side {
  background: var(--paper-card);
  border: 1px solid var(--rule-soft);
  border-radius: 8px;
  padding: 34px 30px;
  position: sticky;
  top: 90px;
}
.detail-side-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--d-accent-tint, var(--emerald-tint));
  color: var(--d-accent, var(--emerald));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.detail-side-icon svg { width: 30px; height: 30px; }
.detail-side h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--ink);
}
.detail-side p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.6; }
.detail-side .who {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
}
.detail-side .who span { color: var(--d-accent, var(--emerald)); display: block; margin-top: 6px; font-size: 13px; letter-spacing: 0; text-transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .service-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .site-nav { gap: 18px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-seal { max-width: 220px; justify-self: start; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .detail-inner, .detail:nth-of-type(even) .detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .detail:nth-of-type(even) .detail-side { order: 0; }
  .detail-side { position: static; }
}
@media (max-width: 640px) {
  .header-inner { gap: 12px; }
  .brand-sub { display: none; }
  .site-nav { display: none; }
  .btn-header span { display: inline; }
  .strip-inner { flex-direction: column; gap: 20px; }
  .strip-divider { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; }
  .float-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .float-wa svg { width: 24px; height: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 999px;
}
