/* ==========================================================================
   Tap & Trace - Design System & Modern Cyber Dark Theme
   ========================================================================== */

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

:root {
  /* Core Color Tokens */
  --bg-primary: #0d0e15;
  --bg-secondary: #12131c;
  --bg-surface: #181a26;
  --bg-surface-elevated: #222536;
  --bg-surface-hover: #2b2f44;
  
  --border-subtle: #25283b;
  --border-active: #3b405d;
  --border-highlight: rgba(108, 92, 231, 0.4);

  /* Accents */
  --accent-primary: #6c5ce7;
  --accent-primary-hover: #5b4cc4;
  --accent-primary-glow: rgba(108, 92, 231, 0.35);
  
  --accent-cyan: #00cec9;
  --accent-cyan-glow: rgba(0, 206, 201, 0.35);
  
  --accent-green: #00e676;
  --accent-yellow: #ffd166;
  --accent-red: #ff5252;
  --accent-blue: #00b0ff;

  /* Typography */
  --text-primary: #f8f9fc;
  --text-secondary: #a4b0be;
  --text-muted: #6c758d;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-code: 'Fira Code', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.25);
  --shadow-cyan-glow: 0 0 40px rgba(0, 206, 201, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(108, 92, 231, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 35%, rgba(0, 206, 201, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(108, 92, 231, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-elevated);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-active);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

code, pre {
  font-family: var(--font-code);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Badges & Accents */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.35);
  border-radius: var(--radius-full);
  color: #c7bfff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #dcd6ff 45%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #81ecec 0%, #00cec9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #5142cd 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--accent-primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(108, 92, 231, 0.5);
  background: linear-gradient(135deg, #7b6cf0 0%, #5a4bd6 100%);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.btn-playstore {
  background: #000000;
  border: 1px solid #33394d;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-playstore:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 206, 201, 0.2);
}
.btn-playstore svg {
  width: 28px;
  height: 28px;
}
.playstore-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}
.playstore-main {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(13, 14, 21, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37, 40, 59, 0.6);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}
.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-primary-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-link:hover {
  color: var(--text-primary);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: calc(var(--header-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  margin-top: 8px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-badges-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.hero-pill svg {
  color: var(--accent-cyan);
}

/* Device Mockup Showcase */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-primary-glow) 0%, rgba(0, 206, 201, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: #151622;
  border-radius: 42px;
  border: 4px solid #2d324d;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-screen {
  background: var(--bg-secondary);
  height: 680px;
  display: flex;
  flex-direction: column;
}

/* Simulated App UI Inside Phone */
.sim-app-bar {
  background: var(--bg-surface);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-url-bar {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-active);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sim-dev-btn {
  background: rgba(108, 92, 231, 0.25);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  border-radius: 8px;
  padding: 6px;
  display: flex;
}

.sim-webview {
  height: 40%;
  background: #ffffff;
  color: #1a1a1a;
  padding: 16px;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, sans-serif;
}
.sim-web-overlay {
  position: absolute;
  top: 48px;
  left: 14px;
  border: 2px solid var(--accent-cyan);
  background: rgba(0, 206, 201, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}
.sim-tag-pill {
  position: absolute;
  top: -18px;
  left: 0;
  background: var(--accent-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
}

.sim-dock-resizer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  cursor: row-resize;
  user-select: none;
  touch-action: none;
}
.sim-dock-resizer:hover {
  background: var(--bg-surface-hover);
}

.sim-dock-handle-pill {
  width: 36px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 2px;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.sim-dock-resizer:hover .sim-dock-handle-pill {
  background: var(--accent-primary);
  opacity: 1;
  width: 44px;
}

.sim-dock-pct {
  font-family: var(--font-code);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: var(--bg-primary);
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.sim-webview {
  transition: height 0.05s linear;
}

.sim-devtools-dock {
  height: 50%;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-active);
  display: flex;
  flex-direction: column;
  transition: height 0.05s linear;
}
.sim-dock-tabs {
  display: flex;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}
.sim-dock-tab {
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.sim-dock-tab.active {
  color: var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
  background: var(--bg-surface);
}

.sim-dock-body {
  flex: 1;
  padding: 10px;
  font-family: var(--font-code);
  font-size: 0.7rem;
  overflow-y: auto;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  background: var(--bg-surface-elevated);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.icon-purple { background: rgba(108, 92, 231, 0.15); color: #a29bfe; }
.icon-cyan { background: rgba(0, 206, 201, 0.15); color: var(--accent-cyan); }
.icon-green { background: rgba(0, 230, 118, 0.15); color: var(--accent-green); }
.icon-yellow { background: rgba(255, 209, 102, 0.15); color: var(--accent-yellow); }
.icon-red { background: rgba(255, 82, 82, 0.15); color: var(--accent-red); }
.icon-blue { background: rgba(0, 176, 255, 0.15); color: var(--accent-blue); }

.feature-title {
  font-size: 1.3rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.feature-list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Live Simulator Section
   ========================================================================== */
.simulator-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #10121d 50%, var(--bg-primary) 100%);
}

.sim-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sim-header {
  background: var(--bg-surface-elevated);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-tabs-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.sim-panel-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.sim-panel-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}
.sim-panel-btn.active {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-primary-glow);
}

.sim-content-body {
  min-height: 420px;
  padding: 24px;
}

.sim-pane {
  display: none;
}
.sim-pane.active {
  display: block;
}

/* Interactive Console in Simulator */
.interactive-console {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0e1017;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 16px;
}
.console-output-box {
  height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-code);
  font-size: 0.85rem;
}
.console-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.console-row.log-info { color: var(--accent-blue); }
.console-row.log-warn { color: var(--accent-yellow); }
.console-row.log-error { color: var(--accent-red); }
.console-row.log-result { color: var(--accent-cyan); }

.console-input-row {
  display: flex;
  gap: 12px;
}
.console-input-field {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-code);
  font-size: 0.9rem;
  outline: none;
}
.console-input-field:focus {
  border-color: var(--accent-primary);
}

.snippet-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.snippet-chip {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-code);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.snippet-chip:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-cyan);
}

/* ==========================================================================
   Comparison Table Section
   ========================================================================== */
.comparison-section {
  padding: 100px 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--bg-surface-elevated);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.comparison-table th.highlight-col {
  color: var(--accent-cyan);
  background: rgba(108, 92, 231, 0.12);
}

.comparison-table td.highlight-col {
  background: rgba(108, 92, 231, 0.05);
  font-weight: 600;
}

.check-icon {
  color: var(--accent-green);
  font-weight: 700;
}
.cross-icon {
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0 100px;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}
.faq-item.active {
  border-color: var(--border-active);
  background: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--accent-primary);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-secondary);
}

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  position: relative;
}

.cta-box {
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.25) 0%, rgba(24, 26, 38, 0.95) 70%);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-glow);
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 700px;
}

.cta-description {
  max-width: 600px;
  font-size: 1.15rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0a0b10;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(37, 40, 59, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-cta-group, .hero-badges-strip {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
