/* ============================================================
   ZITOGO ZIT436 — landing page styles
   Palette: deep navy + electric blue + signal green
   ============================================================ */

:root {
  --bg: #070b14;
  --bg-2: #0a0f1a;
  --surface: #0f1626;
  --surface-2: #131c2e;
  --line: rgba(120, 150, 190, 0.14);
  --line-strong: rgba(120, 150, 190, 0.28);

  --text: #e8eef7;
  --muted: #94a3bb;
  --muted-2: #6d7d97;

  --blue: #1e9be9;
  --blue-bright: #38b6ff;
  --green: #35d07f;
  --green-bright: #4ce39a;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(56, 182, 255, 0.25), 0 18px 50px -18px rgba(30, 155, 233, 0.55);

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

/* ---------- Ambient background ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image:
    linear-gradient(rgba(120, 160, 210, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 210, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-glow {
  position: fixed; z-index: -2; border-radius: 50%;
  filter: blur(90px); opacity: 0.5; pointer-events: none;
}
.bg-glow--a { width: 620px; height: 620px; top: -220px; right: -120px; background: radial-gradient(circle, rgba(30, 155, 233, 0.5), transparent 65%); }
.bg-glow--b { width: 560px; height: 560px; top: 640px; left: -200px; background: radial-gradient(circle, rgba(53, 208, 127, 0.28), transparent 65%); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand-mark { color: var(--blue-bright); display: inline-flex; }
.brand-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.01em; color: #fff;
}
.brand-word__go { color: var(--green); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.72);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.nav { display: none; gap: 1.9rem; font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.nav a { transition: color 0.2s; }
.nav a:hover { color: #fff; }
.header-cta { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 1rem; border: 1px solid transparent; border-radius: 999px;
  padding: 0.85rem 1.6rem; transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s;
  white-space: nowrap;
}
.btn--primary {
  color: #04121f;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue) 55%, var(--green) 130%);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(56,182,255,0.4), 0 22px 55px -16px rgba(30,155,233,0.7); }
.btn--ghost { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--send { padding: 1rem 1.6rem; font-size: 1.05rem; margin-top: 0.4rem; }
.btn--send .btn-arrow { transition: transform 0.2s; }
.btn--send:hover .btn-arrow { transform: translateX(4px); }
.btn[disabled] { opacity: 0.65; cursor: progress; transform: none; }

/* ---------- Section primitives ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 4.6vw, 3rem); color: #fff; }
.section-title--center { text-align: center; }
.section-lead { color: var(--muted); font-size: 1.06rem; margin-top: 1rem; max-width: 46ch; }
.grad-text {
  background: linear-gradient(100deg, var(--blue-bright), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 5rem);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--muted); letter-spacing: 0.01em;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.03); margin-bottom: 1.4rem;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(53,208,127,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(53,208,127,0.55); } 70% { box-shadow: 0 0 0 9px rgba(53,208,127,0); } 100% { box-shadow: 0 0 0 0 rgba(53,208,127,0); } }

.hero-title { font-size: clamp(2.5rem, 8.5vw, 4.4rem); font-weight: 800; }
.hero-sub { color: var(--muted); font-size: 1.1rem; margin-top: 1.3rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.6rem; list-style: none; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.8rem; color: #fff; }
.hero-stats strong span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.hero-stats__label { font-size: 0.85rem; color: var(--muted-2); }

.hero-media { position: relative; display: flex; justify-content: center; align-items: center; padding: 1.5rem; }
.hero-media img { width: min(88%, 430px); filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6)); position: relative; z-index: 2; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-media__ring {
  position: absolute; z-index: 1; width: min(78%, 400px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,155,233,0.28), transparent 62%);
  border: 1px solid rgba(56,182,255,0.18);
  box-shadow: 0 0 120px 10px rgba(30,155,233,0.18) inset;
}
.floaty {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.85rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: rgba(15,22,38,0.82); border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
.floaty--tl { top: 8%; left: -2%; color: var(--blue-bright); animation: floaty 5s ease-in-out infinite; }
.floaty--br { bottom: 10%; right: -2%; color: var(--green-bright); animation: floaty 5.6s ease-in-out infinite 0.4s; }

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: 1rem; }
}

/* ---------- Trust marquee ---------- */
.trust { overflow: hidden; padding: 1.4rem 0; border-block: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust-track { display: flex; align-items: center; gap: 1.4rem; width: max-content; animation: marquee 26s linear infinite; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
.trust-track i { color: var(--blue); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.feature-card {
  position: relative; background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.feature-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 13px; color: var(--blue-bright); background: rgba(30,155,233,0.12);
  border: 1px solid rgba(56,182,255,0.22); margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }
.feature-card--accent .feature-ico { color: var(--green-bright); background: rgba(53,208,127,0.12); border-color: rgba(76,227,154,0.25); }
.feature-card--wide { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.feature-card--wide .feature-card__img { width: 55%; margin: 0.5rem auto 0; filter: drop-shadow(0 24px 34px rgba(0,0,0,0.55)); }

@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .feature-card--wide { grid-column: span 3; grid-template-columns: 1.4fr 1fr; align-items: center; }
  .feature-card--wide .feature-card__img { width: min(78%, 300px); margin: 0; justify-self: end; }
}

/* ---------- Showcase ---------- */
.showcase { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding: clamp(3rem, 8vw, 6rem) 0; }
.showcase-media { position: relative; display: flex; justify-content: center; }
.showcase-media img { width: min(75%, 340px); position: relative; z-index: 2; filter: drop-shadow(0 34px 44px rgba(0,0,0,0.6)); }
.showcase-media__pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
  width: 62%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(56,182,255,0.35);
}
.showcase-media__pulse::before, .showcase-media__pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(56,182,255,0.35);
  animation: radar 3.2s ease-out infinite;
}
.showcase-media__pulse::after { animation-delay: 1.6s; }
@keyframes radar { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(1.9); opacity: 0; } }
.spec-list { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.spec-list__k { color: var(--muted); }
.spec-list__v { color: #fff; font-weight: 600; text-align: right; }

@media (min-width: 900px) {
  .showcase { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; background: linear-gradient(135deg, var(--blue-bright), var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 0.6rem; }
.step h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- In the box ---------- */
.box-layout { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: start; }
.box-hero { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--surface), var(--bg-2)); }
.box-hero img { width: 100%; }
.box-items { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.box-item { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.85rem 1.1rem; transition: transform 0.2s, border-color 0.2s; }
.box-item:hover { transform: translateX(4px); border-color: var(--line-strong); }
.box-item img { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; }
.box-item h3 { font-size: 1.02rem; color: #fff; }
.box-item p { font-size: 0.88rem; color: var(--muted); }
.box-item__doc { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; color: var(--blue-bright); flex-shrink: 0; }
@media (min-width: 780px) {
  .box-layout { grid-template-columns: 1.05fr 0.95fr; gap: 2.4rem; }
  .box-items { grid-template-columns: 1fr 1fr; }
  .box-item--doc { grid-column: span 2; }
}

/* ---------- Worldwide ---------- */
.worldwide { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; border-block: 1px solid var(--line); }
.worldwide-map {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background:
    radial-gradient(circle at 1px 1px, rgba(120,160,210,0.5) 1px, transparent 0) 0 0 / 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 45%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 65% 65% at 50% 45%, #000 25%, transparent 72%);
}
.marker { position: absolute; width: 12px; height: 12px; }
.marker i { position: absolute; inset: 0; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px 2px rgba(53,208,127,0.7); }
.marker::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(53,208,127,0.5); animation: ping 2.8s ease-out infinite; }
.marker--2 i, .marker--4 i, .marker--6 i { background: var(--blue-bright); box-shadow: 0 0 12px 2px rgba(56,182,255,0.7); }
.marker--2::before, .marker--4::before, .marker--6::before { background: rgba(56,182,255,0.5); }
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(3.6); opacity: 0; } }
.marker--1 { top: 30%; left: 22%; } .marker--1::before { animation-delay: 0s; }
.marker--2 { top: 26%; left: 48%; } .marker--2::before { animation-delay: 0.6s; }
.marker--3 { top: 40%; left: 62%; } .marker--3::before { animation-delay: 1.1s; }
.marker--4 { top: 55%; left: 34%; } .marker--4::before { animation-delay: 1.5s; }
.marker--5 { top: 62%; left: 72%; } .marker--5::before { animation-delay: 0.9s; }
.marker--6 { top: 34%; left: 80%; } .marker--6::before { animation-delay: 2s; }
.marker--7 { top: 68%; left: 50%; } .marker--7::before { animation-delay: 1.8s; }
.worldwide-inner { position: relative; z-index: 1; text-align: center; }
.worldwide-lead { color: var(--muted); font-size: 1.16rem; max-width: 60ch; margin: 1.2rem auto 0; }
.worldwide-lead strong { color: var(--green-bright); }
.worldwide-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem; margin-top: 2.8rem; }
.worldwide-stats div { display: flex; flex-direction: column; }
.worldwide-stats strong { font-family: var(--font-display); font-size: 2.4rem; color: #fff; }
.worldwide-stats span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Reviews ---------- */
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.stars { display: inline-flex; gap: 2px; color: #ffc451; }
.rating-summary__meta { color: var(--muted); font-size: 0.95rem; }
.rating-summary__meta strong { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform 0.25s, border-color 0.25s; }
.review:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.review__stars { color: #ffc451; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.8rem; }
.review blockquote { color: var(--text); font-size: 1rem; line-height: 1.65; }
.review figcaption { margin-top: 1.1rem; display: flex; flex-direction: column; }
.review__name { font-weight: 700; color: #fff; }
.review__loc { font-size: 0.85rem; color: var(--muted-2); }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- App download ---------- */
.app { padding: clamp(3rem, 8vw, 6rem) 0; }
.app-panel {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line-strong); border-radius: 26px; padding: clamp(1.8rem, 5vw, 3.4rem);
  position: relative; overflow: hidden;
}
.app-panel::before { content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(30,155,233,0.35), transparent 60%); filter: blur(40px); }
.app-copy { position: relative; z-index: 1; }
.store-badges { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.store-badge {
  display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.7rem 1.3rem;
  background: #000; border: 1px solid rgba(255,255,255,0.22); border-radius: 14px;
  color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(0,0,0,0.8); }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge__text small { font-size: 0.66rem; letter-spacing: 0.02em; color: #cfd6e2; text-transform: uppercase; }
.store-badge__text strong { font-size: 1.15rem; font-family: var(--font-display); font-weight: 700; }
.app-art { position: relative; z-index: 1; display: flex; justify-content: center; }
.app-art__phone {
  width: 220px; height: 320px; border-radius: 34px; background: linear-gradient(160deg, #1a2436, #0b111c);
  border: 6px solid #05080f; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8), var(--shadow-glow); padding: 12px; overflow: hidden;
}
.app-art__map {
  position: relative; width: 100%; height: 100%; border-radius: 22px; overflow: hidden;
  background:
    linear-gradient(rgba(120,160,210,0.10) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(120,160,210,0.10) 1px, transparent 1px) 0 0 / 26px 26px,
    radial-gradient(circle at 60% 40%, rgba(30,155,233,0.25), transparent 55%),
    #0c1220;
}
.app-art__pin { position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%); color: var(--blue-bright); filter: drop-shadow(0 6px 8px rgba(0,0,0,0.5)); animation: floaty 3.5s ease-in-out infinite; }
.app-art__chip { position: absolute; bottom: 16px; left: 12px; right: 12px; font-size: 0.72rem; font-weight: 600; text-align: center; padding: 0.5rem; border-radius: 10px; background: rgba(7,11,20,0.82); border: 1px solid var(--line-strong); color: var(--green-bright); }
@media (min-width: 820px) { .app-panel { grid-template-columns: 1.2fr 0.8fr; } }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr; gap: 2.4rem; padding: clamp(4rem, 9vw, 7rem) 0; align-items: start; }
.contact-points { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.contact-points li { display: flex; align-items: center; gap: 0.7rem; color: var(--muted); }
.contact-points span { display: inline-flex; color: var(--green-bright); flex-shrink: 0; }
.contact-card { background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: 24px; padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: var(--shadow); position: relative; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.45rem; }
.field__hint { font-weight: 400; color: var(--muted-2); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  background: rgba(7,11,20,0.6); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 0.85rem 1rem; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(56,182,255,0.18);
}
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 1rem; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { cursor: pointer; }
.field select option { background: var(--bg-2); color: var(--text); }
.field--invalid input, .field--invalid textarea, .field--invalid select { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,0.14); }
.field__err { display: block; color: #ff8b8b; font-size: 0.82rem; margin-top: 0.35rem; min-height: 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 0.9rem; text-align: center; }

.form-success { text-align: center; padding: 2.4rem 1rem; animation: fadeUp 0.5s ease both; }
.form-success__ico { display: inline-flex; color: var(--green-bright); background: rgba(53,208,127,0.12); border: 1px solid rgba(76,227,154,0.3); width: 62px; height: 62px; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); max-width: 40ch; margin-inline: auto; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1.05fr; gap: 3.4rem; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: 3rem; margin-top: 2rem; background: var(--bg-2); }
.footer-inner { display: flex; flex-direction: column; gap: 1.6rem; padding-bottom: 2rem; }
.footer-brand p { color: var(--muted); margin-top: 0.6rem; max-width: 40ch; font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.footer-base { display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid var(--line); padding: 1.4rem 0 2rem; color: var(--muted-2); font-size: 0.85rem; }
@media (min-width: 760px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-base { flex-direction: row; justify-content: space-between; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
