/* =========================================================================
   NONG — drone mapping landing page
   Design tokens + components. Hand-written, no framework.
   ========================================================================= */

:root {
  /* brand teal-green scale (sampled from the logo gradient) */
  --teal-900: #022c25;
  --teal-800: #033b31;
  --teal-700: #044d40;
  --teal-600: #066b5b;
  --teal-500: #0a8a74;
  /* bright accent reserved for CTAs + highlights */
  --mint: #34e3b0;
  --mint-600: #16c79a;

  --ink: #0c1f1a;
  --muted: #566b63;
  --bg: #ffffff;
  --bg-soft: #eef4f1;
  --line: rgba(4, 77, 64, .14);

  --radius: 18px;
  --radius-sm: 11px;
  --container: 1140px;
  --shadow-sm: 0 6px 18px -10px rgba(2, 44, 37, .35);
  --shadow: 0 22px 60px -28px rgba(2, 44, 37, .55);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--mint); color: var(--teal-900); padding: 10px 16px;
  border-radius: 10px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ----------------------------- layout ----------------------------- */
.container { width: min(var(--container), 92vw); margin-inline: auto; }
.container-narrow { width: min(780px, 92vw); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
section[id], [id].hero { scroll-margin-top: 84px; }
.section-alt { background: var(--bg-soft); }
.section-dark {
  background: radial-gradient(120% 140% at 80% -10%, var(--teal-700), var(--teal-900) 62%);
  color: #d7efe8;
}

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 14px;
}
.section-dark .kicker { color: var(--mint); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section-sub { margin-top: 16px; font-size: 1.075rem; color: var(--muted); }
.section-dark .section-sub { color: rgba(215, 239, 232, .8); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap; will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--mint); color: var(--teal-900); box-shadow: 0 10px 26px -12px rgba(52, 227, 176, .8); }
.btn-primary:hover { background: var(--mint-600); }
.btn-ghost { border-color: currentColor; color: inherit; opacity: .92; }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); opacity: 1; }
.btn-outline { border-color: var(--teal-600); color: var(--teal-700); }
.btn-outline:hover { background: rgba(6, 107, 91, .08); }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(52, 227, 176, .12); color: var(--mint);
  border: 1px solid rgba(52, 227, 176, .3);
}

/* ----------------------------- header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 35, 28, .72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #eafaf4;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(2, 30, 24, .92); box-shadow: 0 12px 40px -22px rgba(0, 0, 0, .7); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 70px; }

.logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.logo-mark { width: 34px; height: 34px; object-fit: contain; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .14em; }

.nav-desktop { display: flex; gap: 26px; margin-left: 8px; }
.nav-desktop a { color: rgba(234, 250, 244, .82); font-weight: 500; font-size: .96rem; position: relative; padding: 6px 0; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--mint); transition: width .22s ease;
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 7px 12px; border-radius: 999px; font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  border: 1px solid rgba(255, 255, 255, .22); color: rgba(234, 250, 244, .9);
  transition: border-color .2s, background-color .2s;
}
.lang-toggle:hover { border-color: var(--mint); background: rgba(52, 227, 176, .1); }
.lang-toggle .lang-next, .lang-toggle .lang-sep { opacity: .5; font-weight: 500; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: #eafaf4; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 4px; padding: 12px 6vw 22px;
  background: rgba(2, 30, 24, .98); border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav a { color: #eafaf4; padding: 13px 4px; font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.mobile-nav a.btn { border: 1.5px solid transparent; margin-top: 12px; justify-content: center; }

/* ----------------------------- hero ----------------------------- */
.hero {
  position: relative; overflow: hidden; color: #eafaf4;
  background: linear-gradient(165deg, var(--teal-800) 0%, var(--teal-900) 58%);
  padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 9vw, 116px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-glow-1 { width: 520px; height: 520px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(52, 227, 176, .5), transparent 70%); animation: drift 16s ease-in-out infinite alternate; }
.hero-glow-2 { width: 460px; height: 460px; bottom: -180px; right: -100px; background: radial-gradient(circle, rgba(10, 138, 116, .65), transparent 70%); animation: drift 20s ease-in-out infinite alternate-reverse; }
.hero-contours { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-contours path, .hero-contours ellipse { stroke-width: 1.4; }
.hero-path path { animation: dash 6s linear infinite; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(52, 227, 176, .5) 1.2px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 80% at 90% 110%, #000 0%, transparent 60%);
  mask-image: radial-gradient(120% 80% at 90% 110%, #000 0%, transparent 60%);
  opacity: .5;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-title { font-size: clamp(2.2rem, 5.4vw, 3.85rem); font-weight: 700; margin: 20px 0 18px; }
.hero-title .hl { color: var(--mint); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(215, 239, 232, .85); max-width: 36em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 24px; }
.hero-points li { position: relative; padding-left: 26px; font-size: .95rem; color: rgba(215, 239, 232, .82); }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(52, 227, 176, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334e3b0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* image slot */
.slot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow);
}
.slot-hero { background: rgba(2, 30, 24, .4); }
.slot-art { width: 100%; height: auto; }
.slot-media { display: block; width: 100%; height: auto; }
.slot-cap {
  position: absolute; left: 12px; bottom: 12px;
  font-size: .76rem; letter-spacing: .03em; color: rgba(255, 255, 255, .82);
  background: rgba(2, 30, 24, .55); padding: 5px 11px; border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, .35);
}

/* ----------------------------- trust strip ----------------------------- */
.trust { padding: 40px 0 8px; text-align: center; }
.trust-featured { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 38px;
  margin: 18px 0 36px;
}
.trust-logos li {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .05em; color: var(--teal-700); opacity: .65; filter: grayscale(1);
}
.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; border-top: 1px solid var(--line); padding-top: 36px; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--teal-700); }
.stat-label { font-size: .92rem; color: var(--muted); }
.trust-note { margin-top: 22px; font-size: .76rem; color: var(--muted); opacity: .75; font-style: italic; }

/* ----------------------------- cards (outputs) ----------------------------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(6, 107, 91, .3); }
.card-art { border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.card-art svg { width: 100%; height: auto; aspect-ratio: 80 / 60; }
.art-bg { fill: #05352b; }
.art-fg { fill: var(--mint); stroke: var(--mint); }
.card-title { font-size: 1.2rem; margin-bottom: 8px; }
.card-text { color: var(--muted); font-size: .96rem; }

/* ----------------------------- how it works ----------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: rgba(6, 107, 91, .16); line-height: 1; }
.step-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; margin: 14px 0 18px; color: var(--teal-700); background: rgba(52, 227, 176, .14); }
.step-icon svg { width: 28px; height: 28px; }
.step-title { font-size: 1.22rem; margin-bottom: 8px; }
.step-text { color: var(--muted); font-size: .97rem; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -18px; width: 36px; height: 2px;
  background: linear-gradient(90deg, rgba(6, 107, 91, .4), transparent);
}

/* ----------------------------- features ----------------------------- */
.feature { padding: 24px; border-radius: var(--radius); border: 1px solid transparent; transition: border-color .25s, background-color .25s; }
.feature:hover { border-color: var(--line); background: var(--bg-soft); }
.feature-ico { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: var(--teal-700); color: var(--mint); margin-bottom: 16px; }
.feature-ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ----------------------------- industries (dark) ----------------------------- */
.ind-card {
  position: relative; padding: 26px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.ind-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .08); border-color: rgba(52, 227, 176, .4); }
.ind-card-feature { background: linear-gradient(160deg, rgba(52, 227, 176, .16), rgba(52, 227, 176, .04)); border-color: rgba(52, 227, 176, .45); }
.ind-tag {
  position: absolute; top: 18px; right: 18px; font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-900); background: var(--mint); padding: 4px 10px; border-radius: 999px;
}
.ind-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(52, 227, 176, .14); color: var(--mint); margin-bottom: 16px; }
.ind-ico svg { width: 26px; height: 26px; }
.ind-card h3 { font-size: 1.18rem; margin-bottom: 8px; color: #fff; }
.ind-card p { color: rgba(215, 239, 232, .78); font-size: .95rem; }

/* ----------------------------- press ----------------------------- */
.press-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.press-body { color: var(--muted); font-size: 1.06rem; margin: 18px 0 22px; }
.press-quote { border-left: 3px solid var(--mint); padding: 6px 0 6px 20px; margin: 0 0 26px; }
.press-quote p { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--teal-700); line-height: 1.35; }
.press-quote cite { display: block; margin-top: 12px; font-style: normal; font-size: .9rem; color: var(--muted); }
.press-thumb { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.press-thumb img { width: 100%; height: auto; transition: transform .4s ease; }
.press-thumb:hover img { transform: scale(1.04); }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; color: var(--teal-900);
  background: rgba(52, 227, 176, .95); box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5);
  transition: transform .25s ease;
}
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.press-thumb:hover .play-btn { transform: scale(1.08); }
.press-founder { margin-top: 14px; font-size: .9rem; color: var(--muted); text-align: center; }

/* accolade / recognition banner */
.accolade {
  display: flex; align-items: center; gap: 22px;
  margin-top: clamp(30px, 4vw, 48px); padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(6, 107, 91, .07), rgba(52, 227, 176, .09));
  border: 1px solid rgba(6, 107, 91, .22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.accolade:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(52, 227, 176, .6); }
.accolade-ico { flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--teal-700); color: var(--mint); }
.accolade-ico svg { width: 28px; height: 28px; }
.accolade-body { display: flex; flex-direction: column; gap: 5px; }
.accolade-tag {
  align-self: flex-start; font-family: var(--font-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--teal-700);
  background: rgba(52, 227, 176, .2); padding: 3px 10px; border-radius: 999px;
}
.accolade-title { font-family: var(--font-display); font-size: 1.14rem; color: var(--ink); }
.accolade-text { color: var(--muted); font-size: .95rem; }
.accolade-cta { flex: none; margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; color: var(--teal-700); white-space: nowrap; }
.accolade-cta::after { content: "→"; transition: transform .2s ease; }
.accolade:hover .accolade-cta::after { transform: translateX(4px); }
@media (max-width: 720px) {
  .accolade { flex-direction: column; align-items: flex-start; gap: 14px; }
  .accolade-cta { margin-left: 0; }
}

/* ----------------------------- plans ----------------------------- */
.plans-grid { align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.plan-popular { border-color: var(--teal-600); box-shadow: var(--shadow); transform: translateY(-6px); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal-700); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.plan-name { font-size: 1.4rem; }
.plan-desc { color: var(--muted); font-size: .95rem; margin: 8px 0 20px; }
.plans-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-inline: auto; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 2px 0 20px; }
.plan-amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.5rem); color: var(--ink); letter-spacing: -.02em; }
.plan-period { color: var(--muted); font-size: .95rem; font-weight: 500; }
@media (max-width: 720px) { .plans-2 { grid-template-columns: 1fr; max-width: 420px; } }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: .96rem; }
.plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(6, 107, 91, .12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23066b5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* ----------------------------- FAQ ----------------------------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23066b5b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-a { padding: 0 22px 20px; color: var(--muted); }

/* ----------------------------- contact / quote (dark) ----------------------------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-copy .section-head { text-align: left; margin: 0; }
.contact-copy .section-title { text-align: left; }
.contact-bullets { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; }
.contact-bullets li { position: relative; padding-left: 30px; color: rgba(215, 239, 232, .9); }
.contact-bullets li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(52, 227, 176, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334e3b0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}
.contact-email { margin-top: 8px; color: rgba(215, 239, 232, .8); font-size: .95rem; }
.contact-email a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }

.quote-form {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); backdrop-filter: blur(6px);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .88rem; font-weight: 500; color: rgba(215, 239, 232, .9); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: rgba(2, 30, 24, .5); border: 1px solid rgba(255, 255, 255, .18); color: #eafaf4;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(215, 239, 232, .45); }
.field select option { color: #0c1f1a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(52, 227, 176, .25); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff8c8c; box-shadow: 0 0 0 3px rgba(255, 140, 140, .2); }
.hp { position: absolute; left: -9999px; }
.form-status { margin-top: 16px; padding: 13px 16px; border-radius: 10px; background: rgba(52, 227, 176, .16); border: 1px solid rgba(52, 227, 176, .4); color: var(--mint); font-weight: 500; }
.form-error { margin-top: 16px; padding: 13px 16px; border-radius: 10px; background: rgba(255, 140, 140, .14); border: 1px solid rgba(255, 140, 140, .45); color: #ffd2d2; font-weight: 500; }

/* ----------------------------- footer ----------------------------- */
.site-footer { background: var(--teal-900); color: #bfe0d6; padding: clamp(48px, 6vw, 72px) 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .logo { color: #fff; }
.footer-tag { margin-top: 16px; font-size: .94rem; color: rgba(191, 224, 214, .8); max-width: 34em; }
.footer-col h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(191, 224, 214, .6); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(191, 224, 214, .85); font-size: .95rem; }
.footer-col a:hover { color: var(--mint); }
.footer-social { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .07); color: #cfe9e0; transition: background-color .2s, color .2s; }
.footer-social a:hover { background: var(--mint); color: var(--teal-900); }
.footer-social svg { width: 19px; height: 19px; }
.lang-toggle-footer { color: rgba(191, 224, 214, .9); border-color: rgba(255, 255, 255, .2); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; color: rgba(191, 224, 214, .65); }

/* ----------------------------- reveal animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(34px, -22px); } }
@keyframes dash { to { stroke-dashoffset: -220; } }

/* ----------------------------- announcement banner (homepage) ----------------------------- */
.announce-bar { background: var(--mint); color: var(--teal-900); }
.announce-bar[hidden] { display: none; }
.announce-inner { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 48px; min-height: 44px; }
.announce-text { font-size: .92rem; font-weight: 500; text-align: center; }
.announce-text a { font-family: var(--font-display); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; margin-left: 6px; white-space: nowrap; }
.announce-text a:hover { opacity: .78; }
.announce-close { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 8px; font-size: 1.3rem; line-height: 1; color: var(--teal-900); opacity: .6; transition: opacity .2s, background-color .2s; }
.announce-close:hover { opacity: 1; background: rgba(2, 44, 37, .12); }

/* ----------------------------- announcement page ----------------------------- */
.announce-hero { position: relative; overflow: hidden; min-height: calc(100vh - 70px); display: grid; place-items: center; text-align: center; }
.announce-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.announce-content { position: relative; z-index: 1; }
.geo-lockup { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(14px, 3vw, 30px); margin: 20px 0 26px; }
.geo-lockup .logo { color: #fff; }
.geo-lockup .logo-mark { width: 40px; height: 40px; }
.geo-lockup .logo-word { font-size: clamp(1.5rem, 4vw, 2.1rem); color: #fff; }
.geo-x { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--mint); opacity: .85; }
.geo-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.1rem); letter-spacing: .01em; color: #fff; text-decoration: none; border-bottom: 2px solid rgba(52, 227, 176, .5); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.geo-word:hover { color: var(--mint); border-color: var(--mint); }
.announce-hero .section-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.announce-hero .section-sub { max-width: 46ch; margin-inline: auto; }
.announce-cta { margin-top: 30px; }
@media (max-width: 560px) {
  .announce-text { font-size: .84rem; }
  .announce-inner { padding: 9px 42px; }
}

/* ----------------------------- responsive ----------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .press-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 840px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .grid-3, .steps, .trust-stats { grid-template-columns: 1fr; }
  .steps .step:not(:last-child)::after { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .plan-popular { transform: none; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-points { gap: 12px 18px; }
  .btn-lg { width: 100%; }
}

/* mobile nav open state handled by [hidden] removal in JS */
.mobile-nav[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-glow, .hero-path path { animation: none; }
  .btn:hover, .card:hover, .ind-card:hover, .press-thumb:hover img { transform: none; }
  * { scroll-behavior: auto !important; }
}
