@charset "UTF-8";
:root {
  --navy: #0b1120;
  --navy2: #131e35;
  --teal: #00c896;
  --teal2: #00a87e;
  --coral: #ff5f4b;
  --white: #ffffff;
  --off: #f6f8fb;
  --mid: #e8edf5;
  --muted: #6b7a99;
  --text: #1a2240;
  --r: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.15;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.page-header {
  padding: 160px 0 80px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.page-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.page-header--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-header--dark h1 {
  color: var(--white);
}
.page-header--dark h1 em {
  font-style: normal;
  color: var(--teal);
}
.page-header--dark p {
  color: rgba(255, 255, 255, 0.65);
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -40px) scale(1.05);
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #00e0a8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 200, 150, 0.4);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn-form-back {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--mid);
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-form-back:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-form-next {
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  background: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-form-next:hover {
  background: var(--teal2);
  transform: translateY(-1px);
}
.btn-form-next svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.btn-form-submit {
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  background: var(--teal);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-form-submit:hover {
  background: #00e0a8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 150, 0.35);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, box-shadow 0.4s;
}

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

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}
.logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-links a.active {
  color: var(--teal);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: translateY(-1px);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--mid);
  padding: 14px 0;
}
nav.scrolled .logo {
  color: var(--navy);
}
nav.scrolled .nav-links a {
  color: var(--text);
}
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active {
  color: var(--teal2);
}
nav.scrolled .nav-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
nav.scrolled .nav-cta:hover {
  background: var(--teal2);
  border-color: var(--teal2);
}

nav.nav-light .logo {
  color: var(--navy);
}
nav.nav-light .nav-links a {
  color: var(--text);
}
nav.nav-light .nav-links a:hover, nav.nav-light .nav-links a.active {
  color: var(--teal2);
}
nav.nav-light .nav-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
nav.nav-light .nav-cta:hover {
  background: var(--teal2);
  border-color: var(--teal2);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

nav.scrolled .nav-hamburger .hamburger-line,
nav.nav-light .nav-hamburger .hamburger-line {
  background: var(--navy);
}

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

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(0, 200, 150, 0.18) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0, 100, 200, 0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 60% 70%, rgba(255, 95, 75, 0.08) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: rgba(0, 200, 150, 0.12);
  top: -100px;
  right: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 100, 255, 0.1);
  bottom: 0;
  left: -60px;
  animation-delay: -4s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 95, 75, 0.08);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.h-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  position: relative;
}

.h-card-main {
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.h-card-back {
  position: absolute;
  top: -16px;
  right: -16px;
  left: 16px;
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 16px;
  height: 100%;
  z-index: 2;
}

.h-card-back2 {
  position: absolute;
  top: -30px;
  right: -30px;
  left: 30px;
  background: rgba(0, 100, 200, 0.06);
  border: 1px solid rgba(100, 150, 255, 0.15);
  border-radius: 16px;
  height: 100%;
  z-index: 1;
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
}

.metric-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.metric-val span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
}

.metric-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.card-stages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stage-dot.done {
  background: var(--teal);
}
.stage-dot.active {
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: pulse 2s infinite;
}
.stage-dot.pending {
  background: rgba(255, 255, 255, 0.2);
}

.stage-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stage-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--teal);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 5s ease-in-out infinite;
  z-index: 10;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #0098d4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.badge-text span {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  display: block;
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0 0;
  margin-top: 48px;
  display: flex;
  gap: 48px;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-num em {
  color: var(--teal);
  font-style: normal;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  font-weight: 300;
}

.marquee-strip {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

.what {
  background: var(--off);
}

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

.what-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #0098d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}
.what-card:hover::before {
  transform: scaleX(1);
}
.what-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.what-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.what-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.what-icon svg {
  width: 26px;
  height: 26px;
}
.what-icon.teal {
  background: rgba(0, 200, 150, 0.12);
}
.what-icon.teal svg {
  stroke: var(--teal);
}
.what-icon.blue {
  background: rgba(0, 120, 255, 0.1);
}
.what-icon.blue svg {
  stroke: #0078ff;
}
.what-icon.coral {
  background: rgba(255, 95, 75, 0.1);
}
.what-icon.coral svg {
  stroke: var(--coral);
}

.process {
  background: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  padding-bottom: 48px;
}
.process-step:last-child {
  padding-bottom: 0;
}
.process-step::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--mid));
}
.process-step:last-child::after {
  display: none;
}
.process-step:hover .step-num {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(0, 200, 150, 0.12);
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.step-content {
  padding-top: 16px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

.step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.step-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  background: var(--off);
  border: 1px solid var(--mid);
  padding: 4px 12px;
  border-radius: 100px;
}

.why {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0, 200, 150, 0.1) 0%, transparent 70%);
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.why-text h2 em {
  font-style: normal;
  color: var(--teal);
}
.why-text > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

.why-point-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-point-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  font-weight: 300;
}

.why-visual {
  position: relative;
}

.why-img-box {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #131e35 0%, #0d1a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.circuit {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.circuit svg {
  width: 100%;
  height: 100%;
}

.why-img-caption {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: linear-gradient(to top, rgb(11, 17, 32) 0%, transparent 100%);
  width: 100%;
}
.why-img-caption h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-img-caption p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.why-float-stat {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--teal);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 200, 150, 0.3);
}

.why-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.why-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intake {
  background: var(--off);
}

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

.intake-info h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.intake-info > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.intake-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intake-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.intake-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.intake-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.intake-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.intake-feature-text p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.intake-form {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.form-validation-banner {
  background: rgba(255, 95, 75, 0.08);
  border: 1.5px solid var(--coral);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}
.form-validation-banner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-weight: 700;
}
.form-validation-banner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-validation-banner li {
  color: var(--coral);
  font-weight: 400;
}
.form-validation-banner li::before {
  content: "—";
  margin-right: 8px;
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}

.form-progress-step {
  height: 4px;
  border-radius: 2px;
  flex: 1;
  background: var(--mid);
  transition: background 0.4s;
}
.form-progress-step.active {
  background: var(--teal);
}

.form-section {
  display: none;
}
.form-section.active {
  display: block;
}

.form-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
  background: var(--off);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.1);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field .field-validation-error {
  font-size: 12px;
  color: var(--coral);
  font-weight: 500;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
}

input[type=range] {
  width: 100%;
  appearance: none;
  height: 6px;
  background: var(--mid);
  border-radius: 3px;
  outline: none;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 200, 150, 0.4);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.range-labels span {
  font-size: 11px;
  color: var(--muted);
}

.range-val {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 4px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--mid);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}
.check-item.selected {
  border-color: var(--teal);
  background: rgba(0, 200, 150, 0.06);
  color: var(--navy);
}
.check-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--mid);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.check-box svg {
  width: 10px;
  height: 10px;
  stroke: white;
  display: none;
}
.check-item.selected .check-box {
  border-color: var(--teal);
  background: var(--teal);
}
.check-item.selected .check-box svg {
  display: block;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-item {
  padding: 9px 16px;
  border: 1.5px solid var(--mid);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}
.radio-item.selected {
  border-color: var(--teal);
  background: rgba(0, 200, 150, 0.08);
  color: var(--teal);
  font-weight: 600;
}
.radio-item input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--mid);
}

.form-step-indicator {
  font-size: 12px;
  color: var(--muted);
}
.form-step-indicator strong {
  color: var(--text);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success.visible {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.1);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-banner h2 em {
  font-style: normal;
  color: var(--teal);
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}

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

.contact-details h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}
.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item p, .contact-item a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 8px;
}

footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 16px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col ul a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    display: none;
  }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-visual {
    display: none;
  }
  .intake-inner {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px 32px;
    gap: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
  nav.nav-open .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
  }
  nav.nav-open .nav-links a:hover {
    color: var(--teal);
  }
  nav.nav-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 180px);
    left: 32px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .step-num {
    width: 60px;
    height: 60px;
    font-size: 18px;
    border-radius: 16px;
  }
  .process-step::after {
    left: 29px;
    top: 52px;
  }
}
