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

:root {
  --bg-cream: #F7F6F3;
  --bg-warm: #EDECEA;
  --bg-dark: #141414;
  --bg-dark-card: #1C1C1C;
  --text-dark: #111111;
  --text-medium: #6B6B6B;
  --text-light: #999999;
  --text-on-dark: #EBEBEB;
  --text-on-dark-muted: #888888;
  --accent: #2A2A2A;
  --accent-light: #E2E2E2;
  --accent-glow: #555555;
  --gold: #B8944F;
  --border: #DDDBD8;
  --border-dark: #2E2E2E;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* === Grain Overlay === */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(247, 246, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s;
}

.navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo span {
  font-weight: 300;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-right: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--text-medium);
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  padding: 32px;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 1.05rem;
  font-weight: 400;
}

.mobile-lang {
  margin: 8px 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 100px;
  padding: 14px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-light {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.95rem;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* === Hero === */
.hero {
  padding: 180px 0 140px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--text-medium);
  flex-shrink: 0;
}

.hero-text h1 {
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.hero-line {
  display: block;
}

.hero-italic {
  font-style: normal;
  color: var(--text-light);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

.proof-number {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero canvas */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual canvas {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1;
}

/* Hero curve transition */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 80px;
}

/* === Section Common === */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.02);
}

.section-tag-light {
  color: var(--text-on-dark-muted);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-dark);
}

h2 em {
  font-style: normal;
  color: var(--text-light);
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-top: 16px;
  font-weight: 300;
}

/* === Features (Orbital) === */
.features {
  padding: 100px 0 120px;
  background: var(--bg-warm);
}

.features-orbital {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

/* Orbital visual (left side) */
.orbital-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orbital-ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.orbital-logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.orbital-logo span {
  font-weight: 300;
  color: var(--text-medium);
}

/* Orbital icon buttons */
.orbital-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.orbital-icon:hover {
  border-color: var(--text-dark);
  transform: scale(1.08);
}

.orbital-icon.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
}

/* Position icons around the circle */
.orbital-icon-0 {
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}
.orbital-icon-0.active {
  transform: translateX(-50%) scale(1.1);
}
.orbital-icon-0:hover:not(.active) {
  transform: translateX(-50%) scale(1.08);
}

.orbital-icon-1 {
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
}
.orbital-icon-1.active {
  transform: translateY(-50%) scale(1.1);
}
.orbital-icon-1:hover:not(.active) {
  transform: translateY(-50%) scale(1.08);
}

.orbital-icon-2 {
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}
.orbital-icon-2.active {
  transform: translateX(-50%) scale(1.1);
}
.orbital-icon-2:hover:not(.active) {
  transform: translateX(-50%) scale(1.08);
}

.orbital-icon-3 {
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
}
.orbital-icon-3.active {
  transform: translateY(-50%) scale(1.1);
}
.orbital-icon-3:hover:not(.active) {
  transform: translateY(-50%) scale(1.08);
}

/* Content (right side) */
.orbital-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.orbital-content .section-tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-medium);
  padding: 7px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.02);
}

.orbital-slides {
  position: relative;
  min-height: 240px;
}

.orbital-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  transform: translateY(8px);
}

.orbital-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  transform: translateY(0);
}

.orbital-slide h2 {
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.orbital-slide p {
  font-family: var(--font-body);
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 420px;
  letter-spacing: 0.01em;
}

/* Navigation arrows */
.orbital-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.orbital-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-medium);
  transition: all 0.3s;
}

.orbital-arrow:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: #fff;
}

/* === How It Works === */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-cream);
}

.steps-timeline {
  max-width: 680px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 180px;
}

.step-item:last-child {
  min-height: auto;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
  margin-bottom: 16px;
}

.step-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, var(--text-dark) 0%, var(--border) 100%);
  min-height: 40px;
}

.step-content {
  padding-bottom: 48px;
}

.step-item:last-child .step-content {
  padding-bottom: 0;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
}

/* === Corridors === */
.corridors {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.corridors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section-header-light h2 {
  color: var(--text-on-dark);
}

.section-header-light h2 em {
  color: var(--text-on-dark-muted);
}

.section-header-light .section-description {
  color: var(--text-on-dark-muted);
}

.corridors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.corridor-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s;
}

.corridor-group:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.corridor-region {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.corridor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.corridor-group h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-on-dark);
  letter-spacing: -0.3px;
}

.corridor-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corridor-group li {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  transition: color 0.3s;
}

.corridor-group:hover li {
  color: var(--text-on-dark);
}

.corridor-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--text-on-dark-muted);
  transition: width 0.3s;
}

.corridor-group:hover li::before {
  width: 10px;
}

/* === Contact / CTA === */
.contact {
  padding: 0 0 120px;
  background: var(--bg-dark);
  position: relative;
}

.cta-block {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 50%, #111111 100%);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-content h2 em {
  color: rgba(255, 255, 255, 0.6);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-decoration {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  animation: cta-rotate 30s linear infinite;
}

.cta-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
}

.cta-circle-2 {
  width: 220px;
  height: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  animation: cta-rotate-centered 20s linear infinite reverse;
}

@keyframes cta-rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes cta-rotate-centered {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === Footer === */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  color: var(--text-on-dark);
  margin-bottom: 16px;
  display: inline-block;
}


.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  text-align: left;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  max-width: 860px;
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

/* === Animations === */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-reveal {
  opacity: 0;
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav-links, .btn-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 140px 0 120px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual canvas {
    max-width: 320px;
  }

  .features-orbital {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .orbital-ring {
    width: 320px;
    height: 320px;
  }

  .orbital-visual {
    order: -1;
  }

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

  .cta-block {
    padding: 56px 32px;
  }

  .cta-decoration {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .orbital-ring {
    width: 260px;
    height: 260px;
  }

  .orbital-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .orbital-icon svg {
    width: 20px;
    height: 20px;
  }

  .orbital-icon-0 { top: -22px; }
  .orbital-icon-1 { right: -22px; }
  .orbital-icon-2 { bottom: -22px; }
  .orbital-icon-3 { left: -22px; }

  .orbital-content {
    text-align: center;
    align-items: center;
  }

  .orbital-slide p {
    max-width: none;
  }

  .orbital-nav {
    justify-content: center;
  }

  .step-item {
    grid-template-columns: 56px 1fr;
  }

  .cta-block {
    padding: 48px 24px;
    text-align: center;
  }

  .cta-content {
    max-width: none;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 12px;
  }
}
