@charset "UTF-8";

:root {
  --white: #ffffff;
  --black: #000000;
  --red: #d30808;
  --ink: #0a0d14;
  --ink-light: #151b28;
  --ink-mid: #1e2637;
  --wire: #00e5c3;
  --wire-dim: #00b89c;
  --teal: #00957a;
  --wire-glow: rgba(0, 229, 195, 0.18);
  --gold: #f5c842;
  --text: #e8edf5;
  --muted: #8a97b0;
  --border: rgba(255, 255, 255, 0.07);
  --card: rgba(255, 255, 255, 0.04);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
a,
button {
  cursor: pointer;
}
/* ─── NOISE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Syne", sans-serif;
  line-height: 1.1;
}
h1,
.h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h2,
.h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3,
.h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}
h4,
.h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  color: var(--muted);
  font-size: 1.05rem;
}

.accent {
  color: var(--wire);
}
.gold {
  color: var(--gold);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: 100px 0;
}

/*No Bullets*/
.no-bullets ul,
.no-bullets ol {
  padding-left: 0;
  list-style: none;
}

/* ─── GLOW BLOBS ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-teal {
  background: rgba(0, 229, 195, 0.12);
}
.blob-blue {
  background: rgba(45, 100, 255, 0.1);
}
.blob-gold {
  background: rgba(245, 200, 66, 0.07);
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: inline-block;
  position: relative;
  z-index: 10;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--wire));
}

.btn-nav {
  background: var(--wire);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.btn-nav:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 24px rgba(0, 229, 195, 0.4);
}

/* ─── HERO ─── */
#hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.25);
  color: var(--wire);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wire);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 12px var(--wire);
  }
  50% {
    box-shadow:
      0 0 22px var(--wire),
      0 0 40px rgba(0, 229, 195, 0.3);
  }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .underline-wire {
  position: relative;
  display: inline-block;
}

.hero-title .underline-wire::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--wire);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px var(--wire));
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--wire);
  color: var(--ink);
  padding: 16px 32px;
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Syne", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(0, 229, 195, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 195, 0.35);
}

.btn-ghost {
  color: var(--text);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Map Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.map-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}

.map-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-title-group span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.live-badge {
  background: rgba(0, 229, 195, 0.15);
  color: var(--wire);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 195, 0.3);
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}
.live-badge:before,
.live-badge:after {
  content: "";
  background-color: var(--wire);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-flex;
  vertical-align: middle;
  margin-right: 5px;
  position: absolute;
  left: 8px;
  top: 10px;
}
.live-badge:after {
  animation: pulse2 1.5s ease infinite;
}

.wire-name {
  font-size: 0.8rem;
  color: var(--muted);
}

.map-surface {
  background: linear-gradient(145deg, #0f1824 0%, #111d2b 50%, #0d1520 100%);
  border-radius: 16px;
  height: 220px;
  position: relative;
  /* overflow: hidden; */
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Fake map grid */
.map-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 195, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 195, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Fake roads */
.road {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.road-h {
  height: 6px;
}
.road-v {
  width: 6px;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: translate(-50%, -100%);
}

.pin-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  position: relative;
}
.pin-bubble:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--wire);
  border-radius: 50%;
  z-index: -1;
}

@keyframes pulse2 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.pin-bubble::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: inherit;
}

.pin-label {
  background: rgba(10, 13, 20, 0.8);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
  margin-top: 4px;
}

.pin-a .pin-bubble {
  background: var(--wire);
  border-top-color: var(--wire);
  color: var(--ink);
}
.pin-b .pin-bubble {
  background: #f5c842;
  border-top-color: #f5c842;
  color: var(--ink);
}
.pin-c .pin-bubble {
  background: #ff6b6b;
  border-top-color: #ff6b6b;
  color: #fff;
}
.pin-d .pin-bubble {
  background: #6b9fff;
  border-top-color: #6b9fff;
  color: #fff;
}
.pin-bubble.active:before {
  animation: pulse2 1.5s ease-out alternate;
}
.pin-a {
  top:50%;
  left:32%;
}
.pin-b {
  top:80%;
  left:68%;
}
.pin-c {
  top:42%;
  left:60%;
}
.pin-d {
  top:85%;
  left:22%;
}
/* .pin-b .pin-bubble:before {
  animation-delay: var(--delay);
}
.pin-c .pin-bubble:before {
  animation-delay: var(--delay);
}
.pin-d .pin-bubble:before {
  animation-delay: var(--delay);
} */

.accuracy-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 229, 195, 0.2);
  background: rgba(0, 229, 195, 0.05);
  transform: translate(-50%, -50%);
}

/* Trip path */
.trip-path {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.member-strip {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.member-chip {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.member-chip-name {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  color: var(--text);
  margin-bottom: 2px;
}

.member-chip-loc {
  font-size: 0.7rem;
  color: var(--muted);
}

.member-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

/* ─── PROOF BAR ─── */
.loop-listing {
  background: var(--ink-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

/*Marquee*/
.marquee-container {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  will-change: transform;
}
.marquee-slide {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0 35px;
}
.marquee-slide a {
  position: relative;
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
}
.marquee-slide a::before {
  content: "";
  background-color: var(--wire);
  width: 5px;
  height: 5px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 12px;
}

/* ─── WIRE EXPLAINER ─── */
#wire-explainer {
  position: relative;
  overflow: hidden;
}

.wire-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wire);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 229, 195, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 195, 0.2);
}

.section-title {
  margin-bottom: 20px;
}
.section-desc {
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.wire-diagram {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.wire-diagram::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.wire-code-box {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wire-code-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wire-code-value {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wire);
  letter-spacing: 0.15em;
}

.copy-btn {
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.25);
  color: var(--wire);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}

.wire-members {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wire-member-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
}

.member-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Syne", sans-serif;
  color: var(--text);
}

.member-status {
  font-size: 0.75rem;
  color: var(--muted);
}

.member-speed {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(0, 229, 195, 0.15);
  border: 1px solid rgba(0, 229, 195, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--wire);
  font-size: 0.7rem;
}

/* ─── FEATURES GRID ─── */
#features {
  position: relative;
  overflow: hidden;
}

.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.features-header p {
  margin-top: 16px;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(0, 229, 195, 0.2);
  transform: translateY(-4px);
}

.feature-card.featured {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.07) 0%,
    rgba(0, 229, 195, 0.02) 100%
  );
  border-color: rgba(0, 229, 195, 0.2);
  grid-column: span 2;
}

.feature-card.featured-tall {
  grid-row: span 2;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 229, 195, 0.1);
  border: 1px solid rgba(0, 229, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.feature-card .feature-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.feature-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wire);
}

.feature-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

/*Download App*/
.download-app-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 10px;
}
.download-app-buttons img {
  max-height: 70px;
}

.app-slider {
  background: var(--ink-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-slider .swiper {
  width: 100%;
}
.app-slider .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: auto;
}
.app-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-slider .swiper-slide-active::before {
  content: "";
  background-image: url(../images/mobiles/iphone-slider.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  width: 98%;
  height: 98%;
  inset: 0;
  margin: auto;
  z-index: 99;
}
.app-slider .swiper-slide-shadow-left,
.app-slider .swiper-slide-shadow-right {
  background-image: none;
}

/* ─── TRIP TRACKING ─── */
#trips {
  position: relative;
  overflow: hidden;
}

.trips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.trip-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trip-entry {
  display: flex;
  gap: 20px;
}

.trip-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.trip-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--wire);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 229, 195, 0.4);
  border: 2px solid var(--ink);
}

.trip-dot.end {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.4);
  animation: blink 0.5s linear infinite alternate;
}
.trip-dot.stop {
  background: var(--muted);
  box-shadow: none;
}
@keyframes blink {
  from {
    opacity: 1;
    box-shadow: 0 0 30px rgba(245, 200, 66, 1);
  }
  to {
    opacity: 0.5;
    box-shadow: 0 0 0 rgba(245, 200, 66, 0);
  }
}
.trip-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0, 229, 195, 0.3),
    rgba(0, 229, 195, 0.1)
  );
  min-height: 40px;
}

.trip-content {
  padding-bottom: 32px;
  flex: 1;
}

.trip-entry:last-child .trip-content {
  padding-bottom: 0;
}

.trip-time {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trip-place {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.trip-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.trip-history-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.trip-history-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trip-history-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trip-history-info {
  flex: 1;
}

.trip-history-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 3px;
}

.trip-history-detail {
  font-size: 0.75rem;
  color: var(--muted);
}

.trip-history-dist {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--wire);
}

/* ─── HOW IT WORKS ─── */
#how-it-works {
  position: relative;
  overflow: hidden;
}

.steps-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 72px;
}

.steps-header p {
  margin-top: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 25px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--wire),
    rgba(0, 229, 195, 0.2),
    rgba(0, 229, 195, 0.2),
    transparent
  );
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--ink-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.step:first-child .step-num {
  background: var(--wire);
  color: var(--ink);
  border-color: var(--wire);
  box-shadow: 0 0 24px rgba(0, 229, 195, 0.3);
}

.step h4 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ─── MAP INTEGRATION ─── */
#maps {
  position: relative;
  overflow: hidden;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.maps-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-int-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.3s;
}

.map-int-card:hover {
  border-color: rgba(0, 229, 195, 0.2);
}

.map-int-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.map-int-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.map-int-desc {
  font-size: 0.88rem;
  line-height: 1.65;
}

.signal-visual {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
}

.signal-rings {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 229, 195, 0.2);
  animation: expand 3s ease-out infinite;
}

.signal-ring:nth-child(1) {
  width: 50px;
  height: 50px;
  animation-delay: 0s;
}
.signal-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  animation-delay: 0.7s;
}
.signal-ring:nth-child(3) {
  width: 130px;
  height: 130px;
  animation-delay: 1.4s;
}
.signal-ring:nth-child(4) {
  width: 160px;
  height: 160px;
  animation-delay: 2.1s;
}

@keyframes expand {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.signal-center {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 1;
  box-shadow: 0 0 24px rgba(0, 229, 195, 0.4);
}

.mode-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.mode-badge {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-badge.active {
  background: rgba(0, 229, 195, 0.1);
  border-color: rgba(0, 229, 195, 0.3);
  color: var(--wire);
}

.signal-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto 20px;
  text-align: left;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.testimonials-header p {
  margin-top: 14px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.testimonial-card.featured-t {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 195, 0.06) 0%,
    rgba(0, 229, 195, 0.02) 100%
  );
  border-color: rgba(0, 229, 195, 0.2);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--wire);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.author-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ─── CTA SECTION ─── */
#download {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 195, 0.08) 0%,
    transparent 65%
  );
  border-radius: 50%;
}

.cta-box h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-box p {
  margin-bottom: 40px;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.store-btn {
  background: var(--text);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  transition: all 0.25s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.store-btn.dark {
  background: var(--ink-mid);
  color: var(--text);
  border: 1px solid var(--border);
}

.store-icon {
  font-size: 1.5rem;
}

.store-info-small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
}
.store-info-big {
  font-size: 1rem;
}

.cta-footnote {
  font-size: 0.82rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ─── Contact Us ─── */
.contact {
  padding-top: 160px;
  padding-bottom: 80px;
}

.contact-info li + li {
  margin-top: 15px;
}
.contact-info li span {
  width: 100%;
  display: block;
  font-weight: 600;
  color: var(--wire);
}
.contact-info li button,
.contact-info li a {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.contact-info li a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.form-group.full {
  grid-column: span 2;
}
@media (max-width: 479px) {
  .form-group {
    grid-column: span 2;
  }
}
.form-button {
  margin-top: 15px;
}

/*Common Form Fields*/
select {
  background-image: url("../images/icons/select-arrow.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 10px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select option {
  color: var(--ink-light);
}
.form-group {
  margin-bottom: 0;
}
.form-group label {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 5px;
  padding-right: 8px;
}
.form-group label sup {
  position: absolute;
  right: 0;
  font-size: 13px;
  color: var(--red);
}
.form-field {
  width: 100%;
  background-color: var(--card);
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
}
textarea.form-field {
  height: auto;
  min-height: 110px;
  resize: none;
}

/*Common Tables*/
table {
  border-collapse: collapse;
  width: 100%;
}
td,
th {
  border: 1px solid var(--border);
  text-align: left;
  padding: 8px 15px;
  color: var(--muted);
}
tr:nth-child(even) {
  background-color: var(--card);
}
th {
  font-size: 700;
  color: var(--wire);
}

/* ─── FOOTER ─── */
.privacy-and-terms {
  padding-top: 160px;
  padding-bottom: 80px;
}
.privacy-and-terms h1 {
  margin-bottom: 40px;
}
.privacy-and-terms h2,
.privacy-and-terms h3,
.privacy-and-terms h4,
.privacy-and-terms h5,
.privacy-and-terms p,
.privacy-and-terms ul,
.privacy-and-terms ol,
.privacy-and-terms table {
  margin-bottom: 20px;
}
.privacy-and-terms ul,
.privacy-and-terms ol {
  padding-left: 18px;
}
.privacy-and-terms li {
  font-size: 1.05rem;
  color: var(--muted);
}
.privacy-and-terms li::marker {
  color: var(--wire);
}
.privacy-and-terms p strong,
.privacy-and-terms li strong {
  font-weight: 500;
  color: var(--wire);
}
.privacy-and-terms li + li {
  margin-top: 10px;
}
.privacy-and-terms a {
  color: var(--wire);
}
.privacy-and-terms a:hover {
  text-decoration: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wire);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  font-size: 0.83rem;
  color: var(--muted);
}

.map-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-badge a,
.map-badge button {
  background: var(--card);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 6px 14px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up.d1 {
  animation-delay: 0.1s;
}
.fade-up.d2 {
  animation-delay: 0.2s;
}
.fade-up.d3 {
  animation-delay: 0.3s;
}
.fade-up.d4 {
  animation-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */

/*Menu Button*/
.menuIcon {
  position: relative;
  width: 30px;
  height: 25px;
  display: none;
  cursor: pointer;
}
.menuIcon.active {
  z-index: 101;
}
.menuIcon span {
  position: relative;
  background-color: var(--muted);
  width: 100%;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menuIcon span:nth-child(2) {
  width: 80%;
  margin: 8px 0;
  margin-left: auto;
}
.menuIcon.active span:nth-child(1) {
  -moz-transform: rotate(45deg) translate(8px, 8px);
  -o-transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px);
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
}
.menuIcon.active span:nth-child(2) {
  opacity: 0;
}
.menuIcon.active span:nth-child(3) {
  -moz-transform: rotate(-45deg) translate(7px, -7px);
  -o-transform: rotate(-45deg) translate(7px, -7px);
  -ms-transform: rotate(-45deg) translate(7px, -7px);
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  transform: rotate(-45deg) translate(7px, -7px);
}
.page_tags {
  display: flex;
  gap: 40px;
}
.main-outer {
  background-color: #fff;
}

@media (max-width: 900px) {
  .hero-grid,
  .wire-explainer-grid,
  .trips-grid,
  .maps-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.featured {
    grid-column: span 1;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .steps-connector {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    padding: 48px 28px;
  }
}

/* FAQ */
.faq-page {
  --teal: #00957a;
  --teal-dark: #006d5a;
  --teal-light: #e6f7f4;
  --teal-mid: #b3e8df;
  --text: #1e2d28;
  --body: #3d5248;
  --surface: #f5faf8;
  --border1: #daeae5;
  --bg: #fafcfb;
  --white: #ffffff;
  --border-mid: #c2dbd5;
  --gold: #e8a020;
  --radius: 16px;
  --radius-sm: 10px;
}
/* ── HERO ── */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 149, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 149, 122, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(0, 149, 122, 0.18) 0%,
    transparent 70%
  );
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 149, 122, 0.15);
  border: 1px solid rgba(0, 149, 122, 0.3);
  color: #5dd9c4;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5dd9c4;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 18px;
}

.hero h1 em {
  color: #5dd9c4;
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Search */
.search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 0;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 50px;
  outline: none;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.search-input::placeholder {
  color: #aaa;
}

.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0, 149, 122, 0.2);
}

.search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--border1);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.search-clear.visible {
  display: flex;
}

/* Hero wave bottom */
.hero-wave {
  margin-top: 60px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ── STATS ROW ── */
.stats-row {
  background: var(--white);
  border-bottom: 1px solid var(--border1);
  padding: 0;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--border1);
  transition: background 0.2s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.4rem;
}

.stat-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}

.stat-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── MAIN LAYOUT ── */
.main-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 28px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 100px;
  margin-top: 50px;
}

.sidebar-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 12px;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.sidebar-nav li a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-mid);
}

.sidebar-nav li a.active {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-mid);
  font-weight: 700;
}

.sidebar-nav li a .cat-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-nav li a .cat-count {
  margin-left: auto;
  background: var(--border1);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
}

.sidebar-nav li a.active .cat-count {
  background: rgba(0, 149, 122, 0.15);
  color: var(--teal);
}

.sidebar-contact {
  margin-top: 28px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: var(--radius);
  padding: 20px;
}

.sidebar-contact h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.sidebar-contact p {
  font-size: 0.82rem;
  color: var(--body);
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
  margin-bottom: 12px;
}

.sidebar-contact a,
.sidebar-contact button {
  display: block;
  border: 0;
  background-color: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 4px;
  cursor: pointer;
}
.sidebar-contact a svg,
.sidebar-contact button svg {
  max-width: 15px;
  height: auto;
  vertical-align: middle;
}

.sidebar-contact a:hover,
.sidebar-contact button:hover {
  text-decoration: underline;
}

/* ── FAQ CONTENT ── */
.faq-section {
  margin-bottom: 0;
  padding: 50px 0 0;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border1);
}

.section-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.section-header h2 {
  flex: 1;
}

.section-count {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--teal-light);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--teal-mid);
}

/* ── ACCORDION ── */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border1);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.faq-item:hover {
  border-color: var(--teal-mid);
}

.faq-item.open {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(0, 149, 122, 0.08);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-item.open .faq-question {
  background: var(--teal-light);
}

.faq-q-num {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
  background: rgba(0, 149, 122, 0.1);
  border: 1px solid rgba(0, 149, 122, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
  margin-top: 2px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.faq-q-text {
  flex: 1;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.2s,
    border-color 0.2s;
  margin-top: 1px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--teal);
  border-color: var(--teal);
}

.faq-chevron svg {
  display: block;
}

.faq-item.open .faq-chevron svg path {
  stroke: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 1200px;
}

.faq-answer-inner {
  padding: 4px 24px 24px 24px;
  padding-left: calc(24px + 42px + 14px);
  /* align with text */
}

.faq-answer-inner p {
  font-size: 0.96rem;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: var(--text);
  font-weight: 600;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
  margin: 10px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer-inner ul li,
.faq-answer-inner ol li {
  font-size: 0.94rem;
  color: var(--body);
  line-height: 1.7;
}

.faq-answer-inner ul li::marker {
  color: var(--teal);
}

.faq-answer-inner ol li::marker {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--teal);
}

/* Callout inside answer */
.faq-note {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 12px 0;
}

.faq-note p {
  font-size: 0.88rem !important;
  color: var(--teal-dark) !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

.faq-warn {
  background: #fff8e6;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 12px 0;
}

.faq-warn p {
  font-size: 0.88rem !important;
  color: #7a5a00 !important;
  margin-bottom: 0 !important;
}

.faq-steps {
  background: var(--surface);
  border: 1px solid var(--border1);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 12px 0;
  counter-reset: steps;
}

.faq-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--body);
}

.faq-steps .step:last-child {
  margin-bottom: 0;
}

.faq-steps .step-n {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── NO RESULTS ── */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.no-results h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── RESULTS COUNT ── */
.results-info {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  display: none;
}

.results-info.visible {
  display: block;
}

.results-info strong {
  color: var(--teal);
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--ink);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(0, 149, 122, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.bottom-cta h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.bottom-cta h2 em {
  color: #5dd9c4;
  font-style: normal;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  font-style: italic;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(0, 149, 122, 0.3);
}

.btn-primary:hover {
  background: #00b396;
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
  background-color: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 24px rgba(0, 149, 122, 0.3);
  transform: translateY(-2px);
  /* color: var(--white); */
}

/* ── HIGHLIGHT for search ── */
mark {
  background: rgba(0, 149, 122, 0.15);
  color: var(--teal-dark);
  border-radius: 3px;
  padding: 0 2px;
}

.faq-section h2 {
  font-size: clamp(2rem, 2vw, 34px);
}

.footer-links a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .main-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    position: static;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-nav li a .cat-count {
    display: none;
  }

  .stats-inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--border1);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .faq-answer-inner {
    padding-left: 24px;
  }

  .nav-links {
    display: none;
  }
  body.scroll .nav-links {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-wrap {
    padding-inline: 15px;
  }

  .faq-section h2 {
    font-size: clamp(1.3rem, 5vw, 24px);
  }
}

/* ── FADE-IN ANIMATION ── */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  animation: fadeSlide 0.5s ease both;
}

.faq-section:nth-child(1) {
  animation-delay: 0.05s;
}

.faq-section:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-section:nth-child(3) {
  animation-delay: 0.15s;
}

.faq-section:nth-child(4) {
  animation-delay: 0.2s;
}

.faq-section:nth-child(5) {
  animation-delay: 0.25s;
}

.faq-section:nth-child(6) {
  animation-delay: 0.3s;
}

.faq-section:nth-child(7) {
  animation-delay: 0.35s;
}

.stat-icon svg {
  width: 35px;
  max-height: 35px;
  vertical-align: middle;
}
.search-icon svg,
.section-icon-wrap svg,
.cat-icon svg {
  width: 20px;
  max-height: 30px;
  vertical-align: middle;
}
.hero-ctas svg,
.cta-buttons svg {
  max-width: 18px;
  height: auto;
}
svg.svgs {
  max-width: 15px;
  height: auto;
  vertical-align: middle;
}
svg.svgs.small {
  max-height: 12px;
}
svg.svgs.lg {
  max-width: 30px;
  max-height: 30px;
}
