/* ============================================
   ACT – Adapt, Create, Thrive | Stylesheet
   ============================================ */

:root {
  --bg:          #02060F;
  --navy-mid:    #050C1A;
  --navy-card:   rgba(5, 12, 26, 0.72);
  --navy-border: rgba(255,255,255,0.07);
  --slate:       #5D7898;
  --slate-light: #96B0CB;
  --white:       #EDF4FF;
  --accent:      #00D4FF;
  --accent2:     #7B6EFF;
  --accent-glow: rgba(0, 212, 255, 0.22);
  --accent-dim:  rgba(0, 212, 255, 0.07);
  --green:       #00E89A;
  --red-soft:    #FF4D6A;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:    10px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.18); border-radius: 2px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  background: rgba(2, 6, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--navy-border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #00D4FF, #7B6EFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.63rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.84rem;
  color: var(--slate-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

.nav-links .nav-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(123,110,255,0.12));
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.84rem;
  border: 1px solid rgba(0,212,255,0.22);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, rgba(0,212,255,0.22), rgba(123,110,255,0.22));
  border-color: rgba(0,212,255,0.45);
  color: var(--white);
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  gap: 4px;
  border-top: 1px solid var(--navy-border);
}

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

.nav-mobile a {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--slate-light);
  font-weight: 400;
  border-bottom: 1px solid var(--navy-border);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--white); }

.nav-mobile .nav-cta {
  margin-top: 8px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 8px;
  color: var(--accent);
  padding: 12px;
  border-bottom: 1px solid rgba(0,212,255,0.28);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00D4FF 0%, #6C63FF 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,212,255,0.28), 0 4px 16px rgba(108,99,255,0.2);
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate-light);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid var(--navy-border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.04);
}

.btn-full { width: 100%; justify-content: center; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.orb-1 {
  width: 700px; height: 700px;
  background: rgba(0, 212, 255, 0.06);
  top: -250px; right: -150px;
  animation: drift 14s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: rgba(123, 110, 255, 0.08);
  bottom: 10%; left: -150px;
  animation: drift 18s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px; height: 400px;
  background: rgba(0, 212, 255, 0.04);
  top: 50%; left: 45%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33%  { transform: translate(40px, -30px); }
  66%  { transform: translate(-25px, 40px); }
}

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

.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.18);
  padding: 5px 14px 5px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.badge-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent); }
  50%       { opacity: 0.3; box-shadow: none; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #00D4FF 0%, #7B6EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--slate-light);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
}

.metric { display: flex; flex-direction: column; gap: 3px; }

.metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #00D4FF, #7B6EFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--slate);
  font-weight: 400;
  letter-spacing: 0.03em;
  max-width: 90px;
  line-height: 1.3;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: var(--navy-border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  position: relative;
  min-height: 440px;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #030812;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 36px 28px;
  border: 1px solid rgba(0,212,255,0.12);
  box-shadow: 0 0 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(0,212,255,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(123,110,255,0.1) 0%, transparent 60%);
  z-index: 0;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, #030812 100%);
  z-index: 0;
}

.hero-visual > * { position: relative; z-index: 1; }

.flow-card {
  width: 100%;
  max-width: 320px;
  background: rgba(5, 12, 26, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  animation: floatCard 6s ease-in-out infinite;
}

.fc-2 { animation-delay: -3s; }

.flow-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.fc-icon { flex-shrink: 0; color: var(--slate-light); display: flex; align-items: center; }

.fc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-text span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
}

.fc-text small {
  font-size: 0.72rem;
  color: var(--slate);
}

.fc-badge {
  font-size: 0.63rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fc-bad  { background: rgba(255,77,106,0.12); color: var(--red-soft); border: 1px solid rgba(255,77,106,0.25); }
.fc-good { background: rgba(0,232,154,0.1);   color: var(--green);    border: 1px solid rgba(0,232,154,0.25); }

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--accent);
}

.flow-arrow span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* ============ REVEAL ANIMATIONS ============ */
.line-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION SHARED ============ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, #00D4FF 0%, #7B6EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--slate-light);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ============ PAIN SECTION ============ */
.pain-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img-hex-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.055;
  z-index: 0;
}

.pain-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 18%,
    transparent 82%,
    var(--bg) 100%
  );
  z-index: 0;
}

.pain-section .section-inner { position: relative; z-index: 1; }

.pain-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(5, 12, 24, 0.6);
  border: 1px solid var(--navy-border);
  color: var(--slate-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.chip svg { flex-shrink: 0; opacity: 0.75; transition: opacity var(--transition); }
.chip:hover svg { opacity: 1; }
.chip[aria-pressed="true"] svg { opacity: 1; }

.chip:hover {
  border-color: rgba(0,212,255,0.3);
  color: var(--white);
  background: rgba(0,212,255,0.05);
}

.chip.selected,
.chip[aria-pressed="true"] {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.4);
  color: var(--accent);
}

.pain-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.pain-input-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--slate-light);
  letter-spacing: 0.02em;
}

.pain-textarea {
  width: 100%;
  background: rgba(5, 12, 24, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  resize: vertical;
  transition: border-color var(--transition);
  min-height: 100px;
}

.pain-textarea::placeholder { color: var(--slate); }

.pain-textarea:focus {
  outline: none;
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.06);
}

.pain-cta { align-self: flex-start; }

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

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step {
  width: 100%;
  max-width: 700px;
  background: rgba(5, 12, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--navy-border);
  border-left: 2px solid rgba(0,212,255,0.22);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  position: relative;
  transition: all var(--transition);
}

.step:hover {
  border-left-color: var(--accent);
  transform: translateX(6px);
  box-shadow: -4px 0 40px rgba(0,212,255,0.1), 0 8px 40px rgba(0,0,0,0.3);
  background: rgba(5, 14, 30, 0.8);
}

.step-num {
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  color: rgba(0,212,255,0.055);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-desc {
  color: var(--slate-light);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 460px;
}

.step-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.step-detail span {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.11);
  color: var(--slate-light);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 6px 0;
  color: rgba(0,212,255,0.38);
}

/* ============ PROOF ============ */
.proof-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.proof-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img-network.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.proof-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(2,6,15,0.55) 50%,
    var(--bg) 100%
  );
  z-index: 0;
}

.proof-section .section-inner { position: relative; z-index: 1; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  background: rgba(5, 12, 26, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--navy-border);
  border-top: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.proof-card:hover {
  border-color: rgba(0,212,255,0.13);
  border-top-color: rgba(0,212,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.38), 0 0 0 1px rgba(0,212,255,0.07);
}

.proof-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.proof-card p::before { content: '"'; color: var(--accent); font-size: 1.1em; font-style: normal; }
.proof-card p::after  { content: '"'; color: var(--accent); font-size: 1.1em; font-style: normal; }

.proof-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
}

.proof-card footer strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
}

.proof-card footer span {
  font-size: 0.74rem;
  color: var(--slate);
}

/* ============ CONTACT ============ */
.contact-section { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-left { padding-top: 8px; }

.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-light);
  font-weight: 300;
}

.contact-right {
  background: rgba(5, 12, 26, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--navy-border);
  border-top: 1px solid rgba(0,212,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea {
  background: rgba(2, 6, 15, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: all var(--transition);
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate); font-size: 0.88rem; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.06);
  background: rgba(0,212,255,0.03);
}

.form-group input.error,
.form-group textarea.error { border-color: rgba(255,77,106,0.45); }

.field-error {
  font-size: 0.73rem;
  color: var(--red-soft);
  min-height: 16px;
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--slate);
  text-align: center;
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background: rgba(0,232,154,0.05);
  border: 1px solid rgba(0,232,154,0.2);
  border-radius: var(--radius);
  margin-top: 4px;
}

.form-success[aria-hidden="false"] { display: flex; }

.form-success strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.form-success p {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--navy-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 0.8rem;
  color: var(--slate);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--slate);
  opacity: 0.5;
}

/* ============ SCROLL REVEAL ============ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 24px 60px;
    gap: 48px;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { display: none; }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left .section-sub { max-width: 100%; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .step { padding: 28px 24px; }
  .step-num { top: 24px; right: 24px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .contact-right { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-metrics { flex-direction: column; gap: 16px; align-items: flex-start; }
  .metric-divider { display: none; }
  .pain-chips { gap: 6px; }
  .chip { font-size: 0.78rem; padding: 8px 13px; }
}
