/* ================================================================
   BLACKSHIFT CAPITAL — Institutional Stylesheet
   Palette: Cyan #00d2ff · Purple #bd00ff · Black #000
   Font: Montserrat
   ================================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --bs-cyan: #00d2ff;
  --bs-cyan-rgb: 0, 210, 255;
  --bs-cyan-dim: rgba(0, 210, 255, 0.06);
  --bs-purple: #bd00ff;
  --bs-purple-rgb: 189, 0, 255;
  --bs-black: #000000;

  --bs-text-primary: #f0f0f0;
  --bs-text-secondary: #b0b0b0;
  --bs-text-dim: #888888;
  --bs-text-muted: #666666;

  --bs-border: rgba(255, 255, 255, 0.08);
  --bs-border-hover: rgba(255, 255, 255, 0.15);
  --bs-card-bg: rgba(12, 12, 12, 0.75);
  --bs-card-bg-hover: rgba(18, 18, 18, 0.92);

  --font-main: 'Montserrat', sans-serif;
  --container-max: 1140px;
  --header-h: 80px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #000;
  color: var(--bs-text-primary);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* --- TEXT SELECTION --- */
::selection {
  background: var(--bs-purple);
  color: #fff;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #060606; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--bs-purple); }

/* --- FOCUS --- */
:focus-visible {
  outline: 2px solid var(--bs-cyan);
  outline-offset: 2px;
}

/* --- SKIP LINK (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--bs-cyan);
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- BACKGROUND --- */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../ge-bg.jpg') no-repeat center center / cover;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.96) 100%);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bs-border);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo .wordmark {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bs-text-secondary);
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: var(--bs-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: all 0.3s var(--ease-out);
}

.btn-nav:hover,
.btn-nav:focus-visible {
  border-color: var(--bs-cyan);
  background: rgba(var(--bs-cyan-rgb), 0.08);
  color: var(--bs-cyan);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  position: relative;
}

.hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-content {
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bs-cyan);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  max-width: 800px;
  margin-bottom: 1.75rem;
}

.hero-body {
  max-width: 620px;
  color: var(--bs-text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  background: var(--bs-cyan);
  border: none;
  transition: all 0.3s var(--ease-out);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fff;
  box-shadow: 0 0 24px rgba(var(--bs-cyan-rgb), 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bs-text-primary);
  background: transparent;
  border: 1px solid var(--bs-border-hover);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--bs-purple);
  background: rgba(var(--bs-purple-rgb), 0.08);
}

/* Animated line */
.data-line {
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  margin: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--bs-purple), transparent);
  animation: pulseMove 4s linear infinite;
}

.pulse--cyan {
  background: linear-gradient(90deg, transparent, var(--bs-cyan), transparent);
  animation-duration: 3s;
}

@keyframes pulseMove {
  0% { left: -15%; }
  100% { left: 100%; }
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section--alt {
  background: rgba(0, 0, 0, 0.5);
}

.section--dark {
  background: #000;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--bs-border);
  margin: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bs-purple);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-lead {
  max-width: 720px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--bs-text-secondary);
}

/* ================================================================
   CARDS
   ================================================================ */
.grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bs-card-bg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--bs-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--bs-border-hover);
  background: var(--bs-card-bg-hover);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--bs-cyan);
}

.card-icon--purple {
  color: var(--bs-purple);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
}

.card p {
  font-size: 0.9rem;
  color: var(--bs-text-dim);
  line-height: 1.75;
}

/* Key numbers (stat cards) */
.stat-card {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-border);
  padding: 2rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bs-cyan);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bs-text-dim);
  line-height: 1.5;
}

/* Pipeline visual */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.pipeline-step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--bs-border);
  background: var(--bs-card-bg);
  position: relative;
  text-align: center;
}

.pipeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--bs-cyan);
  z-index: 2;
  opacity: 0.6;
}

.pipeline-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bs-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.pipeline-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.pipeline-step p {
  font-size: 0.82rem;
  color: var(--bs-text-dim);
  line-height: 1.65;
}

/* ================================================================
   FORM
   ================================================================ */
.form-container {
  background: rgba(8, 8, 8, 0.92);
  padding: 3rem;
  border: 1px solid var(--bs-border);
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bs-text-dim);
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #050505;
  border: 1px solid #2a2a2a;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--bs-cyan);
  outline: none;
}

.form-input::placeholder {
  color: #444;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: #0a0a0a;
  color: #fff;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--bs-cyan);
  cursor: pointer;
}

.form-check label {
  font-size: 0.8rem;
  color: var(--bs-text-dim);
  line-height: 1.6;
  cursor: pointer;
}

.form-check a {
  color: var(--bs-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Phone input overrides for intl-tel-input */
.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
  background: #050505;
  border: 1px solid #2a2a2a;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease-out);
}

.iti__tel-input:focus {
  border-color: var(--bs-cyan);
  outline: none;
}

.iti__country-container {
  background: #0a0a0a;
}

.iti__dropdown-content {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
}

.iti__search-input {
  background: #111;
  color: #fff;
  border-color: #2a2a2a;
}

.iti__country.iti__highlight {
  background: rgba(var(--bs-cyan-rgb), 0.15);
}

.iti__country-name,
.iti__dial-code {
  color: #ccc;
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Submit */
.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  background: var(--bs-cyan);
  border: none;
  margin-top: 0.5rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.submit-btn:hover:not(:disabled) {
  background: #fff;
  box-shadow: 0 0 24px rgba(var(--bs-cyan-rgb), 0.2);
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.submit-btn.loading {
  color: transparent;
  pointer-events: none;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form messages */
.form-message {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  display: none;
}

.form-message--success {
  display: block;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #00c864;
}

.form-message--error {
  display: block;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  color: #ff5555;
}

/* Turnstile */
.cf-turnstile {
  margin-bottom: 1rem;
}

/* ================================================================
   PERFORMANCE / DISCLAIMER BANNER
   ================================================================ */
.disclaimer-inline {
  font-size: 0.72rem;
  color: var(--bs-text-muted);
  line-height: 1.65;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bs-border);
}

.disclaimer-inline a {
  color: var(--bs-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #000;
  border-top: 1px solid var(--bs-border);
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--bs-border);
}

.footer-brand img {
  height: 28px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--bs-text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bs-text-dim);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--bs-text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--bs-cyan);
}

.footer-compliance {
  padding-top: 2.5rem;
  font-size: 0.7rem;
  color: #555;
  line-height: 1.7;
  max-width: 900px;
}

.footer-compliance p {
  margin-bottom: 1rem;
}

.footer-compliance a {
  color: var(--bs-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--bs-border);
  font-size: 0.72rem;
  color: #444;
}

.footer-bottom a {
  color: #555;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--bs-cyan);
}

/* ================================================================
   COMPLIANCE PAGE
   ================================================================ */
.page-header {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--bs-border);
}

.page-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}

.page-header p {
  margin-top: 0.75rem;
  color: var(--bs-text-dim);
  font-size: 0.9rem;
}

.page-content {
  padding: 3rem 0 5rem;
}

.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.2px;
}

.page-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bs-text-primary);
  margin: 2rem 0 0.75rem;
}

.page-content p {
  font-size: 0.9rem;
  color: var(--bs-text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 780px;
}

.page-content ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  color: var(--bs-text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--bs-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================================
   SVG VISUALS
   ================================================================ */
.visual-entropy {
  max-width: 100%;
  height: auto;
  margin: 3rem auto 0;
  display: block;
  opacity: 0.5;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .pipeline-step:nth-child(2)::after {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--bs-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.82rem;
  }

  .nav-links a::after {
    display: none;
  }

  .btn-nav {
    margin: 0.75rem 0 0;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

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

  .pipeline-step::after {
    display: none !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
