/* =============================================================================
   WATCHFUL.CO.ZA — Mobile-First Stylesheet
   Theme: Dark · Navy · Gold
   ============================================================================= */

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--nav-h) + var(--s-4));
  scrollbar-color: var(--c-gold) var(--c-surface);
  scrollbar-width: thin;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* Shared keyboard focus ring for interactive controls */
:where(
  a,
  button,
  input:not([type="hidden"]),
  select,
  textarea,
  summary,
  [role="button"],
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  /* Colours */
  --c-bg:           #080D14;
  --c-surface:      #0F1923;
  --c-surface-2:    #162030;
  --c-border:       rgba(255,255,255,0.07);
  --c-border-gold:  rgba(245,158,11,0.35);

  --c-gold:         #F59E0B;
  --c-gold-dark:    #D97706;
  --c-gold-light:   #FCD34D;
  --c-blue:         #1A56DB;
  --c-blue-light:   #3B82F6;

  --c-white:        #FFFFFF;
  --c-text:         #CBD5E1;
  --c-muted:        #64748B;
  --c-heading:      #F1F5F9;

  /* Spacing scale */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;
  --s-4: 1rem;     --s-5: 1.25rem;  --s-6: 1.5rem;
  --s-8: 2rem;     --s-10: 2.5rem;  --s-12: 3rem;
  --s-16: 4rem;    --s-20: 5rem;    --s-24: 6rem;

  /* Radii */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 0.875rem;
  --r-xl: 1.25rem;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms cubic-bezier(.4,0,.2,1);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 64px;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--c-surface);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-gold-light) 0%, var(--c-gold) 45%, var(--c-gold-dark) 100%);
  border: 2px solid var(--c-surface);
  border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fde68a 0%, var(--c-gold-light) 45%, var(--c-gold) 100%);
}

::-webkit-scrollbar-corner {
  background: var(--c-surface);
}

/* ─── Typography helpers ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}

h1, h2, h3, h4 {
  color: var(--c-heading);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--s-4);
}

.section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Layout utilities ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

.section {
  padding-block: var(--s-16);
}

.section--alt {
  background: var(--c-surface);
}

.section--dark {
  background: var(--c-bg);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.8125rem var(--s-6);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  min-height: 48px;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--c-gold);
  color: #080D14;
}
.btn-primary:hover {
  background: var(--c-gold-light);
  box-shadow: 0 0 24px rgba(245,158,11,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--c-gold);
  padding-inline: 0;
}
.btn-ghost:hover { color: var(--c-gold-light); }
.btn-ghost svg { transition: transform var(--t-fast); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-full { width: 100%; }

/* ─── Fade-in on scroll ──────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--s-5);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.nav--scrolled {
  background: rgba(8,13,20,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--c-gold);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.logo-eye {
  width: 22px;
  height: 22px;
  color: #080D14;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-white);
}

.logo-text span {
  color: var(--c-gold);
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-8);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--t-fast);
}

.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { width: 100%; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.nav-hamburger:hover { background: rgba(255,255,255,0.06); }

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 190;
  display: flex;
  flex-direction: column;
  padding: var(--nav-h) var(--s-6) var(--s-8);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}

.nav-mobile.is-open { transform: none; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding-top: var(--s-8);
}

.nav-mobile-links a {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--c-heading);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--c-border);
  letter-spacing: -0.02em;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.nav-mobile-links a:hover {
  color: var(--c-gold);
  padding-left: var(--s-3);
}

.nav-mobile-cta {
  margin-top: var(--s-8);
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .nav { padding-inline: var(--s-8); }
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh; /* fallback */
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Background layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(26,86,219,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(245,158,11,0.08) 0%, transparent 50%),
    #080D14;
  z-index: 0;
}

/* Dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--s-5);
  padding-block: var(--s-20) var(--s-12);
  max-width: 860px;
  width: 100%;
}

/* Radar ping decoration */
.hero-ping {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 200px;
  height: 200px;
  display: none;
  z-index: 0;
}

.hero-ping-dot {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
}

.hero-ping-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(245,158,11,0.6);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-ping-ring:nth-child(2) { animation-delay: 0.8s; }
.hero-ping-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes ping {
  0% { width: 8px; height: 8px; opacity: 1; }
  100% { width: 140px; height: 140px; opacity: 0; }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: rgba(245,158,11,0.1);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-6);
  animation: fadeDown 0.6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Headline */
.hero h1 {
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--s-6);
  color: var(--c-white);
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--c-gold);
}

/* Sub-tagline */
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--c-muted);
  margin-bottom: var(--s-8);
  max-width: 560px;
  margin-inline: auto;
  animation: fadeUp 0.7s ease 0.2s both;
}

/* Service pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: var(--s-10);
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-pill {
  padding: var(--s-2) var(--s-4);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text);
  white-space: nowrap;
}

/* CTAs */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* Scroll arrow — hidden on mobile to prevent overlapping CTAs */
.hero-scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.7s ease 0.6s both;
  z-index: 1;
}

.hero-scroll svg {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero-ping { display: block; }
  .hero-scroll { display: flex; }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-block: var(--s-24) var(--s-16);
  }
}

/* =============================================================================
   TRUST BAR
   ============================================================================= */
.trust {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: var(--s-4);
  padding-inline: var(--s-5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4);
  border: none;
}

/* Dividers: right border on col 1, bottom border on first row only (4 items = 2x2) */
.trust-item:nth-child(odd)  { border-right: 1px solid var(--c-border); }
.trust-item:nth-child(1),
.trust-item:nth-child(2)    { border-bottom: 1px solid var(--c-border); }

.trust-item svg {
  color: var(--c-gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.trust-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

.trust-item-label strong {
  color: var(--c-heading);
  display: block;
  font-size: 0.8125rem;
}

/* Tablet+: single row flex */
@media (min-width: 768px) {
  .trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: var(--s-5);
  }

  .trust-item {
    padding-inline: var(--s-6);
    border: none !important;
    white-space: nowrap;
  }

  .trust-item:not(:last-child) {
    border-right: 1px solid var(--c-border) !important;
  }

  .trust-item-label { font-size: 0.8125rem; }
  .trust-item-label strong { font-size: 0.875rem; }
}

/* =============================================================================
   SERVICES
   ============================================================================= */
.services-header {
  text-align: center;
  margin-bottom: var(--s-12);
}

.services-header .section-sub {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}

.service-card:hover {
  border-color: var(--c-border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
  color: var(--c-gold);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: var(--s-4);
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  transition: gap var(--t-fast), color var(--t-fast);
}

.service-link:hover { gap: var(--s-2); color: var(--c-gold-light); }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { padding: var(--s-8); }
  .service-card h3 { font-size: 1.0625rem; }
  .service-card p { font-size: 0.9375rem; }
}

/* =============================================================================
   WHY WATCHFUL
   ============================================================================= */
.why {
  background: var(--c-bg);
}

.why-inner {
  display: grid;
  gap: var(--s-12);
}

.why-header { margin-bottom: var(--s-8); }

.why-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

.pillar {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
}

.pillar-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  min-width: 3rem;
  font-variant-numeric: tabular-nums;
}

.pillar-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.pillar-content p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-graphic {
  width: min(380px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-eye-outer {
  width: 100%;
  height: 100%;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.why-eye-mid {
  width: 65%;
  height: 65%;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  animation: spin-slow 20s linear infinite reverse;
}

.why-eye-inner {
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.why-eye-core {
  width: 48px;
  height: 48px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080D14;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px rgba(245,158,11,0.5);
}

.why-tick-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.why-tick {
  width: 6px;
  height: 6px;
  background: rgba(245,158,11,0.4);
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: var(--s-20);
  }
  .why-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================================================
   GPS PRODUCTS TEASER
   ============================================================================= */
.products {
  background: var(--c-surface);
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-10);
}

.product-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.product-card:hover {
  border-color: var(--c-border-gold);
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0D1B2A 0%, #162030 50%, #0D1B2A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.08) 0%, transparent 65%);
}

.product-img svg {
  color: rgba(245,158,11,0.35);
  position: relative;
  z-index: 1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  padding: var(--s-1) var(--s-3);
  background: var(--c-gold);
  color: #080D14;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}

.product-body {
  padding: var(--s-6);
}

.product-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: var(--s-5);
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: -0.02em;
}

.product-price span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0;
}

.products-cta {
  text-align: center;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================================
   HOW IT WORKS
   ============================================================================= */
.how {
  background: var(--c-bg);
}

.how-header {
  text-align: center;
  margin-bottom: var(--s-12);
}
.how-header .section-sub { margin-inline: auto; }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  position: relative;
}

.step {
  display: flex;
  gap: var(--s-6);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--c-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-gold);
  background: rgba(245,158,11,0.05);
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.step p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-8);
  }
  .step { flex-direction: column; text-align: center; }
  .step-num { margin-inline: auto; }

  /* Connector line */
  .how-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(33% - 0px);
    right: calc(33% - 0px);
    height: 1px;
    background: linear-gradient(90deg, var(--c-border-gold), rgba(245,158,11,0.1), var(--c-border-gold));
  }
}

/* =============================================================================
   STATS
   ============================================================================= */
.stats {
  background: var(--c-surface);
  border-block: 1px solid var(--c-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--c-surface);
  padding: var(--s-8) var(--s-6);
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s-2);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================================
   ABOUT
   ============================================================================= */
.about {
  background: var(--c-bg);
}

.about-inner {
  display: grid;
  gap: var(--s-12);
}

.about-text p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--s-6);
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-meta {
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.psira-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--c-muted);
  font-weight: 500;
  align-self: flex-start;
}

.psira-badge strong { color: var(--c-heading); }
.psira-badge svg { color: var(--c-gold); }

.parent-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: var(--c-muted);
  font-weight: 500;
  padding: var(--s-3) var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  align-self: flex-start;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.parent-brand:hover { border-color: var(--c-border-gold); color: var(--c-gold); }
.parent-brand svg { color: var(--c-gold); }
.parent-brand strong { color: var(--c-heading); }

/* Coverage map placeholder */
.about-map {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  color: var(--c-muted);
  font-size: 0.9375rem;
  overflow: hidden;
  position: relative;
}

.about-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 45% 55%, rgba(26,86,219,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 70% 30%, rgba(245,158,11,0.05) 0%, transparent 60%);
}

.about-map svg {
  color: rgba(245,158,11,0.2);
  position: relative;
  z-index: 1;
}

.about-map p {
  font-size: 0.8125rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--s-20);
  }
}

/* =============================================================================
   CONTACT
   ============================================================================= */
.contact {
  background: var(--c-surface);
}

.contact-inner {
  display: grid;
  gap: var(--s-12);
}

.contact-form-wrap {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}

.contact-form-flash {
  margin-bottom: var(--s-5);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form-flash--error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5;
}

.contact-form-flash--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #86efac;
}

.form-group {
  margin-bottom: var(--s-5);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-heading);
  margin-bottom: var(--s-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.8125rem var(--s-4);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-heading);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-group select option { background: var(--c-surface); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  display: block;
  margin-top: var(--s-2);
  font-size: 0.8125rem;
  color: #fca5a5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-top: var(--s-4);
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  line-height: 1.5;
}

.form-note svg { flex-shrink: 0; color: var(--c-gold); margin-top: 1px; }

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-12) var(--s-6);
  gap: var(--s-4);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,158,11,0.1);
  border: 1.5px solid var(--c-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.contact-info-head .section-sub { max-width: none; }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.channel {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast);
}

.channel:hover { border-color: var(--c-border-gold); }

.channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.channel-label {
  font-size: 0.75rem;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.channel-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-heading);
  margin-top: 2px;
}

.whatsapp-cta {
  margin-top: var(--s-2);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .contact-inner {
    grid-template-columns: 3fr 2fr;
    align-items: start;
    gap: var(--s-12);
  }
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-block: var(--s-12) var(--s-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--c-border);
}

.footer-brand .logo-text { font-size: 1.25rem; }
.footer-brand .logo-mark { width: 44px; height: 44px; }

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin-top: var(--s-4);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--s-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--c-muted);
  transition: color var(--t-fast);
}

.footer-col ul a:hover { color: var(--c-gold); }

.footer-social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.social-btn:hover {
  background: rgba(245,158,11,0.1);
  border-color: var(--c-border-gold);
  color: var(--c-gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.footer-legal a { color: var(--c-muted); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--c-gold); }

.footer-icatch {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer-icatch:hover { color: var(--c-gold); }

@media (min-width: 640px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
