/* ---------- design tokens ---------- */
:root {
  /* logo-aligned: near-black + cyan; orange + green stay as CTA accents */
  --navy: #0E1116;
  --navy-2: #1A1F26;
  --navy-3: #2B3340;
  --cyan: #33B6F0;
  --cyan-2: #1FA3DE;
  --cyan-soft: #D6F0FB;
  --clay: #E76F2C;
  --clay-2: #D85F1E;
  --clay-soft: #FBE4D1;
  --bg: #F4F6F8;
  --paper: #FFFFFF;
  --ink: #0E1116;
  --ink-2: #3A4250;
  --muted: #6B7785;
  --line: #E3E7EC;
  --line-strong: #C9D0D9;
  --green-wa: #25D366;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 2px 8px rgba(11,37,69,.04);
  --shadow: 0 4px 18px rgba(11,37,69,.08), 0 16px 40px -20px rgba(11,37,69,.18);
  --shadow-lg: 0 12px 32px rgba(11,37,69,.12), 0 32px 80px -24px rgba(11,37,69,.24);

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Menlo", monospace;

  --container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-2);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(51,182,240,.18);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--clay);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(231,111,44,.45), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { background: var(--clay-2); box-shadow: 0 10px 24px -6px rgba(231,111,44,.55); }

.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-2); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(11,37,69,.04); }

.btn-wa {
  background: var(--green-wa);
  color: white;
}
.btn-wa:hover { background: #1eb958; }

.btn svg { width: 18px; height: 18px; }

/* ---------- nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 235, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav-wrap.scrolled { border-bottom-color: var(--line); background: rgba(247, 243, 235, 0.92); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 36px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.nav-phone:hover { border-color: var(--navy); }
.nav-phone .pulse {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 999px;
  position: relative;
}
.nav-phone .pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--cyan);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center; justify-content: center;
  position: relative;
  z-index: 60;
}
.nav-burger svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 85% 0%, rgba(51,182,240,.12), transparent 55%),
    radial-gradient(circle at -10% 100%, rgba(231,111,44,.10), transparent 55%);
  z-index: 80;
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 2;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 12px 24px 8px;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-links a::after {
  content: "→";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--muted);
  font-weight: 400;
}
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 16px;
}
.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 22px;
  font-size: 16px;
  border-radius: 14px;
}
.mobile-menu-foot {
  margin-top: auto;
  padding: 20px 24px 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.mobile-menu-foot-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.mobile-menu-phone {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.mobile-burger-floating {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 60;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.98;
  font-weight: 600;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan-2);
  font-family: var(--font-display);
}
.hero-lead {
  font-size: 18px;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.trust-item svg { width: 18px; height: 18px; color: var(--cyan-2); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}
.hero-photo {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(51,182,240,.06) 0 12px,
      rgba(255,255,255,.0) 12px 24px),
    linear-gradient(160deg, var(--navy-3), var(--navy));
}
.hero-photo-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.hero-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--clay);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px -8px rgba(231,111,44,.6);
}
.hero-badge .dot {
  width: 6px; height: 6px; background: white; border-radius: 999px;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-card {
  position: absolute;
  right: -24px; bottom: 40px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}
.hero-card-avatars {
  display: flex;
}
.hero-card-avatars .av {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 2px solid var(--paper);
  margin-left: -8px;
  background: linear-gradient(135deg, #B6C5D6, var(--navy-3));
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: white;
  display: grid; place-items: center;
}
.hero-card-avatars .av:first-child { margin-left: 0; }
.hero-card-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-card-text strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-top: 2px;
}

.hero-bg-ornament {
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, var(--cyan-soft), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-bg-ornament-2 {
  position: absolute;
  bottom: -160px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, var(--clay-soft), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ---------- marquee/strip ---------- */
.strip {
  background: var(--navy);
  color: white;
  padding: 18px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.strip-item .star { color: var(--cyan); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section ---------- */
section { scroll-margin-top: 80px; }
.section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  max-width: 720px;
}
.section-head p {
  max-width: 380px;
  color: var(--ink-2);
}

/* ---------- service blocks ---------- */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.service.reverse .service-media { order: 2; }
.service-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(11,37,69,.04) 0 14px,
      rgba(11,37,69,.0) 14px 28px),
    var(--paper);
  display: grid;
  place-items: center;
  color: var(--navy);
}
.placeholder-inner {
  text-align: center;
  padding: 24px;
}
.placeholder-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--cyan);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.25);
}
.placeholder-icon svg { width: 32px; height: 32px; }
.placeholder-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.placeholder-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-top: 8px;
}
.media-chip {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.service-body h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  margin-bottom: 8px;
}
.service-body .eyebrow { margin-bottom: 14px; }
.service-body p { color: var(--ink-2); margin-top: 16px; font-size: 17px; }
.service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.service-features svg {
  width: 18px; height: 18px;
  color: var(--cyan-2);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- why us ---------- */
.why {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at top right, rgba(51,182,240,.10), transparent 55%),
    linear-gradient(180deg, #14181F, var(--navy));
  color: white;
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.why h2 { color: white; }
.why .eyebrow { color: var(--cyan); }
.why .eyebrow .dot { background: var(--cyan); box-shadow: 0 0 0 4px rgba(51,182,240,.18); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-item {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.why-item-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(51,182,240,.10);
  border: 1px solid rgba(51,182,240,.25);
  display: grid; place-items: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.why-item-icon svg { width: 22px; height: 22px; }
.why-item h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-item p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.6;
}

.why-bg {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 560px; height: 560px;
  background: radial-gradient(closest-side, rgba(231,111,44,.16), transparent 70%);
  pointer-events: none;
}

/* ---------- story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
}
.story-lead {
  font-size: 19px;
  color: var(--ink-2);
  margin-top: 28px;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.story-stat {
  padding: 24px 0;
  border-right: 1px solid var(--line);
}
.story-stat:last-child { border-right: none; padding-left: 24px; }
.story-stat:first-child { padding-right: 24px; }
.story-stat:nth-child(2) { padding: 24px; }
.story-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.story-stat-num span { color: var(--cyan-2); }
.story-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-visual .placeholder { background:
    repeating-linear-gradient(135deg,
      rgba(51,182,240,.06) 0 14px,
      rgba(51,182,240,.0) 14px 28px),
    #E7F4FB;
}

/* ---------- service area ---------- */
.area {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.area h3 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.area p { color: var(--ink-2); margin-bottom: 24px; }
.area-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.area-zone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: #0E1822;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(51,182,240,.18), transparent 35%),
    linear-gradient(180deg, rgba(14,17,22,.0) 60%, rgba(14,17,22,.4));
  pointer-events: none;
}
.map-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 17, 22, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
}
.map-tag svg { width: 14px; height: 14px; color: var(--cyan); }
.map-pin {
  position: absolute;
  width: 40px; height: 40px;
  display: grid; place-items: center;
}
.map-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--clay);
  opacity: .22;
  animation: pinpulse 2s ease-out infinite;
}
.map-pin .pin-inner {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--clay);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(11,37,69,.3);
  position: relative;
  z-index: 1;
}
@keyframes pinpulse {
  0% { transform: scale(.5); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- testimonial strip ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote-stars {
  color: var(--clay);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote-author strong { color: var(--ink); }
.quote p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #C7D2DD, var(--navy-3));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.quote-author small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.quote-author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at top left, rgba(51,182,240,.10), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(231,111,44,.10), transparent 55%),
    linear-gradient(180deg, #14181F, var(--navy));
  color: white;
  padding: 80px 64px;
  border-radius: var(--radius-lg);
  margin-top: 96px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.contact h2 { color: white; }
.contact .eyebrow { color: var(--cyan); }
.contact .eyebrow .dot { background: var(--cyan); box-shadow: 0 0 0 4px rgba(51,182,240,.18); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-lead {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin: 20px 0 32px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(51,182,240,.10);
  border: 1px solid rgba(51,182,240,.25);
  display: grid; place-items: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.contact-info-text strong {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 600;
  margin-top: 4px;
}
.contact-info-text a { color: white; }
.contact-info-text a:hover { color: var(--cyan); }

.form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255,255,255,.08);
}
.field-error { color: #ffb38f; font-size: 12px; margin-top: 2px; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex: 1;
  min-width: 200px;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success-icon {
  width: 72px; height: 72px;
  background: rgba(37, 211, 102, .15);
  border: 1px solid rgba(37, 211, 102, .4);
  border-radius: 999px;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--green-wa);
}
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h3 { color: white; font-size: 24px; margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,.7); }

/* ---------- compromiso ---------- */
.compromiso {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.compromiso-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.compromiso-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.compromiso-body { padding: 8px 24px 8px 0; }
.compromiso-body h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  margin: 14px 0 16px;
}
.compromiso-body p {
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 28px;
}
.compromiso-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.compromiso-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.compromiso-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cyan-soft);
  color: var(--cyan-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.compromiso-point-icon svg { width: 20px; height: 20px; }
.compromiso-point strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.compromiso-point small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- footer ---------- */
.footer {
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}
.footer-logo {
  display: block;
  height: 64px;
  width: auto;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); }
.footer-col a:hover { color: var(--cyan-2); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- floating WA ---------- */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-fab-tip {
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  white-space: nowrap;
  position: relative;
  animation: tipBob 3s ease-in-out infinite;
}
.wa-fab-tip::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.wa-fab-tip small {
  display: block;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
@keyframes tipBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.wa-fab-btn {
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--green-wa);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.wa-fab-btn:hover { transform: scale(1.06); box-shadow: 0 12px 28px rgba(37, 211, 102, .5); }
.wa-fab-btn svg { width: 30px; height: 30px; }
.wa-fab-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--green-wa);
  opacity: 0;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .why { padding: 56px 40px; }
  .contact { padding: 56px 40px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn-navy { display: none; }
  .nav-burger { display: inline-flex; }
  .hero { padding: 32px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-card { right: 16px; bottom: 16px; min-width: 220px; }
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .service { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .service.reverse .service-media { order: 0; }
  .service-features { grid-template-columns: 1fr; }
  .why { padding: 44px 28px; border-radius: var(--radius); }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { max-width: 520px; }
  .story-stats { grid-template-columns: 1fr; }
  .story-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 20px 0 !important; }
  .story-stat:last-child { border-bottom: none; }
  .area { padding: 32px 24px; grid-template-columns: 1fr; gap: 32px; }
  .quotes { grid-template-columns: 1fr; }
  .contact { padding: 56px 28px; margin-top: 64px; border-radius: var(--radius); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .compromiso { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
  .compromiso-media { aspect-ratio: 4 / 3; }
  .compromiso-body { padding: 8px 8px 16px; }
  .compromiso-points { grid-template-columns: 1fr; gap: 16px; }
  .wa-fab-tip { display: none; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .hero h1 { font-size: 44px; }
}
