:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --bg: #f1f5f9;
  --surface: #e8eef5;
  --surface-2: #ffffff;
  --accent: #0f172a;
  --accent-hover: #020617;
  --signal: #16a34a;
  --signal-hover: #15803d;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;
  --whatsapp-glow: #25d366;
  --call: #0f172a;
  --radius: 12px;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.08);
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Sora", "Plus Jakarta Sans", sans-serif;
  --max: 1120px;
  --header-h: 68px;
  --mobile-wa-h: 0px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #ffffff 100%);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.skip-link:focus { top: 12px; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
  max-width: min(58%, 340px);
}

.brand-mark { display: none; }

.brand-text {
  display: block;
  min-width: 0;
  padding-left: 12px;
  border-left: 3px solid var(--whatsapp);
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
  color: var(--ink);
}

.brand-text small {
  display: block;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--whatsapp);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
}

.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #053321;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  animation: none;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #053321;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); }
}

.btn-whatsapp-strong {
  font-weight: 800;
  letter-spacing: -0.01em;
  min-height: 48px;
  padding-inline: 20px;
}

.btn-outline-light {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-outline-light:hover {
  background: var(--bg);
  border-color: var(--whatsapp);
  color: #15803d;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover { background: #000; }

.btn-outline {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost-call {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
  font-weight: 700;
}

/* Brand ticker */
.brand-ticker {
  position: relative;
  height: 46px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 100%;
  padding-left: 12px;
  animation: ticker 40s linear infinite;
}

.ticker-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px 0 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
}

.ticker-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 0.62rem;
  font-weight: 800;
}

.ticker-logo img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.ticker-note { display: none; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 90% 10%, rgba(37, 211, 102, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(240, 253, 244, 0.2) 55%, rgba(248, 250, 252, 0.45) 100%);
  min-height: 0;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--whatsapp), #15803d);
  z-index: 1;
}

.hero::after {
  display: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.55;
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.55) 42%, rgba(240, 253, 244, 0.28) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr minmax(300px, 400px);
  gap: 24px 32px;
  align-items: start;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy .eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #15803d;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-transform: none;
  color: var(--ink);
  text-shadow: none;
}

.hero-lead {
  margin: 14px 0 0;
  max-width: 42ch;
  color: #475569;
  font-size: 1.02rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.trust-mini {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.trust-mini li {
  position: relative;
  padding-left: 16px;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 650;
}

.trust-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--whatsapp);
  transform: rotate(45deg);
}

.trust-mini.dark li { color: #475569; }
.trust-mini.light li { color: #334155; }

/* Form panel */
.request-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.request-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--whatsapp), #15803d);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.panel-head p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-grid label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.field-grid label.wide { grid-column: 1 / -1; }

.field-grid span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink);
}

.field-grid input:focus,
.field-grid textarea:focus {
  outline: 2px solid rgba(15, 76, 129, 0.25);
  border-color: var(--accent);
  background: #fff;
}

.field-grid textarea { min-height: 84px; resize: vertical; }

.field-grid small {
  color: var(--muted);
  font-size: 0.75rem;
}

.quick-part-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.quick-part-picker button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-part-picker button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.form-actions .whatsapp-button,
.form-actions .btn-whatsapp {
  width: 100%;
  min-height: 48px;
}

.form-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-reassure,
.form-status {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.form-status.is-success { color: var(--whatsapp); font-weight: 700; }
.form-status.is-error { color: #b91c1c; font-weight: 700; }

.secondary-button,
.call-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
}

.secondary-button {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}

.call-button {
  background: var(--ink);
  color: #fff;
}

.whatsapp-button {
  background: var(--whatsapp);
  color: #053321;
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  min-height: 52px;
  animation: none;
}

.button-mark {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.button-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Sections */
.section {
  position: relative;
  padding: 56px 0;
}

.section.alt { background: var(--surface-2); }

.section-photo {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.section-photo-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.section-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(1);
  opacity: 0.38;
}

.section-photo.soft .section-photo-bg img {
  filter: brightness(1.02) saturate(0.95);
  opacity: 0.32;
}

.section-texture {
  isolation: isolate;
  overflow: hidden;
}

.section-texture-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: grayscale(0.05);
}

.section-texture.alt {
  background: linear-gradient(180deg, #f3f4f6 0%, #eef2f7 100%);
}

.section-head.on-dark h2,
.section-head.on-dark p { color: var(--ink); }
.section-head.on-dark .eyebrow { color: #15803d; }
.section-head.on-dark p { color: var(--muted); }

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.section-head .eyebrow,
.eyebrow {
  margin: 0 0 8px;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: none;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Conversion strips / mid CTAs */
.conv-strip {
  background: linear-gradient(100deg, #ecfdf5 0%, #dcfce7 100%);
  color: var(--ink);
  padding: 24px 0;
  border-block: 1px solid #bbf7d0;
}

.conv-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.conv-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}

.conv-strip p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 0.92rem;
}

.conv-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-cta,
.mid-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.inline-cta strong,
.mid-cta-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.inline-cta p,
.mid-cta-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-cta.light {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.inline-cta.light strong { color: var(--ink); }
.inline-cta.light p { color: var(--muted); }

.mid-cta-card {
  background: linear-gradient(105deg, #ecfdf5 0%, #ffffff 70%);
  border-color: #bbf7d0;
  background-image: none;
}

.category-cta {
  display: inline-block;
  margin-top: 4px;
  color: var(--whatsapp);
  font-size: 0.82rem;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.category-card.has-media {
  padding: 0;
  gap: 0;
  min-height: 0;
  border: none;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.1);
}

.category-card:hover {
  border-color: rgba(224, 138, 30, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(16, 24, 32, 0.14);
}

.category-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
  position: relative;
}

.category-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 32, 0.35));
  pointer-events: none;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.category-card:hover .category-media img {
  transform: scale(1.06);
}

.category-body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  border-top: 3px solid var(--signal);
}

.category-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-cta {
  display: inline-block;
  margin-top: 4px;
  color: var(--signal-hover);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-card,
.why-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.trust-card h3,
.why-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
}

.visual-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.visual-proof-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111827;
  min-height: 160px;
}

.visual-proof-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.92;
}

.visual-proof-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.55));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card,
.why-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.trust-card h3,
.why-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
}

.trust-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.steps span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 4px 16px 12px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  color: var(--ink);
  border-top: 1px solid #bbf7d0;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1);
  opacity: 0.35;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 253, 244, 0.78), rgba(255, 255, 255, 0.55));
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-band h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
}

.cta-band p {
  margin: 0;
  color: #475569;
}

.cta-band .btn-whatsapp { min-width: 200px; }

/* Footer */
.site-footer {
  background: #ffffff;
  color: #475569;
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.9rem;
}

.site-footer a:hover { color: #15803d; }

.footer-note {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: #64748b;
}

/* FAB */
.fab-whatsapp {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 60;
  min-height: 54px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #1faa91 0%, var(--whatsapp) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.42);
  font-weight: 800;
  font-size: 0.88rem;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex: 0 0 auto;
}

.fab-whatsapp .fab-label { display: inline; white-space: nowrap; }

.mobile-wa-bar {
  display: none;
}

/* Policy / inner pages */
.policy-page {
  padding: 32px 0 56px;
  background: var(--surface-2);
}

.policy-wrap {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.policy-hero {
  margin-bottom: 20px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.policy-hero p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-visual {
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 200px;
}

.contact-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.policy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.policy-card section + section { margin-top: 18px; }

.policy-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.policy-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 700;
}

.policy-actions a:first-child {
  background: var(--whatsapp);
  color: #fff;
}

.policy-actions a:not(:first-child) {
  background: #fff;
  border: 1px solid var(--line-strong);
}

/* Responsive — mobile first hardening */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }

  .category-grid,
  .trust-grid,
  .why-grid,
  .steps,
  .visual-proof {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visual-proof-card img { height: 180px; }

  .brand { max-width: min(62%, 280px); }

  .header-actions .btn {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 58px;
    --mobile-wa-h: 76px;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 52px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
  }

  body:has(.mobile-wa-bar) {
    padding-bottom: calc(var(--mobile-wa-h) + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    min-height: var(--header-h);
    gap: 8px;
    align-items: center;
  }

  .brand {
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-text {
    padding-left: 10px;
    min-width: 0;
  }

  .brand-text strong {
    font-size: 1.02rem;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .header-actions .btn-whatsapp-strong {
    padding-inline: 12px;
    font-size: 0.82rem;
    min-height: 44px;
    max-width: 42vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-ticker {
    height: 40px;
  }

  .ticker-brand {
    height: 28px;
    font-size: 0.7rem;
    padding-right: 10px;
  }

  .hero {
    padding: 18px 0 14px;
    min-height: 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-lead {
    font-size: 0.94rem;
    max-width: none;
    line-height: 1.5;
  }

  .hero-cta {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .trust-pills {
    gap: 6px;
  }

  .trust-pills span {
    font-size: 0.7rem;
    min-height: 28px;
    padding: 0 10px;
  }

  .trust-mini {
    flex-direction: column;
    gap: 6px;
  }

  .request-panel {
    padding: 14px;
    border-radius: 14px;
    margin-top: 4px;
  }

  .panel-head {
    flex-wrap: wrap;
  }

  .panel-head p {
    font-size: 1.05rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field-grid input,
  .field-grid textarea,
  .field-grid select {
    min-height: 48px;
    font-size: 16px !important;
    border-radius: 12px;
  }

  .quick-part-picker {
    gap: 8px;
  }

  .quick-part-picker button {
    min-height: 40px;
    font-size: 0.8rem;
    padding: 0 12px;
  }

  .form-actions {
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr;
  }

  .whatsapp-button,
  .secondary-button,
  .form-secondary .btn,
  .form-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .form-reassure {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .section {
    padding: 28px 0;
  }

  .section-head {
    margin-bottom: 16px;
    max-width: none;
  }

  .section-head h2 {
    font-size: 1.35rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .section-head p {
    font-size: 0.92rem;
  }

  .category-grid,
  .trust-grid,
  .why-grid,
  .steps,
  .footer-grid,
  .visual-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card,
  .trust-card,
  .why-card {
    min-width: 0;
  }

  .category-card:hover,
  .trust-card:hover {
    transform: none;
  }

  .cta-band {
    padding: 28px 0;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cta-band h2 {
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .cta-band .btn-whatsapp,
  .cta-band-actions .btn,
  .conv-strip-actions .btn,
  .inline-cta .btn,
  .mid-cta-card .btn,
  .policy-actions a {
    width: 100%;
    min-height: 48px;
    min-width: 0;
  }

  .cta-band-actions,
  .conv-strip-inner,
  .inline-cta,
  .mid-cta-card {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .conv-strip {
    padding: 18px 0;
  }

  .conv-strip strong {
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .conv-strip p {
    font-size: 0.88rem;
  }

  .faq-list details {
    padding: 12px 14px;
  }

  .faq-list summary {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .fab-whatsapp {
    display: none !important;
  }

  .mobile-wa-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #053321;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-wa-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
  }

  input,
  select,
  textarea,
  button,
  .btn,
  .whatsapp-button {
    font-size: 16px !important;
  }

  .site-footer {
    padding: 32px 0 20px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-brand,
  .footer-note,
  .site-footer a {
    word-break: break-word;
  }

  .policy-wrap {
    width: min(760px, calc(100% - 20px));
  }

  .policy-page {
    padding: 24px 0 40px;
  }

  .policy-actions {
    flex-direction: column;
  }

  .contact-visual {
    max-height: 160px;
  }

  .contact-visual img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .header-actions .btn-whatsapp-strong {
    padding-inline: 10px;
    font-size: 0.78rem;
    max-width: 38vw;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: 1.4rem;
  }

  .container {
    width: calc(100% - 16px);
  }
}

@media (max-width: 360px) {
  .header-actions .btn-whatsapp-strong {
    font-size: 0.72rem;
    padding-inline: 8px;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 12px 0;
  }

  .mobile-wa-bar {
    padding-top: 6px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-wa-btn {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-ticker-track { animation: none; }
  html { scroll-behavior: auto; }
  .category-card:hover,
  .category-card:hover .category-media img {
    transform: none;
  }
}