:root {
  --ink: #101820;
  --ink-soft: #243041;
  --muted: #5b6b7c;
  --line: #dde3ea;
  --line-strong: #c5ced8;
  --bg: #edf1f5;
  --surface: #e4ebf2;
  --surface-2: #f4f7fa;
  --accent: #163a5f;
  --accent-hover: #0f2a45;
  --signal: #e08a1e;
  --signal-hover: #c87312;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0f766e;
  --whatsapp-glow: #25d366;
  --call: #101820;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(16, 24, 32, 0.12);
  --shadow-sm: 0 8px 18px rgba(16, 24, 32, 0.07);
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Manrope", sans-serif;
  --max: 1140px;
  --header-h: 76px;
  --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, #e8eef4 0%, #edf1f5 28%, #edf1f5 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(16, 24, 32, 0.94);
  border-bottom: 3px solid var(--signal);
  backdrop-filter: blur(14px);
}

.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(--signal);
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.98rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

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

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

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

.site-nav a:hover {
  color: #fff;
  border-bottom-color: var(--signal);
}

.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: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 750;
  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: linear-gradient(180deg, #f0a53a 0%, var(--signal) 100%);
  color: #1a1208;
  box-shadow: 0 10px 22px rgba(224, 138, 30, 0.35);
}

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

.btn-whatsapp {
  background: linear-gradient(180deg, #1faa91 0%, var(--whatsapp) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 140, 126, 0.28);
}

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

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

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.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 rgba(255, 255, 255, 0.08);
  background: #0f1822;
}

.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 rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 700;
  color: #d7e2ec;
}

.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: 56px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a121a;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--signal), #128c7e);
  z-index: 1;
}

.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.04);
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(10, 18, 26, 0.96) 0%, rgba(10, 18, 26, 0.82) 48%, rgba(10, 18, 26, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 18, 26, 0.2) 0%, rgba(10, 18, 26, 0.72) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(300px, 410px);
  gap: 28px 40px;
  align-items: start;
}

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

.hero-copy .eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(224, 138, 30, 0.18);
  border: 1px solid rgba(224, 138, 30, 0.45);
  color: #ffd39a;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.hero-lead {
  margin: 16px 0 0;
  max-width: 40ch;
  color: #b8c6d4;
  font-size: 1.04rem;
}

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

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

.trust-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8eef4;
  font-size: 0.78rem;
  font-weight: 700;
}

.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: #cbd5e1;
  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(--signal);
  transform: rotate(45deg);
}

.trust-mini.dark li { color: #e2e8f0; }
.trust-mini.light li { color: #e5e7eb; }

/* Form panel */
.request-panel {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

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

.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.08rem;
  font-weight: 700;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(224, 138, 30, 0.12);
  color: var(--signal-hover);
  font-size: 0.72rem;
  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: linear-gradient(180deg, #1faa91 0%, var(--whatsapp) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(18, 140, 126, 0.3);
  font-weight: 800;
}

.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: #0b1220;
}

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

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

.section-photo.soft .section-photo-bg img {
  filter: brightness(0.42) saturate(0.8);
}

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

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

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

.section-head.on-dark h2,
.section-head.on-dark p { color: #fff; }
.section-head.on-dark .eyebrow { color: #ffd39a; }
.section-head.on-dark p { color: #cbd5e1; }

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

.section-head .eyebrow,
.eyebrow {
  margin: 0 0 8px;
  color: var(--signal-hover);
  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.5rem, 3.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

/* Conversion strips / mid CTAs */
.conv-strip {
  background:
    linear-gradient(95deg, #101820 0%, #163a5f 48%, #128c7e 100%);
  color: #fff;
  padding: 26px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.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: #dbeafe;
  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 rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.inline-cta strong,
.mid-cta-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.inline-cta p,
.mid-cta-card p {
  margin: 6px 0 0;
  color: #cbd5e1;
  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: #0b1220;
  border-color: transparent;
  background-image:
    linear-gradient(105deg, rgba(11, 18, 32, 0.92), rgba(15, 76, 129, 0.78)),
    url("assets/visual-kargo.jpg");
  background-size: cover;
  background-position: center;
}

.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(8, 14, 26, 0.88));
  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: var(--ink);
  color: #fff;
}

.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: brightness(0.35) saturate(0.85);
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 26, 0.88), rgba(8, 14, 26, 0.72));
}

.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;
}

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

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

/* Footer */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 48px 0 24px;
}

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

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  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 */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-nav { display: none; }

  .category-grid,
  .trust-grid,
  .why-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-proof {
    grid-template-columns: 1fr;
  }

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

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

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

  body { padding-bottom: calc(var(--mobile-wa-h) + env(safe-area-inset-bottom)); }

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

  .brand { max-width: min(48%, 200px); }

  .brand-text strong {
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .brand-text small { font-size: 0.66rem; }

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

  .hero { padding: 24px 0 18px; }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }

  .hero-lead { font-size: 0.95rem; }

  .hero-cta .btn { width: 100%; }

  .trust-pills span { font-size: 0.74rem; }

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

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

  .section { padding: 36px 0; }

  .section-head { margin-bottom: 20px; }

  .request-panel { padding: 16px; }

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

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

  .fab-whatsapp { display: none; }

  .mobile-wa-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 16, 24, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    background: linear-gradient(180deg, #1faa91 0%, var(--whatsapp) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.35);
  }

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

  input, button, .btn, .whatsapp-button {
    font-size: 16px; /* iOS zoom prevent */
  }

  .whatsapp-button { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}
