/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }

:root {
  --bg:        #071613;
  --bg-2:      #0B211C;
  --bg-3:      #123028;
  --bg-4:      #17392F;
  --text:      #EAF2ED;
  --text-2:    #C7D6CD;
  --text-mute: #7E9389;

  --accent:      #2FBF8F;
  --accent-2:    #1E8A64;
  --blue:        #3E8FC4;
  --blue-deep:   #245C82;
  --danger:      #E4574C;
  --line:        rgba(234,242,237,0.12);
  --line-strong: rgba(234,242,237,0.22);

  --serif: "Playfair Display", "Georgia", serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", sans-serif;
  --mono:  "IBM Plex Mono", "SFMono-Regular", monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); font-family: var(--serif); font-weight: 600; }
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent-2); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: var(--bg);
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}

.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .9rem; }
.section-sub { color: var(--text-mute); font-size: 1.05rem; max-width: 52ch; }

section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }

/* Mesh gradient section background (reused, distinct green/blue palette) */
.section-with-mesh { position: relative; overflow: clip; isolation: isolate; }
.section-with-mesh::before {
  content: ""; position: absolute; inset: -15%; z-index: -1;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(47,191,143,.28), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(62,143,196,.16), rgba(30,138,100,.10), rgba(47,191,143,.18), rgba(62,143,196,.16));
  filter: blur(90px) saturate(120%);
  opacity: .8;
  animation: meshShift 26s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 28%; --mesh-y: 30%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 74%; --mesh-y: 62%; }
  100% { --mesh-angle: 360deg; --mesh-x: 28%; --mesh-y: 30%; }
}

/* Image placeholder component */
.img-placeholder {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9rem;
  min-height: 220px;
  padding: 2rem;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(234,242,237,.03) 0 2px, transparent 2px 14px),
    var(--bg-3);
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--text-mute);
}
.img-placeholder-icon { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 1.4; opacity: .8; }
.img-placeholder-label { font-family: var(--mono); font-size: .78rem; letter-spacing: .02em; max-width: 40ch; }
.img-placeholder-wide { aspect-ratio: 21 / 8; min-height: 200px; }
.img-placeholder-map { aspect-ratio: 16 / 10; margin-top: 2rem; min-height: 180px; }

.coverage-map {
  aspect-ratio: 16 / 10; min-height: 180px; margin-top: 2rem;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  filter: saturate(.85) contrast(1.05);
}
.coverage-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================================
   4. Typography
   ============================================================= */
.hero-title { font-size: clamp(2.6rem, 6.6vw, 5.4rem); line-height: .98; max-width: 16ch; }
.hero-title em { font-style: italic; font-weight: 500; }

/* split-word defensive fix — never let split text collapse invisible */
.reveal[data-split] { opacity: 1; transform: none; }
.split-word { display: inline-block; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem;
  font-weight: 700; font-size: .95rem;
  border-radius: 999px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04120D;
  box-shadow: 0 10px 30px -8px rgba(47,191,143,.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -10px rgba(47,191,143,.6); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-sm { padding: .68rem 1.3rem; font-size: .85rem; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* Cursor */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; mix-blend-mode: difference; opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--text); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px; border: 1px solid var(--accent); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 48px; height: 48px; margin: -24px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* Splash loader */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.splash-mark { position: relative; width: 46px; height: 46px; }
.splash-ring {
  position: absolute; inset: 0; border: 2px solid var(--line-strong); border-top-color: var(--accent);
  border-radius: 50%; animation: splashSpin 1s linear infinite;
}
.splash-dot { position: absolute; inset: 0; margin: auto; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
@keyframes splashSpin { to { transform: rotate(360deg); } }
.splash-word { font-family: var(--mono); letter-spacing: .3em; font-size: .8rem; color: var(--text-mute); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: rgba(234,242,237,.06); pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,22,19,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  position: relative; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
}
.brand-mark-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(47,191,143,.7); }
.brand-word { font-family: var(--mono); font-weight: 500; letter-spacing: .16em; font-size: .92rem; color: var(--text); }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { position: relative; padding: .25rem 0; font-size: .92rem; font-weight: 600; color: var(--text-2); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.nav-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .35s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-link { font-family: var(--serif); font-size: 1.6rem; color: var(--text); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }
}

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  background: radial-gradient(ellipse at 50% -10%, rgba(47,191,143,.14), transparent 55%), var(--bg);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(234,242,237,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,242,237,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 72%);
}
.hero-scan {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(47,191,143,.06) 50%, transparent);
  background-size: 100% 6px;
  opacity: .5;
}

.hero-hud { position: absolute; inset: clamp(1rem, 3vw, 2.5rem); z-index: 1; pointer-events: none; }
.hud-corner { position: absolute; width: 30px; height: 30px; border: 1.5px solid rgba(47,191,143,.55); }
.hud-corner-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-corner-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-corner-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-corner-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-rec {
  position: absolute; top: 0; right: 34px;
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: var(--text-mute);
}
.hud-rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); animation: recBlink 1.6s ease-in-out infinite; }
@keyframes recBlink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .hud-rec-dot { animation: none; opacity: 1; } }
.hud-readout {
  position: absolute; bottom: 0; left: 34px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--text-mute);
  opacity: .8;
}
@media (max-width: 719px) { .hero-hud { display: none; } }

.hero-inner { position: relative; z-index: 2; }
.hero-sub { max-width: 46ch; font-size: 1.1rem; color: var(--text-2); margin-top: 1.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.btn-whatsapp {
  background: #25D366;
  color: #04150c;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .5);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -10px rgba(37, 211, 102, .6); }
.btn-whatsapp:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-whatsapp-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: none; }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem;
  margin-top: 3.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line);
  max-width: 620px;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat { display: flex; flex-direction: column; gap: .3rem; }
.hero-stat-num { font-family: var(--mono); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 500; color: var(--text); }
.hero-stat-label { font-size: .82rem; color: var(--text-mute); }

/* ---------- Brands ---------- */
.brands { padding-block: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.brands-label {
  text-align: center; font-family: var(--mono); font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 1.6rem;
}
.brands-list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1rem, 3vw, 1.6rem);
}
.brands-list li {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px;
  padding: .75rem 1.4rem;
  height: 52px;
  opacity: .92; transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.brands-list li:hover { opacity: 1; transform: translateY(-2px); }
.brands-list img { height: 100%; width: auto; max-width: 132px; object-fit: contain; display: block; }

/* ---------- Advantages ---------- */
.advantages { background: var(--bg-2); }
.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); } }

.advantage-card {
  position: relative; isolation: isolate;
  padding: 2rem 1.8rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out);
  perspective: 900px;
}
.advantage-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(47,191,143,.22), transparent 62%);
  opacity: 0; transition: opacity .35s;
}
.advantage-card:hover { border-color: var(--line-strong); background: var(--bg-4); }
.advantage-card:hover::before { opacity: 1; }
.advantage-card.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.advantage-card.has-tilt:hover { transition-duration: .15s, .4s, .4s; }
.advantage-card h3 { font-size: 1.18rem; margin-bottom: .6rem; transform: translateZ(30px); }
.advantage-card p { font-size: .95rem; color: var(--text-mute); transform: translateZ(20px); }

.advantage-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 1.3rem;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(47,191,143,.18), rgba(62,143,196,.12));
  color: var(--accent);
  transform: translateZ(35px);
}
.advantage-icon::before { content: ""; width: 22px; height: 22px; background-color: currentColor; }

/* Banner strip */
.banner-strip { padding-block: clamp(2.5rem, 5vw, 4rem); }
.banner-photo {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 18px; border: 1px solid var(--line);
  line-height: 0;
}
.banner-photo img { width: 100%; height: auto; display: block; filter: saturate(.92) contrast(1.05); }
.banner-photo-tint {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,22,19,.82) 0%, rgba(7,22,19,.35) 45%, rgba(47,191,143,.18) 100%);
  mix-blend-mode: multiply;
}

/* ---------- Process ---------- */
.process-list { display: flex; flex-direction: column; gap: 0; list-style: none; counter-reset: none; }
.process-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-n { font-family: var(--mono); font-size: 1.4rem; color: var(--accent); line-height: 1; padding-top: .1rem; }
.process-step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.process-step p { color: var(--text-mute); max-width: 56ch; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.1rem 1.9rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.testimonial-quote-mark {
  font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--accent-2);
  opacity: .6;
}
.testimonial-text { color: var(--text-2); font-size: 1.02rem; }
.testimonial-meta { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testimonial-meta strong { display: block; color: var(--text); font-size: .92rem; }
.testimonial-role { display: block; font-size: .8rem; color: var(--text-mute); }
.testimonial-avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent), var(--blue-deep));
  color: #04120D; font-family: var(--mono); font-weight: 600; font-size: .82rem;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.05fr .95fr; gap: 4.5rem; } }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2.2rem; }
.contact-details li { display: flex; align-items: center; gap: .9rem; font-size: 1rem; }
.contact-details a:hover { color: var(--accent); }
.contact-detail-icon {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--accent);
}
.contact-detail-icon::before { content: ""; width: 16px; height: 16px; background-color: currentColor; }

.trust-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.trust-badges li {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em;
  padding: .5rem .9rem; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--text-mute);
}

.contact-form-wrap { position: relative; }
.cta-form {
  display: flex; flex-direction: column; gap: 1.3rem;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 24px; padding: 2.2rem;
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--bg-2); color: var(--text);
  font-family: var(--sans); font-size: .96rem;
  transition: border-color .3s var(--ease-out);
}
.field textarea { padding-top: 1.5rem; resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--text-mute); font-size: .95rem;
}
.field-textarea label { top: 1.4rem; transform: none; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field-select label { top: .5rem; transform: none; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.field-select select { color-scheme: dark; }
.field-select select:invalid { color: var(--text-mute); }

.cta-submit { position: relative; margin-top: .3rem; }
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(4,18,13,.35); border-top-color: #04120D;
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-form-check path { stroke: currentColor; stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .55s var(--ease-out); }
.form-fineprint { font-size: .78rem; color: var(--text-mute); text-align: center; }
.form-error { font-size: .82rem; color: var(--danger); text-align: center; font-weight: 600; }

.cta-success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  text-align: center; padding: 2rem;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .8s var(--ease-out) .1s, transform .9s var(--ease-soft) .1s;
}
.cta-success.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cta-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  color: #04120D;
}
.cta-success-icon svg { width: 26px; height: 26px; }
.cta-success-icon path { stroke: currentColor; stroke-width: 2.4; fill: none; stroke-dasharray: 1; stroke-dashoffset: 0; }
.cta-success p { color: var(--text-mute); max-width: 34ch; }

/* Footer */
.footer { padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.4rem; }
.footer-tagline { color: var(--text-mute); font-size: .92rem; max-width: 44ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; }
.footer-links a { font-size: .88rem; color: var(--text-2); }
.footer-links a:hover { color: var(--accent); }
.footer-legal { font-size: .78rem; color: var(--text-mute); }

/* =============================================================
   7. Effects / icon masks
   ============================================================= */
[data-icon="eye"]::before        { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M2 12s3.5-6.5 10-6.5S22 12 22 12s-3.5 6.5-10 6.5S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="bell"]::before       { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M6 9a6 6 0 0 1 12 0c0 5 2 6 2 6H4s2-1 2-6Z'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M6 9a6 6 0 0 1 12 0c0 5 2 6 2 6H4s2-1 2-6Z'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="cloud"]::before      { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M7 18a4.5 4.5 0 0 1-.6-8.96A5.5 5.5 0 0 1 17 8.5 4 4 0 0 1 16.5 18H7Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M7 18a4.5 4.5 0 0 1-.6-8.96A5.5 5.5 0 0 1 17 8.5 4 4 0 0 1 16.5 18H7Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="shield"]::before     { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V6l7-3Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V6l7-3Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="phone"]::before      { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='7' y='2.5' width='10' height='19' rx='2'/%3E%3Cpath d='M11 18.5h2'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='7' y='2.5' width='10' height='19' rx='2'/%3E%3Cpath d='M11 18.5h2'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="leaf"]::before       { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M20 4S8 3 5 10s2 11 2 11 10-1 13-8-1-9-1-9Z'/%3E%3Cpath d='M6 21C10 15 14 11 20 4'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M20 4S8 3 5 10s2 11 2 11 10-1 13-8-1-9-1-9Z'/%3E%3Cpath d='M6 21C10 15 14 11 20 4'/%3E%3C/svg%3E") center / contain no-repeat; }

[data-icon="phone-outline"]::before { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M4 5c0 8.5 6.5 15 15 15l2-4-5-2-2 2c-2.5-1.2-4.3-3-5.5-5.5l2-2-2-5-4 1.5Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M4 5c0 8.5 6.5 15 15 15l2-4-5-2-2 2c-2.5-1.2-4.3-3-5.5-5.5l2-2-2-5-4 1.5Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="mail"]::before       { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 6.5 9 6.5 9-6.5'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 6.5 9 6.5 9-6.5'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="whatsapp"]::before   { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M4 20l1.3-3.8A8 8 0 1 1 8.6 19L4 20Z'/%3E%3Cpath d='M9 10.5c0 3 2.5 5.5 5.5 5.5.6 0 1-.5.9-1.1l-.3-1.3c-.1-.4-.5-.7-.9-.6l-1.2.3a4.2 4.2 0 0 1-2.3-2.3l.3-1.2c.1-.4-.2-.8-.6-.9L9.1 8.6c-.6-.1-1.1.3-1.1.9v1Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M4 20l1.3-3.8A8 8 0 1 1 8.6 19L4 20Z'/%3E%3Cpath d='M9 10.5c0 3 2.5 5.5 5.5 5.5.6 0 1-.5.9-1.1l-.3-1.3c-.1-.4-.5-.7-.9-.6l-1.2.3a4.2 4.2 0 0 1-2.3-2.3l.3-1.2c.1-.4-.2-.8-.6-.9L9.1 8.6c-.6-.1-1.1.3-1.1.9v1Z'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="pin"]::before        { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M12 21s-7-6.1-7-11.2A7 7 0 0 1 19 9.8C19 14.9 12 21 12 21Z'/%3E%3Ccircle cx='12' cy='9.5' r='2.4'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Cpath d='M12 21s-7-6.1-7-11.2A7 7 0 0 1 19 9.8C19 14.9 12 21 12 21Z'/%3E%3Ccircle cx='12' cy='9.5' r='2.4'/%3E%3C/svg%3E") center / contain no-repeat; }
[data-icon="clock"]::before      { mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E") center / contain no-repeat; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 720px)  { }
@media (min-width: 960px)  { }
@media (min-width: 1280px) { }

/* =============================================================
   9. Reduced-motion — only INTRUSIVE effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hud-rec-dot { animation: none; }
  .splash-ring { animation-duration: 1.6s; }
  /* Do NOT disable: tilt, hover, fade, mesh gradient, count-up, marquee */
}
