/* --- VARIABLES & RESET --- */
:root {
  --bg-color: #0b1020;
  --card-bg: rgba(255, 255, 255, 0.04);
  --primary: #5c86ff;
  --secondary: #1c2a52;
  --text-main: #ffffff;
  --text-muted: #a2adbf;
  --gradient: linear-gradient(135deg, #6aa3ff 0%, #2a3d74 100%);
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

main {
  padding-top: var(--header-height);
}

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- FONDO TECH ANIMADO --- */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
}

.glow-spot {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(92, 134, 255, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 10s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* --- HEADER --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  height: var(--header-height);
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-container img {
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(92, 134, 255, 0.35));
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--text-main);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px rgba(92, 134, 255, 0.4);
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  border: none;
  box-shadow: 0 0 25px rgba(92, 134, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(92, 134, 255, 0.35);
}

.nav-cta {
  display: none;
  margin-top: 16px;
}

/* --- HERO SECTION --- */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 20px;
  position: relative;
}

h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #b3b3b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-ai {
  color: var(--primary);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.console {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(92, 134, 255, 0.12);
  border-radius: 999px;
  background: rgba(9, 13, 24, 0.6);
  box-shadow: inset 0 0 6px rgba(92, 134, 255, 0.06);
  margin: 12px 0 18px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: var(--primary);
  max-width: min(92vw, 720px);
  width: 100%;
  overflow: hidden;
}

.terminal.compact {
  padding: 7px 14px;
  border-radius: 16px;
  box-shadow: inset 0 0 4px rgba(92, 134, 255, 0.04);
  color: var(--text-main);
}

.console-line {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1 1 auto;
}

.terminal.compact .console-line {
  font-size: 0.85rem;
}

.term-prefix {
  color: rgba(255, 255, 255, 0.85);
}

.term-status {
  color: rgba(255, 255, 255, 0.7);
}

.typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text-main);
  min-width: 0;
  flex: 1 1 auto;
}

.terminal-cursor {
  display: inline-block;
  width: 0;
  height: 1em;
  border-right: 2px solid var(--primary);
  opacity: 0.7;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- SECTIONS --- */
.section-title {
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.subsection-title {
  text-align: center;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.6rem;
  margin: 60px 0 30px;
  color: var(--text-main);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

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

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

.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-compact {
  padding: 28px 24px;
}

.card-compact h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.card-compact p {
  font-size: 0.9rem;
}

.term-line {
  display: block;
  line-height: 1.5;
}

.term-ts {
  color: rgba(255, 255, 255, 0.55);
}

.term-level {
  font-weight: 600;
}

.term-msg {
  color: var(--text-main);
}

.lvl-ok {
  color: var(--primary);
}

.lvl-info {
  color: #86a8ff;
}

.lvl-warn {
  color: #ffb357;
}

.lvl-err {
  color: #ff5c6c;
}

.icon-box {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
  color: var(--text-muted);
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.assessment {
  padding-top: 60px;
}

.services-accelerators {
  margin-top: 60px;
}

.accelerator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.accelerator-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.accelerator-card:hover {
  border-color: rgba(92, 134, 255, 0.35);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.accelerator-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.accelerator-header h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

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

.accelerator-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(92, 134, 255, 0.12);
  color: var(--primary);
}

.accelerator-bullets {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.accelerator-bullets li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bullet-icon {
  color: var(--primary);
  margin-top: 2px;
}

.accelerator-ideal {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.ideal-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.chip.is-active {
  border-color: rgba(92, 134, 255, 0.6);
  color: #fff;
  box-shadow: 0 0 12px rgba(92, 134, 255, 0.2);
}

.chip:focus-visible {
  outline: 2px solid rgba(92, 134, 255, 0.6);
  outline-offset: 2px;
}

.grid-four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-more {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
}

.services-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  list-style: none;
}

.services-more summary::-webkit-details-marker {
  display: none;
}

.services-more summary::after {
  content: '＋';
  float: right;
  color: var(--primary);
}

.services-more[open] summary::after {
  content: '－';
}

.services-more .grid {
  margin-top: 20px;
}

.assessment-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.assessment-panel {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.assessment-panel h3 {
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 12px;
}

.integration-security {
  padding-top: 60px;
}

.trust-header {
  margin-bottom: 36px;
}

.trust-header .subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  gap: 28px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.trust-card:hover {
  border-color: rgba(92, 134, 255, 0.45);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(92, 134, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.trust-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.assessment-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.metric:last-child {
  border-bottom: none;
}

.metric-label {
  color: var(--text-muted);
}

.metric-value {
  color: var(--text-main);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-info {
  margin-top: 24px;
  color: var(--text-muted);
}

.contact-info strong {
  color: var(--text-main);
}

.contact-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

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

input,
textarea {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-main);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(92, 134, 255, 0.4);
}

.form-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn.is-loading {
  opacity: 0.8;
}

.form-toast {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-fallback {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 22, 0.65);
}

.form-fallback[hidden] {
  display: none !important;
}

.fallback-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fallback-contacts a {
  color: var(--primary);
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- ASSESSMENT WIZARD --- */
.assessment-page .assessment-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.assessment-app {
  display: flex;
  justify-content: center;
}

.assessment-card {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.assessment-card h1,
.assessment-card h2 {
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 12px;
}

.assessment-title {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.assessment-progress {
  margin-bottom: 24px;
}

.assessment-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.assessment-progress-bar span {
  display: block;
  height: 100%;
  background: var(--gradient);
}

.assessment-progress-label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.question-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.question-example {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: -2px 0 16px;
}

.question-block {
  margin-bottom: 24px;
}

.question-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.question-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 22, 0.7);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.radio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.option-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(92, 134, 255, 0.12);
  color: var(--primary);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}

.option-btn:hover {
  border-color: rgba(92, 134, 255, 0.5);
  box-shadow: 0 0 16px rgba(92, 134, 255, 0.15);
}

.option-btn:focus-visible {
  outline: 2px solid rgba(92, 134, 255, 0.6);
  outline-offset: 2px;
}

.option-btn.is-selected {
  border-color: var(--primary);
  box-shadow: 0 0 18px rgba(92, 134, 255, 0.25);
}

.option-btn.is-selected .option-check,
.option-btn[aria-checked='true'] .option-check {
  opacity: 1;
  transform: scale(1);
}

.assessment-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.assessment-cta-stack {
  display: grid;
  gap: 8px;
}

.assessment-helper {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.assessment-helper.is-hidden {
  display: none;
}

.assessment-actions .hint {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.confidence-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(92, 134, 255, 0.15);
  font-size: 0.9rem;
}

.confidence-note {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.result-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.result-subtitle {
  margin: 6px 0 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-list li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
}

.quickwins {
  margin-bottom: 28px;
}

.quickwins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.quickwin-card h4 {
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 10px;
}

.quickwin-card ul {
  padding-left: 18px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quickwin-meta {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.security-microcopy {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.lead-card {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

@media (max-width: 900px) {
  .assessment-page .assessment-main {
    padding-top: 110px;
  }

  .assessment-page .nav {
    display: none;
  }

  .option-grid,
  .result-grid,
  .quickwins-grid {
    grid-template-columns: 1fr;
  }

  .result-header {
    flex-direction: column;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .accelerator-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  h1 {
    font-size: 2.6rem;
  }

  .logo-container img {
    height: 32px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 5%;
    right: 5%;
    background: rgba(8, 12, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: block;
  }

  .js .nav {
    display: none;
  }

  .js .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding: 48px 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .accelerator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .subsection-title {
    font-size: 1.4rem;
  }

  .container {
    padding: 80px 20px;
  }

  .accelerator-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
