/* =========================================================
   COMPLETE CSS (REBRANDED THEME)
   Brand: Navy + Teal + Amber (clean tech)
========================================================= */

:root {
  /* Base */
  --bg: #f4f7fb;
  --text: #0b1220;
  --muted: #536070;
  --card: #ffffff;
  --border: rgba(11, 18, 32, 0.1);
  --shadow: 0 18px 45px rgba(11, 18, 32, 0.1);
  --shadow-soft: 0 10px 28px rgba(11, 18, 32, 0.08);

  /* Brand */
  --primary: #0b3b82; /* deep blue */
  --primary-2: #00b3c4; /* teal */
  --accent: #ffb020; /* amber */

  --radius: 18px;
  --radius-lg: 24px;

  --container: 1100px;
  --grad-a: #7a5bff; /* electric purple */
  --grad-b: #d65bff; /* neon magenta */
  --grad-c: #ff6a3d; /* warm orange */
  --grad-d: #4fd1ff; /* optional cyan highlight */
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}
h2 {
  background: linear-gradient(
    90deg,
    var(--grad-a) 0%,
    var(--grad-b) 38%,
    var(--grad-c) 76%,
    var(--grad-d) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* glow to match the neon look */
  text-shadow:
    0 10px 28px rgba(122, 91, 255, 0.18),
    0 12px 40px rgba(214, 91, 255, 0.12),
    0 18px 60px rgba(255, 106, 61, 0.1);
}
h3 {
  background: linear-gradient(
    90deg,
    var(--grad-a) 0%,
    var(--grad-b) 50%,
    var(--grad-c) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* softer glow than h1/h2 */
  text-shadow:
    0 6px 18px rgba(122, 91, 255, 0.16),
    0 8px 24px rgba(214, 91, 255, 0.1);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   Header / Nav
========================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(56 171 131 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-badge {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(11, 59, 130, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(11, 59, 130, 0.26);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

/* =========================
   Hero (Homepage)
========================== */
.hero {
  position: relative;
  padding: 58px 0 34px;
  overflow: hidden;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 59, 130, 0.5), rgba(0, 179, 196, 0.5)),
    url("/img/hero-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: #fff;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 50px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero .sub {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.hero-copy {
  padding: 18px 6px 18px 6px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel-title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
}

/* =========================
   Privacy Policy Page Hero
========================== */
.page-hero {
  position: relative;
  padding: 56px 0 34px;
  background:
    radial-gradient(
      900px 420px at 18% 10%,
      rgba(255, 176, 32, 0.18),
      rgba(255, 176, 32, 0) 55%
    ),
    radial-gradient(
      900px 420px at 85% 20%,
      rgba(0, 179, 196, 0.22),
      rgba(0, 179, 196, 0) 55%
    ),
    linear-gradient(135deg, var(--primary), #071a3a 55%, var(--primary-2));
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: #fff;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 70px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.meta-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.meta-title {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
}

.meta-card p {
  margin: 0;
  color: rgba(11, 18, 32, 0.68);
  font-size: 12px;
}

/* =========================
   Generic Sections
========================== */
section {
  background: #fff;
}

.section {
  padding: 54px 0;
}

.section-muted {
  background: var(--bg);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 59, 130, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.h2 {
  margin: 10px 0 10px;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.4px;
  line-height: 1.15;
  font-weight: 900;
}

.p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 10px;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.learn span {
  display: inline-block;
  transform: translateY(-1px);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.media-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #071a3a, #0b3b82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.media-card.light {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
}

.phone {
  width: 190px;
  height: 240px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, #0b3b82, #06102a);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 14px 12px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 179, 196, 0.25),
    rgba(255, 176, 32, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   Alternating feature boxes
========================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.feature-box {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 16px 45px rgba(11, 18, 32, 0.06);
  align-items: center;
}

.feature-box.right {
  grid-template-columns: 1.25fr 0.75fr;
}

.thumb {
  border-radius: 16px;
  min-height: 110px;
  background: linear-gradient(
    135deg,
    rgba(11, 59, 130, 0.14),
    rgba(0, 179, 196, 0.1)
  );
  border: 1px solid rgba(0, 179, 196, 0.16);
}

.thumb.alt {
  background: linear-gradient(
    135deg,
    rgba(0, 179, 196, 0.16),
    rgba(255, 176, 32, 0.1)
  );
  border-color: rgba(255, 176, 32, 0.18);
}

.feature-box h3 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.feature-box img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* =========================
   Callout band
========================== */
.callout {
  background: var(--bg);
}

.callout-pill {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(
    135deg,
    rgba(11, 59, 130, 0.14),
    rgba(0, 179, 196, 0.1)
  );
  border: 1px solid rgba(0, 179, 196, 0.16);
  overflow: hidden;
  position: relative;
}

.callout-pill::before {
  content: "";
  position: absolute;
  inset: -140px -140px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.55;
}

.callout-pill .h2 {
  margin-top: 0;
}

.callout-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   3-card infrastructure
========================== */
.cards-3 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   2x2 insight grid
========================== */
.grid-2x2 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(0, 179, 196, 0.18);
  background: linear-gradient(
    135deg,
    rgba(0, 179, 196, 0.1),
    rgba(255, 176, 32, 0.06)
  );
}

.mini h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.center-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* =========================
   Privacy-only helper blocks
========================== */
.notice {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 179, 196, 0.18);
  background: linear-gradient(
    135deg,
    rgba(0, 179, 196, 0.1),
    rgba(255, 176, 32, 0.06)
  );
}

.two {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.divider {
  height: 1px;
  background: rgba(11, 18, 32, 0.08);
  margin: 18px 0;
}

/* =========================
   Dark analytics section
========================== */
.dark {
  background: linear-gradient(135deg, #06102a, #0b3b82);
  color: #fff;
}

.dark .p {
  color: rgba(255, 255, 255, 0.78);
}

.dark .kicker {
  color: rgba(255, 255, 255, 0.88);
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* =========================
   Monitoring cards
========================== */
.monitor-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.monitor-card {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 179, 196, 0.18);
  background: linear-gradient(
    135deg,
    rgba(11, 59, 130, 0.14),
    rgba(0, 179, 196, 0.1)
  );
}

.monitor-card h3 {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 18px;
}

.monitor-card p {
  margin: 0;
  color: rgba(11, 18, 32, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

/* =========================
   FAQ
========================== */
.faq {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

details {
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: #fff;
  padding: 0 14px;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 4px;
  font-weight: 900;
  font-size: 14px;
  color: #071a3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

.chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 179, 196, 0.9);
  border-bottom: 2px solid rgba(0, 179, 196, 0.9);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
  margin-left: 10px;
}

details[open] .chev {
  transform: rotate(-135deg);
}

details .answer {
  padding: 0 4px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   Highlights + Footer
========================== */
.highlights {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: #fff;
  overflow: hidden;
}

.highlights-head {
  padding: 14px 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 179, 196, 0.12),
    rgba(255, 176, 32, 0.08)
  );
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  font-weight: 900;
}

.highlights-body {
  display: flex;
}

.highlights-body table {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}

.highlights-body tr:nth-child(even) {
  background-color: rgba(11, 18, 32, 0.04);
}

footer {
  background: rgb(56 171 131 / 92%);
  color: rgba(255, 255, 255, 0.82);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.footer-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

/* PLUS / MINUS ICON */
.toggle-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* horizontal line */
.toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* vertical line */
.toggle-icon::after {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* When open → turn PLUS into MINUS */
details[open] .toggle-icon::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

/* =========================
   Responsive
========================== */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .grid-2x2 {
    grid-template-columns: 1fr;
  }

  .monitor-grid {
    grid-template-columns: 1fr;
  }

  .feature-box,
  .feature-box.right {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  /* privacy hero responsive */
  .page-hero .wrap {
    grid-template-columns: 1fr;
  }

  .two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   Language switcher
========================== */
.language {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  z-index: 9999;
  align-self: center;
}

@media (max-width: 767px) {
  .language {
    font-size: 16px;
    margin-right: 15px;
  }
}

.language img {
  margin-right: 10px;
  width: 21px;
}

.language span {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 9px 15px;
  color: #fff;
}

.language span i {
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
}

.language-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: 0;
  text-align: center;
  min-width: 150px;
  display: none;
  background-color: rgba(7, 13, 26, 0.98);
  box-shadow: 0 0 12px -3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.language-list a {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  justify-content: flex-start;
  padding: 8px 10px;
}

.language-list a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.language:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.language:hover .language-list {
  display: block;
}

/* =========================
   Mobile Menu
========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.mobile-menu.open {
  display: block;
}

.mobile-sheet {
  position: absolute;
  top: 10px;
  right: 10px;
  width: min(320px, calc(100% - 20px));
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(7, 13, 26, 0.98),
    rgba(11, 59, 130, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  padding: 14px;
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-menu.open .mobile-sheet {
  transform: translateY(0);
  opacity: 1;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 6px 10px;
}

.mobile-title {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-links {
  display: grid;
  gap: 8px;
  padding: 6px;
}

.mobile-links a {
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-links a:hover {
  color: #fff;
  border-color: rgba(255, 176, 32, 0.35);
}

.mobile-divider {
  height: 1px;
  margin: 10px 6px;
  background: rgba(255, 255, 255, 0.12);
}

/* lock scroll when menu open */
body.menu-open {
  overflow: hidden;
}
