/* ─────────────────────────────────────────────────────────────
   PVH-SEG — Landing page
   Tactical / military aesthetic — deep black + gold
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --ink: #0a0907;
  --ink-2: #131210;
  --ink-3: #1c1a16;
  --line: #2a2622;
  --line-2: #3a342b;
  --gold: #d4a82a;
  --gold-2: #f0c84a;
  --gold-3: #8a6a14;
  --gold-tint: rgba(212, 168, 42, .12);
  --bone: #f3ece0;
  --bone-2: #c9c0b0;
  --mute: #8a8377;
  --danger: #c83e2e;

  /* Type */
  --f-display: "Oswald", "Arial Narrow", sans-serif;
  --f-stencil: "Saira Stencil One", "Oswald", sans-serif;
  --f-body: "Archivo", "Helvetica Neue", system-ui, sans-serif;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Type ─── */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0;
}

.display {
  font-size: clamp(56px, 9.5vw, 168px);
  line-height: .88;
  letter-spacing: -.02em;
}
.h-1 { font-size: clamp(40px, 5.4vw, 76px); letter-spacing: -.01em; }
.h-2 { font-size: clamp(28px, 3.2vw, 44px); }
.h-3 { font-size: clamp(20px, 1.8vw, 26px); letter-spacing: .01em; }

.stencil {
  font-family: var(--f-stencil);
  letter-spacing: .02em;
}

.gold { color: var(--gold); }
.muted { color: var(--mute); }
.bone-2 { color: var(--bone-2); }

p { margin: 0; }
.lead { font-size: clamp(16px, 1.2vw, 18px); color: var(--bone-2); max-width: 60ch; }

/* ─── Containers ─── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { position: relative; }

.section-pad { padding-top: clamp(72px, 9vw, 140px); padding-bottom: clamp(72px, 9vw, 140px); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 26px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-whats {
  background: #1f8a3e;
  color: #fff;
  border-color: #1f8a3e;
}
.btn-whats:hover { background: #25a049; border-color: #25a049; }

.btn svg { width: 16px; height: 16px; }
.btn-arrow svg { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* ─── Decorative ─── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .5;
}
.gold-bar {
  width: 56px; height: 3px; background: var(--gold);
}
.notch {
  --c: var(--gold);
  position: relative;
}
.notch::before, .notch::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--c);
}
.notch::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.notch::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ─── Topbar ─── */
.topbar {
  background: #050403;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--f-display);
  color: var(--bone-2);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 24px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 13px; height: 13px; color: var(--gold); }
.topbar .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 168, 42, .7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 168, 42, .6); }
  70% { box-shadow: 0 0 0 8px rgba(212, 168, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 42, 0); }
}

/* ─── Header ─── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 9, 7, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 52px; height: 52px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 50%;
  background: #050403;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-text .b1 {
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  letter-spacing: .04em; color: var(--bone);
}
.brand-text .b2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 9px; letter-spacing: .26em; color: var(--gold);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--f-display); font-weight: 500;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone-2);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--gold); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--bone);
}
.menu-toggle svg { width: 18px; height: 18px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media image-slot {
  width: 100%; height: 100%;
  --slot-bg: #0a0907;
  --slot-border: transparent;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(212, 168, 42, .14), transparent 60%),
    linear-gradient(180deg, rgba(10, 9, 7, .55) 0%, rgba(10, 9, 7, .2) 35%, rgba(10, 9, 7, .85) 80%, var(--ink) 100%);
  pointer-events: none;
}
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 42, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 42, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  padding-top: 80px;
  padding-bottom: clamp(56px, 7vw, 96px);
  width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  background: rgba(10, 9, 7, .6);
  backdrop-filter: blur(6px);
  font-family: var(--f-display); font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--bone-2);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

.hero h1 {
  color: var(--bone);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "."; color: var(--gold);
}

.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--bone-2);
  line-height: 1.6;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}
.hero-meta strong {
  display: block; font-size: 28px;
  letter-spacing: -.01em; color: var(--bone); margin-bottom: 4px;
  font-weight: 700;
}
.hero-meta .meta-item { min-width: 140px; }

.hero-side {
  position: absolute;
  right: var(--pad); top: 120px;
  z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-end;
}
.hero-stamp {
  width: 200px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  text-align: center;
  padding: 18px;
  background: rgba(10, 9, 7, .5);
  backdrop-filter: blur(6px);
  position: relative;
}
.hero-stamp .inner {
  width: 100%; height: 100%;
  border: 1px solid rgba(212, 168, 42, .3);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.hero-stamp .num {
  display: block;
  font-size: 38px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  margin-bottom: 6px;
}

/* ─── Trust strip ─── */
.trust {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.trust-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 6px;
}
.trust-item:last-child { border-right: none; }
.trust-item .t-value {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.trust-item .t-value sup { font-size: 16px; color: var(--bone-2); }
.trust-item .t-label {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ─── Services ─── */
.services { background: var(--ink); }
.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.services-head h2 { font-size: clamp(40px, 5.4vw, 80px); }
.services-head .nums {
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
  overflow: hidden;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card .corner {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: .22em;
  color: var(--gold); opacity: .8;
  z-index: 2;
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink-3);
  overflow: hidden;
}
.service-media image-slot {
  width: 100%; height: 100%;
  --slot-bg: #131210; --slot-border: transparent;
}
.service-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 7, .95) 100%);
  pointer-events: none;
}
.service-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.service-body h3 {
  font-size: 26px;
  letter-spacing: .01em;
}
.service-body p {
  color: var(--bone-2);
  font-size: 15px;
  line-height: 1.6;
}
.service-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  z-index: 2;
}
.service-features {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--bone-2);
}
.service-features svg {
  width: 14px; height: 14px; color: var(--gold);
  margin-top: 4px; flex-shrink: 0;
}
.service-cta {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}
.service-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .service-cta svg { transform: translateX(4px); }

/* ─── Creed / quote section ─── */
.creed {
  position: relative;
  background: #050403;
  overflow: hidden;
}
.creed-inner { position: relative; z-index: 1; }
.creed-media {
  position: absolute; inset: 0; z-index: 0;
}
.creed-media image-slot {
  width: 100%; height: 100%;
  --slot-bg: #050403; --slot-border: transparent;
}
.creed-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, .94) 0%, rgba(5, 4, 3, .7) 40%, rgba(5, 4, 3, .25) 75%, rgba(5, 4, 3, .55) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, .4) 0%, transparent 30%, transparent 70%, rgba(5, 4, 3, .6) 100%);
}
.creed-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.creed-text { position: relative; isolation: isolate; }
.creed-text .quote-mark {
  font-family: var(--f-stencil);
  font-size: 220px;
  line-height: .6;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -40px; left: -20px;
  z-index: -1;
}
.creed-text blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--bone);
  max-width: 22ch;
}
.creed-text blockquote em {
  color: var(--gold); font-style: normal;
}
.creed-attr {
  margin-top: 36px;
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
}
.creed-attr::before {
  content: ""; width: 48px; height: 2px; background: var(--gold);
}

/* ─── Diferenciais ─── */
.pillars {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.pillar {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h4 {
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--bone);
}
.pillar p {
  font-size: 14px;
  color: var(--bone-2);
  line-height: 1.55;
}
.pillar .num {
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .24em;
  color: var(--gold);
}

/* ─── Coverage ─── */
.coverage {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.coverage h2 { font-size: clamp(36px, 4.4vw, 64px); }
.coverage .lead { margin-top: 24px; }
.coverage-stats {
  margin-top: 36px;
  display: flex; gap: 36px;
  font-family: var(--f-display);
}
.coverage-stats .s-val {
  display: block; font-size: 44px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.coverage-stats .s-lbl {
  display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute); margin-top: 8px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.state-card {
  padding: 22px 24px;
  background: var(--ink);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px;
  position: relative;
  transition: border-color .2s;
}
.state-card:hover { border-color: var(--gold); }
.state-card .flag {
  width: 44px; height: 30px;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--gold);
  flex-shrink: 0;
}
.state-card .s-name {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--bone);
}
.state-card .s-region {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin-top: 3px;
  font-family: var(--f-display);
}

/* ─── Contact ─── */
.contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(212, 168, 42, .08), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  position: relative;
}
.contact h2 { font-size: clamp(40px, 5.4vw, 76px); }
.contact .lead { margin-top: 24px; }

.contact-info {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .icn {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-row .icn svg { width: 18px; height: 18px; }
.contact-row .c-lbl {
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute);
}
.contact-row .c-val {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 500;
  color: var(--bone); margin-top: 3px;
  letter-spacing: .01em;
}

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 40px;
  position: relative;
}
.form-card::before, .form-card::after {
  content: ""; position: absolute; width: 24px; height: 24px;
  border: 2px solid var(--gold);
}
.form-card::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.form-card::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.form-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.form-head h3 {
  font-size: 22px; letter-spacing: .04em;
}
.form-head .form-id {
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: .26em;
  color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-display);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mute);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d4a82a' stroke-width='2'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
}
.field select option { background: var(--ink-2); color: var(--bone); }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--danger);
}
.field .err-msg {
  font-size: 11px; color: var(--danger);
  font-family: var(--f-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: none;
}
.field.error .err-msg { display: block; }

.form-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 24px;
}
.form-actions .btn { flex: 1; justify-content: center; min-width: 0; }

.form-note {
  font-size: 12px;
  color: var(--mute);
  margin-top: 16px;
  display: flex; gap: 10px; align-items: center;
}
.form-note svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.form-success {
  display: none;
  padding: 32px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg {
  width: 56px; height: 56px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.form-success h4 {
  font-family: var(--f-display); font-size: 22px;
  color: var(--bone); margin-bottom: 10px;
}
.form-success p { color: var(--bone-2); }

/* ─── Footer ─── */
.footer {
  background: #050403;
  border-top: 1px solid var(--line);
  padding-top: 64px;
  padding-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
.footer-brand p { color: var(--bone-2); font-size: 14px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--bone-2); font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: var(--f-display);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
}

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 100;
  padding: 84px var(--pad) 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 28px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--bone);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; height: 56px; }

/* ─── WhatsApp floating ─── */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #1f8a3e;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 60;
  box-shadow: 0 12px 40px rgba(31, 138, 62, .45), 0 0 0 0 rgba(31, 138, 62, .5);
  animation: whatsPulse 2.5s infinite;
  transition: transform .2s;
}
.whats-float:hover { transform: scale(1.06); }
.whats-float svg { width: 28px; height: 28px; }
@keyframes whatsPulse {
  0% { box-shadow: 0 12px 40px rgba(31, 138, 62, .45), 0 0 0 0 rgba(31, 138, 62, .5); }
  70% { box-shadow: 0 12px 40px rgba(31, 138, 62, .45), 0 0 0 20px rgba(31, 138, 62, 0); }
  100% { box-shadow: 0 12px 40px rgba(31, 138, 62, .45), 0 0 0 0 rgba(31, 138, 62, 0); }
}

/* ─── Responsive ─── */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta .btn:not(.btn-whats) { display: none; }
  .hero-side { display: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:last-child { border-bottom: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-head .nums { text-align: left; }
  .coverage-inner, .contact-inner, .creed-inner {
    grid-template-columns: 1fr; gap: 48px;
  }
}

@media (max-width: 720px) {
  .topbar-right .topbar-item:not(:last-child) { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-card { padding: 28px 24px; }
  .header-inner { height: 72px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-text .b1 { font-size: 18px; }
  .hero { min-height: 640px; }
  .creed-text .quote-mark { font-size: 160px; top: -28px; }
  .form-actions { flex-direction: column; }
  .coverage-stats { gap: 24px; }
}

/* ─── Utility ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}
