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

:root {
  --bg-deep: #060a14;
  --bg-surface: #0b1221;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(15, 23, 42, 0.85);
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.15);
  --violet: #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.15);
  --emergency: #ef4444;
  --emergency-glow: rgba(239, 68, 68, 0.25);
  --text-primary: #e2e8f0;
  --text-secondary: #64748b;
  --text-muted: #475569;
  --border-cyan: rgba(0, 229, 255, 0.12);
  --border-violet: rgba(124, 58, 237, 0.12);
  --glow-cyan: 0 0 24px rgba(0, 229, 255, 0.08);
  --glow-violet: 0 0 24px rgba(124, 58, 237, 0.08);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Cascadia Code", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border-cyan);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.25));
  transition: filter 0.3s ease;
}

.logo:hover svg {
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.5));
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.nav a:hover {
  color: var(--cyan);
}

.btn-emergency-nav {
  background: rgba(239, 68, 68, 0.12) !important;
  color: var(--emergency) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: none !important;
  font-family: var(--font-sans) !important;
  border: 1px solid rgba(239, 68, 68, 0.25) !important;
  transition: all 0.2s !important;
}

.btn-emergency-nav:hover {
  background: rgba(239, 68, 68, 0.2) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.15) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  padding-bottom: 16px;
  border-top: 1px solid var(--border-cyan);
  padding-top: 16px;
}

.mobile-menu a {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  letter-spacing: 0.5px;
}

.mobile-menu a:hover {
  color: var(--cyan);
}

.mobile-menu .btn-emergency-nav {
  text-align: center;
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 35% at 85% 50%, rgba(124, 58, 237, 0.025), transparent);
  pointer-events: none;
}

/* Scan line effect */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 255, 0.015) 2px,
    rgba(0, 229, 255, 0.015) 4px
  );
  pointer-events: none;
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Attack surface visualization */
.attack-surface-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.attack-surface-svg {
  width: 100%;
  height: 100%;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero-primary {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: -120px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-location {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-top: 16px;
}

.attack-viz {
  flex: 0 0 240px;
  padding-top: 4px;
  z-index: 2;
}

.attack-viz svg {
  width: 100%;
  height: auto;
}

.hero-dashboard {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 24px;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}

.hero-headline {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 14px;
  white-space: nowrap;
}

.rotating-line-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 20px;
}

.rotating-prompt {
  color: var(--violet);
  font-weight: 700;
  opacity: 0.7;
}

.rotating-text {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.1);
}

.cursor-blink {
  color: var(--cyan);
  font-weight: 700;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-strapline {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseRing 2s ease-out infinite;
}

.hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.hero h1 .highlight-cyan {
  color: var(--cyan);
  text-shadow: 0 0 50px rgba(0, 229, 255, 0.4), 0 0 100px rgba(0, 229, 255, 0.2);
}

.hero h1 .highlight-violet {
  color: var(--violet);
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 22px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Periodic scan sweep */
.scan-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.scan-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.02) 50%, transparent 100%);
  animation: scanSweep 14s ease-in-out infinite;
}

@keyframes scanSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  2% { opacity: 0.4; }
  10% { opacity: 0.4; }
  12% { opacity: 0; transform: translateX(200%); }
  100% { opacity: 0; transform: translateX(200%); }
}

@media (max-width: 900px) {
  .scan-sweep { display: none; }
}

@media (max-width: 860px) {
  .hero-headline {
    font-size: 32px;
    white-space: normal;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.btn-cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.btn-cyan:hover {
  background: rgba(0, 229, 255, 0.18);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
  transform: translateY(-1px);
}

.btn-emergency {
  background: rgba(239, 68, 68, 0.1);
  color: var(--emergency);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-emergency:hover {
  background: rgba(239, 68, 68, 0.18);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
  transform: translateY(-1px);
}

.btn-solid-cyan {
  background: var(--cyan);
  color: var(--bg-deep);
  font-weight: 700;
}

.btn-solid-cyan:hover {
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* ===== TELEMETRY BAR ===== */
.telemetry-bar {
  background: rgba(0, 229, 255, 0.02);
  border-top: 1px solid rgba(0, 229, 255, 0.06);
  border-bottom: 1px solid rgba(0, 229, 255, 0.06);
  padding: 6px 0;
  overflow: hidden;
  position: relative;
}

.telemetry-scroll {
  display: flex;
  gap: 40px;
  animation: scrollTelemetry 60s linear infinite;
  width: max-content;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.6;
}

.telemetry-item .value {
  color: var(--cyan);
}

.telemetry-item .sep {
  color: var(--violet);
  opacity: 0.4;
}

@keyframes scrollTelemetry {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--violet);
  opacity: 0.5;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}

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

.text-center .section-tag {
  justify-content: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-6 { margin-bottom: 24px; }

/* ===== GLASS CARD ===== */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  transition: all 0.3s;
}

.glass:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* ===== SERVICE CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  display: block;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover::before {
  opacity: 0.6;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS (timeline) ===== */
.steps-wrapper {
  position: relative;
}

.steps-line-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), transparent);
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 1024px) {
  .steps-line-track {
    display: block;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.step-reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 28px;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1px;
  font-weight: 600;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.step-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.1);
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.step-spacer {
  flex: 1;
}

@media (max-width: 1024px) {
  .step {
    flex-direction: column !important;
  }
  .step-spacer {
    display: none;
  }
}

/* ===== WHY CHOOSE US ===== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-violet);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s;
}

.reason-card:hover {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: var(--glow-violet);
  transform: translateY(-2px);
}

.reason-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.reason-icon svg {
  width: 16px;
  height: 16px;
  color: var(--violet);
}

.reason-card h3 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.reason-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.04), transparent);
  pointer-events: none;
}

.emergency-banner h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.emergency-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 28px;
  position: relative;
}

/* ===== CONTACT FORM ===== */
.form-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.form-group label .required {
  color: var(--emergency);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(6, 10, 20, 0.6);
  border: 1px solid var(--border-cyan);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.08);
}

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

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-deep);
  color: var(--text-primary);
}

.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Success message */
.success-message {
  text-align: center;
  padding: 48px 24px;
}

.success-message .check-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-message .check-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.success-message h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.success-message p {
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-cyan);
  margin-top: 80px;
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer h3 {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.footer p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: var(--text-secondary);
  font-size: 13px;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-cyan);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--font-mono);
}

/* ===== SUB-PAGES ===== */
.page-header {
  padding: 80px 0 48px;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
  margin-top: 14px;
  line-height: 1.7;
}

.back-link {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.back-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.alert-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 40px;
}

.alert-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}

.info-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 40px;
}

.info-box.note {
  border-color: rgba(0, 229, 255, 0.2);
}

.content-section {
  max-width: 760px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.checklist {
  list-style: none;
  margin-bottom: 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.checklist li strong {
  color: var(--text-primary);
}

.checklist li .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist li .check svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.ordered-list {
  list-style: none;
  margin-bottom: 32px;
}

.ordered-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ordered-list li .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.ordered-list li strong {
  color: var(--text-primary);
}

.cta-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: 28px;
  margin-top: 32px;
}

.cta-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.cta-box-emergency {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.15);
}

.about-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    flex-direction: column !important;
  }
  .step-spacer { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.open { display: block; }
  .mobile-menu { padding-top: 6px; padding-bottom: 6px; }
  .mobile-menu a { padding: 6px 0; }

  header { padding: 12px 24px; }
  .nav { padding: 12px 24px; }
  .header-inner { height: 56px; }

  .logo svg { width: 32px; height: 32px; }
  .logo-text { font-size: 14px; letter-spacing: 2px; }

  .hero {
    padding: 16px 24px 32px;
    min-height: auto;
  }
  .hero-primary { margin-top: 0; padding-top: 8px; }
  .hero h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hero-content { padding: 48px 0; }
  .hero-strapline { max-width: 400px; }
  .hero p {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }
  .hero-location { letter-spacing: normal; font-size: 10px; line-height: 1.3; }
  .hero-badge { white-space: nowrap; padding: 3px 10px; font-size: 9px; animation: none; }

  .rotating-line-wrapper {
    font-size: 14px;
    min-height: auto;
    flex-wrap: wrap;
  }
  .rotating-text { text-shadow: none; transition: opacity 0.3s ease; }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 20px;
    font-size: 1rem;
  }
  .btn-emergency { white-space: nowrap; background: transparent; }
  .btn-group { flex-direction: column; padding: 0 12px; }

  .section { padding: 60px 0; }
  .section-title, h2 {
    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 1.05;
  }

  .card-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .telemetry-bar { display: none; }

  .page-header h1 { font-size: 28px; }
  .page-header { padding: 48px 0 32px; }

  .emergency-banner { padding: 32px 24px; }
  .emergency-banner h2 { font-size: 24px; }

}

/* ===== GLASS CARD CYAN BORDER ACCENT (reusable) ===== */
.glass-cyan {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  transition: all 0.3s;
}
.glass-cyan:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow-cyan);
}
