@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

/* =========================================================================
   AGERO DESIGN SYSTEM (BY NFRAME) - LIGHT AGENCY THEME
   ========================================================================= */

:root {
  /* Colors */
  --bg-primary: #F8F9FB;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;
  
  --text-main: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --accent-blue: #2563EB;
  --accent-blue-hover: #1D4ED8;
  --accent-blue-light: #EFF6FF;
  --accent-blue-border: #DBEAFE;
  
  --accent-green: #059669;
  --accent-green-light: #ECFDF5;
  
  --accent-orange: #EA580C;
  --accent-orange-light: #FFF7ED;
  
  --accent-red: #E11D48;
  --accent-red-light: #FFF1F2;

  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --border-hover: #CBD5E1;

  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.04), 0 4px 8px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.06), 0 8px 16px -4px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 25px 45px -12px rgba(15, 23, 42, 0.1);

  /* Typography */
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --header-height: 76px;
  --container-max: 1240px;
  --radius-pill: 100px;
  --radius-card: 20px;
  --radius-sm: 12px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background grid noise effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

::selection {
  background-color: var(--accent-blue);
  color: #FFFFFF;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* AGERO PILL BADGES & LABELS */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-label, .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: var(--text-main);
  letter-spacing: -0.035em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* --- BUTTONS (AGERO PILL STYLE) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  gap: 8px;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--text-main);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.btn-primary:hover {
  background-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--border-hover);
  color: var(--text-main);
  transform: translateY(-2px);
}

/* --- PRELOADER --- */
#loader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  width: 280px;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.loader-brand .logo-accent {
  color: var(--accent-blue);
}

.loader-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--border-color);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 12px;
}

#loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue) 0%, #3B82F6 100%);
  border-radius: var(--radius-pill);
  transition: width 0.2s ease;
}

#loader-percent {
  color: var(--text-muted);
  font-weight: 600;
}

/* --- FLOATING PILL HEADER --- */
#site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 24px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

#site-header.scrolled .container {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.08);
  border-color: var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--accent-blue);
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

#site-nav a:not(.btn) {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

#site-nav a:not(.btn):hover {
  color: var(--text-main);
  background-color: var(--bg-tertiary);
}

#site-nav a:not(.btn).active {
  color: var(--text-main);
  background-color: var(--bg-tertiary);
  font-weight: 600;
}

.nav-cta {
  padding: 9px 20px !important;
  font-size: 0.85rem !important;
}

.nav-cta-secondary {
  background: var(--bg-tertiary) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
}

.nav-cta-secondary:hover {
  background: var(--border-color) !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-scroll-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-text-layers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-text-step {
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-20%, -50%);
  width: auto;
  opacity: 0;
  text-align: left;
}

.massive-hero-text {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-main);
  text-transform: uppercase;
}

.hero-pill {
  color: #FFFFFF;
  background: var(--text-main);
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .hero-text-step {
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
}

/* --- PROCESS SECTION --- */
.process {
  padding: 120px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-blue-border);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-blue);
  background-color: var(--accent-blue-light);
  border: 1px solid var(--accent-blue-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- TELEMETRY & PHONE SIMULATOR --- */
.telemetry {
  padding: 120px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.telemetry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.telemetry-info h2 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.telemetry-info p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.alert-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alert-checklist li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.neon-text-green { color: var(--accent-green); font-weight: 600; }
.neon-text-cyan { color: var(--accent-blue); font-weight: 600; }

/* Phone Mockup Frame */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  height: 600px;
  background-color: #0F172A;
  border: 10px solid #E2E8F0;
  border-radius: 44px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background-color: #000000;
  border-radius: 20px;
  z-index: 11;
}

.phone-header {
  padding: 14px 16px;
  background-color: #1E293B;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #3B82F6 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.phone-user-info h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  margin: 0;
}

.phone-user-info span {
  color: #94A3B8;
  font-size: 0.7rem;
}

.phone-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #0B1120;
}

.telegram-msg {
  background-color: #1E293B;
  color: #F1F5F9;
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: relative;
}

.telegram-msg-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #64748B;
  margin-top: 4px;
}

.phone-home-indicator {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-home-indicator::after {
  content: '';
  width: 120px;
  height: 4px;
  background-color: #475569;
  border-radius: 2px;
}

/* --- WIZARD CONFIGURATOR & TESTER --- */
.configurator {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.wizard-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.wizard-indicator-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background-color: var(--accent-blue);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.3s ease;
  width: 0%;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--border-color);
  transform: translateY(-50%);
  z-index: 0;
}

.wizard-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  transition: var(--transition-fast);
}

.wizard-dot.active {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
}

.wizard-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.wizard-option-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wizard-option-card:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-tertiary);
}

.wizard-option-card.selected {
  background-color: var(--accent-blue-light);
  border-color: var(--accent-blue);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.wizard-option-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wizard-option-card p {
  font-size: 0.875rem;
}

.wizard-summary-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--accent-blue);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-blue);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.upload-dropzone {
  border: 2px dashed var(--border-hover);
  background-color: var(--bg-primary);
  border-radius: var(--radius-sm);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.upload-dropzone:hover {
  border-color: var(--accent-blue);
  background-color: var(--accent-blue-light);
}

.upload-icon {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.upload-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-link {
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: underline;
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* --- WHY CHOOSE US SECTION --- */
.why-us {
  padding: 120px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.benefit-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue-border);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
}

.benefit-card h3 i {
  color: var(--accent-blue);
}

.important-notice {
  background-color: var(--accent-orange-light);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-card);
  padding: 32px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.important-notice blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #9A3412;
  margin: 14px 0;
  line-height: 1.4;
}

.important-notice p {
  color: #C2410C;
  font-size: 0.925rem;
}

/* --- FOOTER & CONTACT (AGERO LIGHT FINISH) --- */
footer {
  background-color: #FFFFFF;
  color: var(--text-main);
  padding: 90px 0 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.75rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-brand h3 .logo-accent {
  color: var(--accent-blue);
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-contact-details a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-contact-details a:hover {
  color: var(--accent-blue);
}

.footer-form h4 {
  color: var(--text-main);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-form p {
  color: var(--text-muted);
}

.footer-form .form-control {
  background-color: var(--bg-primary);
  border-color: var(--border-color);
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-form .form-control:focus {
  border-color: var(--accent-blue);
  background-color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--accent-blue);
}

/* --- FAQ ACCORDION STYLES --- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category-title i {
  color: var(--accent-blue);
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--accent-blue-border);
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-answer code {
  background-color: var(--bg-tertiary);
  color: var(--accent-blue);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .massive-hero-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  #site-header .container {
    padding: 8px 16px;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  #site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  #site-nav.active {
    display: flex;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .wizard-options-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .massive-hero-text {
    font-size: 2.4rem;
  }
  .wizard-container {
    padding: 24px;
  }
}
