/* ============================================================================
   REAL INTELLIGENCE OPS - SHARED STYLES
   Design System: Dark theme with cyan accents, glass morphism, animations
   ============================================================================ */

:root {
  /* ── Core palette matched to RIO logo ── */
  --bg: #0D1109;                          /* dark olive — matches logo shield bg */
  --surface: rgba(255,255,255,0.03);
  --border: rgba(0,229,195,0.15);
  --cyan: #00E5C3;                        /* logo's primary teal */
  --cyan-dim: rgba(0,229,195,0.15);
  --cyan-glow: rgba(0,229,195,0.07);
  --white: #F5F0E8;                       /* warm cream — matches logo wordmark */
  --muted: rgba(245,240,232,0.5);
  --card-bg: rgba(255,255,255,0.025);
  /* ── Logo greens ── */
  --green-dark: #4A5E3A;                  /* logo shield stroke */
  --green-mid: #8BA888;                   /* logo dashed ring / subtext */
  --green-surface: rgba(74,94,58,0.15);
  /* ── Logo gradient (teal → blue) ── */
  --gradient: linear-gradient(135deg, #00E5C3 0%, #00A8FF 100%);
  --gradient-glow: rgba(0,168,255,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── GRID OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,195,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,195,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── RADIAL GLOW ORBS ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,195,0.09), transparent 70%);
  top: -100px;
  left: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,94,58,0.18), transparent 70%);
  bottom: 0;
  right: -80px;
  animation: drift2 15s ease-in-out infinite alternate;
}

/* subtle third orb — logo blue accent */
.glow-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,168,255,0.06), transparent 70%);
  top: 40%;
  right: 10%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  animation: drift1 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift1 {
  to {
    transform: translate(60px, 80px);
  }
}

@keyframes drift2 {
  to {
    transform: translate(-60px, -60px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(13, 17, 9, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.85;
}

/* SVG icon in nav */
.logo-icon {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Wordmark text next to icon */
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-item > button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a:hover,
.nav-item > button:hover {
  color: var(--cyan);
}

.nav-item.active > a {
  color: var(--cyan);
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.6rem;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 101;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(0, 245, 200, 0.1);
  color: var(--cyan);
}

.dropdown-menu a:first-child {
  border-radius: 11px 11px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 11px 11px;
}

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

.nav-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

.btn-nav {
  background: var(--gradient);
  color: #0D1109;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,229,195,0.3);
  opacity: 0.92;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  .nav-left {
    gap: 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    z-index: 99;
  }

  .dropdown-menu {
    position: static;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .dropdown-menu.active {
    max-height: 300px;
  }

  .nav-right {
    display: none;
  }
}

/* ── WRAPPER ── */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* ── HERO (FULL PAGE - LANDING) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* ── HERO (INNER PAGES) ── */
.hero-inner {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-headline .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gradient);
  color: #0D1109;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,229,195,0.3);
  opacity: 0.92;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 30px rgba(0, 245, 200, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--cyan);
}

/* ── HERO CTA ── */
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.mini-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 280px;
  transition: border-color 0.3s, background 0.3s;
}

.mini-input::placeholder {
  color: rgba(240, 244, 255, 0.3);
}

.mini-input:focus {
  border-color: var(--cyan);
  background: rgba(0, 245, 200, 0.04);
}

/* ── STATS ── */
.stats-row {
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── DIVIDER ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.section-desc {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-size: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

/* ── SERVICES GRID ── */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: rgba(0, 245, 200, 0.03);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.07), rgba(0, 245, 200, 0.02));
}

.service-card.featured:hover {
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.12), rgba(0, 245, 200, 0.04));
}

.service-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: #0D1109;
  background: var(--gradient);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.service-badge.coming-soon {
  background: transparent;
  color: var(--green-mid);
  border: 1px solid var(--green-dark);
}

/* Available cards — clickable, full color */
.service-card.available {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card.available:hover {
  background: rgba(0,229,195,0.05);
}

/* Coming soon cards — dimmed, not clickable */
.service-card.coming-soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.service-card.coming-soon .service-icon {
  filter: grayscale(0.8);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.3);
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 200, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

/* ── SPOTLIGHT ── */
.spotlight {
  padding: 0 0 100px;
}

.spotlight-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px;
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.05), rgba(5, 8, 16, 0) 60%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.spotlight-card::after {
  content: attr(data-label);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: rgba(0, 245, 200, 0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.spotlight-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-eyebrow::before {
  content: '▶';
  font-size: 0.5rem;
}

.spotlight-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.05;
}

.spotlight-title span {
  color: var(--cyan);
}

.spotlight-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 245, 200, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.83rem;
  color: var(--white);
  font-weight: 400;
}

.feature-pill::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.75rem;
}

/* ── LEAD FORM ── */
.lead-section {
  padding: 0 0 120px;
}

.form-container {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-left {
  background: linear-gradient(160deg, rgba(0, 245, 200, 0.08), rgba(5, 8, 16, 0));
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-left .section-label {
  margin-bottom: 12px;
  animation-delay: 0s;
}

.form-left .section-title {
  margin-bottom: 16px;
  font-size: 2rem;
  animation-delay: 0.1s;
}

.form-left .section-desc {
  margin-bottom: 0;
  animation-delay: 0.2s;
}

.form-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 244, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(0, 245, 200, 0.04);
}

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

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
}

.checkbox-group input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: bold;
  font-size: 0.75rem;
}

.checkbox-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  cursor: pointer;
  margin: 0;
}

.form-submit {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.form-submit button {
  width: 100%;
}

@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr;
  }

  .form-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 32px;
  }

  .form-right {
    padding: 40px 32px;
  }
}

/* ── PRICING TABLE ── */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.02), transparent);
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.pricing-card:hover {
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.07), transparent);
  border-color: var(--cyan);
}

.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.1), rgba(0, 245, 200, 0.02));
  transform: scale(1.02);
}

.pricing-tier {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--cyan);
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 245, 200, 0.1);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.75rem;
}

/* ── ACCORDION ── */
.faq-section {
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: background 0.3s;
  text-align: left;
}

.faq-trigger:hover {
  background: rgba(0, 245, 200, 0.03);
}

.faq-trigger::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid var(--cyan);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}

.faq-trigger::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--cyan);
  right: 24px;
}

.faq-trigger.active::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: var(--cyan);
  right: 24px;
  width: 8px;
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  background: rgba(255, 255, 255, 0.025);
}

.faq-content.active {
  padding: 0 24px 24px;
  max-height: 400px;
}

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

/* ── PROCESS STEPS ── */
.process-section {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 56px;
}

.process-step {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.process-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(0, 245, 200, 0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── TWO COLUMN LAYOUT ── */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.two-column-text h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.two-column-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.two-column-text ul {
  list-style: none;
  margin: 20px 0;
}

.two-column-text li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.two-column-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.two-column-image {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.05), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.two-column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

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

  .mini-input {
    width: 100%;
  }

  .wrapper {
    padding: 0 24px;
  }

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

  .spotlight-card {
    padding: 40px 32px;
  }

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

  .form-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 16, 0.5);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

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

.footer-socials a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── PROSE CONTENT ── */
.prose {
  max-width: 700px;
  margin: 60px auto;
}

.prose h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.prose h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.prose p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul,
.prose ol {
  margin: 24px 0;
  padding-left: 32px;
}

.prose li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.8;
}

.prose a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 245, 200, 0.3);
  transition: border-color 0.3s;
}

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

/* ── STATS CARDS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.02), transparent);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.stat-card-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--cyan);
  margin-bottom: 12px;
}

.stat-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.portfolio-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(0, 245, 200, 0.1), rgba(0, 245, 200, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  text-align: center;
  padding: 32px;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-category {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.portfolio-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── THANK YOU PAGE ── */
.thanks-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 32px;
}

.thanks-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.thanks-text {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
}

/* ── UTILITY ── */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.gap-24 {
  gap: 24px;
}

.gap-40 {
  gap: 40px;
}
