/* =========================================================
   PROTECHT.APP — Design tokens & base
   ========================================================= */
:root {
  --black: #05090B;
  --navy: #09151B;
  --navy-2: #101D24;
  --navy-3: #16262F;
  /* Brand accents from logo.png — metallic gold + silver */
  --gold: #D0A040;
  --gold-2: #B88830;
  --gold-3: #EDCD6D;
  --gold-glow: rgba(208, 160, 64, 0.45);
  --silver: #C0C0C0;
  --silver-2: #9F9E9E;
  --green: var(--gold);
  --green-2: var(--gold-2);
  --green-3: var(--gold-3);
  --green-glow: var(--gold-glow);
  --white: #FFFFFF;
  --off: #F7F8F6;
  --gray: #E9ECEA;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dark: #5A656C;
  --sos: #FF3B30;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --radius-pill: 999px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s, color 0.35s;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.btn-download {
  background: var(--green);
  color: var(--black);
  padding: 12px 22px;
  font-size: 13px;
  box-shadow: 0 0 0 0 transparent;
}

.btn-download:hover {
  background: var(--green-3);
  transform: scale(1.02);
  box-shadow: 0 8px 28px var(--green-glow);
}

.btn-download .arrow {
  transition: transform 0.35s var(--ease);
}

.btn-download:hover .arrow {
  transform: translateX(4px);
}

.btn-explore {
  background: var(--green);
  color: var(--black);
  padding: 14px 26px;
  font-size: 13px;
  border-radius: var(--radius-pill);
}

.btn-explore:hover {
  background: var(--green-3);
  transform: scale(1.02);
  box-shadow: 0 10px 32px var(--green-glow);
}

.btn-explore .arrow {
  transition: transform 0.35s var(--ease);
}

.btn-explore:hover .arrow {
  transform: translateX(5px);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 14px 8px 12px;
  min-width: 158px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.store-btn:hover {
  transform: scale(1.02);
  border-color: var(--green);
  background: #0a0a0a;
}

.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn .store-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .store-label small { font-size: 9px; opacity: 0.75; letter-spacing: 0.02em; text-transform: none; font-weight: 500; }
.store-btn .store-label strong { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; text-transform: none; }

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.watch-btn:hover { color: var(--green); }

.watch-btn .play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: grid;
  place-items: center;
  color: var(--green);
  transition: background 0.3s, transform 0.3s;
}

.watch-btn:hover .play {
  background: rgba(208, 160, 64, 0.12);
  transform: scale(1.06);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* =========================================================
   PROTECHT.APP — Layout sections
   ========================================================= */

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, height 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(5, 9, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(208, 160, 64, 0.12);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.logo-img-full {
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

.site-header.is-scrolled .logo img,
.site-header.is-scrolled .logo-img-full {
  height: 48px;
}

.footer-brand .logo img,
.footer-brand .logo-img-full {
  height: 88px;
  max-width: 260px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 6px 0;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
  left: 0;
}

.nav-desktop a:hover { color: var(--white); }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 11, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,9,11,0.92) 0%, rgba(5,9,11,0.72) 42%, rgba(5,9,11,0.35) 70%, rgba(5,9,11,0.55) 100%),
    linear-gradient(180deg, rgba(5,9,11,0.45) 0%, transparent 35%, rgba(5,9,11,0.75) 100%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(208,160,64,0.08), transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(208,160,64,0.35) 1px, transparent 1.5px);
  background-size: 48px 48px;
  opacity: 0.08;
  animation: particleDrift 40s linear infinite;
}

@keyframes particleDrift {
  from { background-position: 0 0; }
  to { background-position: 120px 80px; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.hero-title {
  font-size: clamp(42px, 6.2vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .line { display: block; }
.hero-title .accent { color: var(--green); }

.hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
  font-weight: 450;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}

.hero-phone-wrap {
  position: relative;
  z-index: 2;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateY(36px) scale(0.96);
}

.hero.is-ready .hero-phone-wrap {
  animation: phoneEnter 1.1s var(--ease) 0.25s forwards,
             phoneFloat 6s ease-in-out 1.4s infinite alternate;
}

@keyframes phoneEnter {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes phoneFloat {
  from { transform: translateY(0) rotate(-0.4deg); }
  to { transform: translateY(-8px) rotate(0.5deg); }
}

/* CSS Phone — SOS */
.phone {
  width: 280px;
  height: 560px;
  border-radius: 36px;
  background: #0b0f12;
  border: 3px solid #1c242a;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px #05090B;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #05090B;
  border-radius: 20px;
  z-index: 5;
}

.phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0d161c 0%, #081015 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 18px 20px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.phone-brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  mix-blend-mode: screen;
}

.sos-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sos-btn {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #EDCD6D, #D0A040 45%, #B88830);
  color: var(--black);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 0 0 rgba(208,160,64,0.5), 0 12px 36px rgba(208,160,64,0.35);
  animation: sosPulse 2.8s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.35s var(--ease);
}

.sos-btn::before,
.sos-btn::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(208,160,64,0.45);
  animation: sosRing 2.8s ease-out infinite;
}

.sos-btn::after {
  inset: -28px;
  animation-delay: 0.5s;
  opacity: 0.6;
}

.sos-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(208,160,64,0.55), 0 12px 36px rgba(208,160,64,0.4);
}

@keyframes sosPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(208,160,64,0.35), 0 12px 36px rgba(208,160,64,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(208,160,64,0), 0 14px 40px rgba(208,160,64,0.45); }
}

@keyframes sosRing {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

.sos-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}

.phone-panels {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.phone-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}

.phone-panel strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.phone-panel span { color: rgba(255,255,255,0.45); font-size: 9px; }

.pill-on {
  background: rgba(208,160,64,0.15);
  color: var(--green);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 800;
}

/* Hero callouts */
.hero-callouts {
  position: absolute;
  right: -10px;
  top: 12%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3;
}

.callout {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(16px);
}

.hero.is-ready .callout {
  animation: fadeSlideLeft 0.7s var(--ease) forwards;
}

.hero.is-ready .callout:nth-child(1) { animation-delay: 0.7s; }
.hero.is-ready .callout:nth-child(2) { animation-delay: 0.85s; }
.hero.is-ready .callout:nth-child(3) { animation-delay: 1s; }
.hero.is-ready .callout:nth-child(4) { animation-delay: 1.15s; }

@keyframes fadeSlideLeft {
  to { opacity: 1; transform: none; }
}

.callout-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
  position: relative;
  overflow: hidden;
}

.callout-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-3);
  animation: lineScan 2.4s linear infinite;
}

@keyframes lineScan {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(208,160,64,0.45);
  background: rgba(5,9,11,0.65);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.callout-icon svg { width: 16px; height: 16px; }

.callout p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  max-width: 110px;
}

/* ---------- Safety strip ---------- */
.safety-strip-wrap {
  position: relative;
  z-index: 5;
  margin-top: -72px;
  padding-bottom: 20px;
}

.safety-strip {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.strip-item {
  padding: 28px 20px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.strip-item.is-visible {
  opacity: 1;
  transform: none;
}

.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
  transition: height 0.7s var(--ease);
}

.strip-item.is-visible:not(:last-child)::after {
  height: 64%;
}

.strip-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--green);
  display: grid;
  place-items: center;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}

.strip-item.is-visible .strip-icon {
  transform: scale(1);
  opacity: 1;
}

.strip-icon svg { width: 28px; height: 28px; }

.strip-item h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.strip-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- How it works ---------- */
.how-section {
  background: var(--off);
  color: var(--black);
  padding: 100px 0 110px;
}

.how-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.how-section .eyebrow { color: var(--green-2); }

.how-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.how-title .accent { color: var(--green-2); }

.how-lead {
  color: var(--muted-dark);
  font-size: 15px;
  max-width: 360px;
  line-height: 1.6;
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 12px;
}

.how-line {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(16,24,32,0.1);
  z-index: 0;
}

.how-line span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  transition: width 1.2s var(--ease);
}

.how-steps.is-drawn .how-line span { width: 100%; }

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.how-step.is-visible {
  opacity: 1;
  transform: none;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(16,24,32,0.15);
  background: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--black);
  position: relative;
}

.step-circle.sos {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 0 rgba(208,160,64,0.4);
}

.how-steps.is-drawn .step-circle.sos {
  animation: sosStepRing 2.5s ease-in-out infinite;
}

@keyframes sosStepRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(208,160,64,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(208,160,64,0); }
}

.step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-dark);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.how-step h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.45;
}

/* ---------- Features ---------- */
.features-section {
  background: var(--navy);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208,160,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,160,64,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  pointer-events: none;
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 36px;
  align-items: center;
}

.features-copy .features-title {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.features-copy p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 340px;
}

.feature-phone-stage {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.feature-phone {
  width: 260px;
  height: 520px;
  will-change: transform;
  transition: transform 0.15s linear;
}

.feature-phone .phone { width: 100%; height: 100%; }

.map-screen {
  background:
    radial-gradient(circle at 40% 35%, rgba(208,160,64,0.15), transparent 40%),
    linear-gradient(180deg, #142028 0%, #0b1419 100%);
}

.map-canvas {
  position: relative;
  flex: 1;
  margin: 8px 0;
  border-radius: 14px;
  background:
    linear-gradient(rgba(208,160,64,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,160,64,0.06) 1px, transparent 1px),
    #0e181e;
  background-size: 24px 24px, 24px 24px, auto;
  overflow: hidden;
  min-height: 220px;
}

.map-route {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 64%;
  height: 48%;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.map-screen.is-live .map-route {
  animation: drawRoute 2.4s var(--ease) forwards;
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

.map-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  left: 58%;
  top: 38%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(208,160,64,0.5);
  animation: markerPulse 2s ease-out infinite;
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(208,160,64,0.5);
}

@keyframes markerPulse {
  0% { box-shadow: 0 0 0 0 rgba(208,160,64,0.5); }
  100% { box-shadow: 0 0 0 16px rgba(208,160,64,0); }
}

.map-user {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(5,9,11,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-user .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a4a52, #1a262c);
  border: 1.5px solid var(--green);
}

.sharing-panel {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px;
}

.sharing-panel h4 {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
}

.share-row .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-left: auto;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(208,160,64,0.35);
  background: rgba(208,160,64,0.04);
}

.feature-item .fi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(208,160,64,0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.35s;
}

.feature-item:hover .fi-icon { transform: scale(1.08); }

.feature-item.sos-item .fi-icon {
  background: rgba(255,59,48,0.12);
  color: var(--sos);
}

.feature-item h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- Trust ---------- */
.trust-section {
  background: var(--black);
  padding: 40px 0 100px;
}

.trust-card {
  background: var(--white);
  color: var(--black);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.trust-reviews {
  background: var(--green);
  padding: 40px 36px;
  position: relative;
  min-height: 360px;
}

.trust-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 12px;
}

.stars {
  color: #1a1a1a;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 10px;
}

.trust-score {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.trust-score small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 4px;
}

.testimonial-track {
  position: relative;
  margin-top: 28px;
  min-height: 140px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.testimonial blockquote {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
}

.testimonial cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.t-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s, transform 0.3s;
}

.t-dots button.is-active {
  background: #05090B;
  transform: scale(1.25);
}

.trust-stats {
  padding: 44px 40px;
}

.trust-stats .eyebrow {
  color: var(--green-2);
  margin-bottom: 10px;
}

.trust-stats h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 420px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.stat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(208,160,64,0.15);
  color: var(--green-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted-dark);
  font-weight: 600;
}

/* ---------- Final CTA ---------- */
.cta-section {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
  background: var(--black);
}

.cta-pattern {
  position: absolute;
  inset: 20% -10% -20% 30%;
  background-image: radial-gradient(circle, rgba(208,160,64,0.35) 1.2px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.18;
  animation: patternSlide 28s linear infinite;
  mask-image: radial-gradient(ellipse at 70% 70%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 70%, black 20%, transparent 70%);
  pointer-events: none;
}

@keyframes patternSlide {
  from { background-position: 0 0; }
  to { background-position: 120px 0; }
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  min-height: 420px;
}

.cta-copy {
  padding-bottom: 80px;
}

.cta-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 520px;
}

.cta-copy p {
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-phone-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 20px;
}

.cta-phone {
  width: 240px;
  transform: rotate(-12deg) translateY(40px);
  animation: ctaFloat 6s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

@keyframes ctaFloat {
  from { transform: rotate(-12deg) translateY(40px); }
  to { transform: rotate(-10deg) translateY(28px); }
}

.cta-phone .phone { width: 100%; height: 480px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #030607;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 20px;
  max-width: 280px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.socials a:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(208,160,64,0.08);
  transform: scale(1.06);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--green); }

.footer-col p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-col p a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-desktop { gap: 16px; }
  .nav-desktop a { font-size: 11px; letter-spacing: 0.1em; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 480px; }
  .hero-callouts {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    gap: 14px;
  }
  .callout-line { display: none; }
  .callout p { max-width: none; }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-list { max-width: 480px; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .safety-strip { grid-template-columns: 1fr; }
  .strip-item:not(:last-child)::after { display: none; }
  .strip-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .how-line { display: none; }
  .trust-card { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-phone-wrap { justify-content: center; }
  .cta-phone { transform: rotate(-8deg) translateY(20px); }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 80px; }
  .hero-title { font-size: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .phone { width: 240px; height: 490px; }
  .stats-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .strip-item, .how-step, .callout, .hero-phone-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-particles, .cta-pattern { animation: none !important; }
}
