/* ============================
   ROOT & RESET
============================ */
:root {
  --sky:       #6aaed6;
  --sky-mid:   #4a9bc4;
  --sky-light: #a8d0e8;
  --sky-pale:  #ddeef7;
  --sky-bg:    #d8ecf7;
  --navy:      #1a2a3a;
  --navy-mid:  #2d4a62;
  --white:     #ffffff;
  --gray:      #7a8fa0;
  --gray-light:#e4eff6;
  --border:    rgba(106,174,214,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ============================
   CUSTOM CURSOR
============================ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(106,174,214,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

body.hovering .cursor { width: 16px; height: 16px; background: var(--sky-mid); }
body.hovering .cursor-ring { width: 54px; height: 54px; border-color: rgba(106,174,214,0.7); }

/* ============================
   NAV
============================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5rem;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.9rem 5rem;
}

.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem;
  color: var(--navy); text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0; animation: fadeDown 0.6s 0.2s forwards;
}

.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.1); background: var(--sky-mid); }

.logo-mark svg { width: 16px; height: 16px; fill: white; }

.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
  opacity: 0; animation: fadeDown 0.6s 0.35s forwards;
}

.nav-links a {
  text-decoration: none; color: var(--navy-mid);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.2s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--sky); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy); color: white !important;
  padding: 0.6rem 1.5rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--sky-mid) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(74,155,196,0.35) !important;
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #b8d5ea 0%, #9ec8e0 50%, #88b9d4 100%);
  position: relative; overflow: hidden;
  padding: 8rem 2rem 6rem;
}

/* Animated mesh blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}

.blob-1 {
  width: 600px; height: 600px;
  background: rgba(26,58,90,0.22);
  top: -150px; right: -150px;
  animation: float1 12s ease-in-out infinite;
}

.blob-2 {
  width: 400px; height: 400px;
  background: rgba(26,58,90,0.18);
  bottom: -100px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}

.blob-3 {
  width: 300px; height: 300px;
  background: rgba(50,90,130,0.18);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 40px) scale(1.05); }
  66%       { transform: translate(20px, -20px) scale(0.97); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -55%) scale(1.1); }
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,50,80,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,50,80,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(106,174,214,0.3);
  border-radius: 100px; padding: 0.4rem 1.1rem;
  font-size: 0.75rem; font-weight: 600; color: var(--sky-mid);
  text-transform: uppercase; letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky);
  animation: pulse 2.5s ease-in-out infinite;
}

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

.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 1.04; color: var(--navy);
  letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}

.hero h1 .line-2 {
  display: block; color: var(--sky-mid);
  min-height: 1.1em;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--sky-mid);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.85s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-size: 1.15rem; color: var(--navy-mid);
  line-height: 1.75; font-weight: 300;
  max-width: 560px; margin: 2rem auto;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.05s forwards;
}

.btn-primary {
  background: var(--navy); color: white;
  padding: 0.95rem 2.2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-flex; align-items: center; gap: 0.6rem;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--sky-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74,155,196,0.4);
}
.btn-primary svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2.2; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(106,174,214,0.35);
  color: var(--navy); padding: 0.95rem 2.2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; backdrop-filter: blur(10px);
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
.btn-ghost:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,42,58,0.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--sky), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.scroll-label {
  font-size: 0.65rem; letter-spacing: 0.12em; color: var(--sky-mid);
  text-transform: uppercase; font-weight: 600;
}

/* ============================
   SHARED LAYOUT
============================ */
.section { padding: 7rem 5rem; }

.section-tag {
  font-size: 0.72rem; font-weight: 700; color: var(--sky-mid);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 1rem; display: block;
}

.section-header { margin-bottom: 4rem; }

.section-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--navy); line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray); font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; max-width: 580px;
}

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ============================
   HOW IT WORKS
============================ */
.how { background: #cde0ef; }
.how-inner { max-width: 1140px; margin: 0 auto; }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.step {
  background: white; border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: 0 1px 12px rgba(26,42,58,0.05), 0 0 0 1px rgba(106,174,214,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}

/* Gradient fill that sweeps up on hover */
.step::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--sky-pale) 0%, white 60%);
  opacity: 0; transition: opacity 0.4s;
}

/* Top accent bar */
.step::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--sky-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(26,42,58,0.12), 0 0 0 1px rgba(106,174,214,0.2);
}

.step:hover::before { opacity: 1; }
.step:hover::after  { transform: scaleX(1); }

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

.step-num {
  font-size: 0.68rem; font-weight: 700; color: var(--sky);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.4rem;
}

.step-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--sky-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s;
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--sky-light);
}

.step-icon svg { width: 24px; height: 24px; stroke: var(--sky-mid); stroke-width: 1.8; fill: none; }

.step h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.97rem; color: var(--navy); margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.step p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; font-weight: 300; }

/* Step connector line */
.step-connector {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* ============================
   SOLUTION
============================ */
.solution { background: #f5fafd; }

.solution-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}

.solution-text h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  color: var(--navy); line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.3rem;
}

.solution-text h2 span { color: var(--sky); }

.solution-text p {
  color: var(--gray); font-size: 1rem; line-height: 1.8;
  font-weight: 300; margin-bottom: 1rem;
}

.feature-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.92rem; color: var(--navy-mid); font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s;
}

.feature-list li:hover { color: var(--navy); }

.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: background 0.3s, transform 0.3s;
}

.feature-list li:hover .check-icon {
  background: var(--sky-light);
  transform: scale(1.15);
}

.check-icon svg { width: 11px; height: 11px; stroke: var(--sky-mid); stroke-width: 2.5; fill: none; }

/* App mock */
.solution-visual {
  background: linear-gradient(145deg, #c8e4f5 0%, #a5cfe6 100%);
  border-radius: 24px; padding: 2.8rem 2.5rem;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s;
}

.solution-visual:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 40px 80px rgba(26,42,58,0.16);
}

/* Floating badge */
.float-badge {
  position: absolute; top: -1rem; right: 2rem;
  background: white; border-radius: 10px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(26,42,58,0.14);
  font-size: 0.75rem; font-weight: 600; color: var(--sky-mid);
  display: flex; align-items: center; gap: 0.4rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.float-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

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

.mock-dashboard {
  background: white; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26,42,58,0.18);
  overflow: hidden;
}

.mock-header {
  background: var(--navy); padding: 0.85rem 1.2rem;
  display: flex; align-items: center; gap: 0.45rem;
}

.mock-dot { width: 9px; height: 9px; border-radius: 50%; }

.mock-step-label {
  margin-left: auto; font-size: 0.62rem;
  color: rgba(255,255,255,0.3); font-weight: 500; letter-spacing: 0.06em;
}

.mock-body { padding: 1.4rem; }

.mock-label {
  font-size: 0.6rem; font-weight: 700; color: var(--sky);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem;
}

.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 0.65rem; }

.mock-field {
  background: var(--sky-bg); border-radius: 9px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--sky-pale);
}

.mock-value { font-size: 0.82rem; color: var(--navy-mid); font-weight: 400; }

.mock-toggles { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.9rem; }

.mock-toggle {
  border-radius: 9px; padding: 0.65rem 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 400; transition: all 0.3s;
}

.mock-toggle.off {
  background: var(--sky-bg); color: var(--navy-mid);
  border: 1px solid rgba(106,174,214,0.2);
}

.mock-toggle.on {
  background: rgba(106,174,214,0.12); color: var(--sky-mid);
  border: 1px solid rgba(106,174,214,0.4);
}

.pill {
  width: 30px; height: 16px; border-radius: 8px;
  position: relative; flex-shrink: 0; transition: background 0.3s;
}

.pill.off { background: rgba(106,174,214,0.2); }
.pill.on  { background: var(--sky); }

.pill::after {
  content: ''; width: 12px; height: 12px;
  background: white; border-radius: 50%;
  position: absolute; top: 2px; transition: left 0.3s;
}

.pill.off::after { left: 2px; }
.pill.on::after  { left: 16px; }

.mock-btn {
  width: 100%; background: var(--sky);
  color: white; border: none; border-radius: 9px;
  padding: 0.75rem; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.8rem; cursor: pointer;
  letter-spacing: 0.04em;
}

/* ============================
   MARKET
============================ */
.market { background: #c4ddef; }
.market-inner { max-width: 1140px; margin: 0 auto; }

.market-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}

.market-card {
  background: white; border-radius: 18px;
  padding: 2.2rem; position: relative; overflow: hidden;
  box-shadow: 0 1px 12px rgba(26,42,58,0.05);
  border: 1px solid rgba(106,174,214,0.1);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.3s;
}

.market-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,174,214,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(26,42,58,0.1);
  border-color: rgba(106,174,214,0.25);
}
.market-card:hover::before { opacity: 1; }

.market-num {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 2.8rem; color: var(--sky); display: block;
  margin-bottom: 0.4rem; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}

.market-label {
  font-size: 0.85rem; color: var(--gray); font-weight: 300;
  line-height: 1.6; position: relative; z-index: 1;
}

.market-divider { margin: 1rem 0; width: 36px; height: 2px; background: var(--sky-pale); border-radius: 2px; }

/* Enterprise card */
.enterprise-card {
  background: white; border-radius: 18px;
  padding: 2.5rem; margin-top: 1.5rem;
  box-shadow: 0 1px 12px rgba(26,42,58,0.05);
  border: 1px solid rgba(106,174,214,0.1);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  transition: box-shadow 0.4s;
}
.enterprise-card:hover { box-shadow: 0 20px 44px rgba(26,42,58,0.1); }

.enterprise-card h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.01em;
}

.enterprise-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; font-weight: 300; }

.benefit-row {
  background: #b4d3e8; border-radius: 12px; padding: 1.4rem;
}

.benefit-row h4 {
  font-weight: 600; font-size: 0.82rem; color: var(--navy);
  margin-bottom: 0.9rem; letter-spacing: 0.01em;
}

.benefit-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.83rem; color: var(--navy-mid); font-weight: 300;
  line-height: 1.5; padding: 0.45rem 0;
  border-bottom: 1px solid rgba(106,174,214,0.12);
  transition: color 0.2s, padding-left 0.3s;
}

.benefit-item:last-child { border-bottom: none; }
.benefit-item:hover { color: var(--navy); padding-left: 0.3rem; }

.benefit-arrow { color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================
   CTA FORM
============================== */
.cta-section {
  background: linear-gradient(145deg, #7fb3d5 0%, #6a9bc0 55%, #4a7b9c 100%);
  position: relative; overflow: hidden;
  padding: 6rem 5rem;
}

/* Radial highlight overlay */
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(255,255,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px);
}

.cta-glow-1 {
  width: 550px; height: 550px;
  background: rgba(255,255,255,0.1);
  top: -180px; right: -120px;
  animation: float1 14s ease-in-out infinite;
}

.cta-glow-2 {
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.07);
  bottom: -120px; left: -80px;
  animation: float2 12s ease-in-out infinite;
}

.cta-inner {
  max-width: 860px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* Logo line */
.cta-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem;
  color: white; margin-bottom: 2.5rem; letter-spacing: -0.01em;
}

.cta-logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}

.cta-logo-mark svg { width: 18px; height: 18px; stroke: white; stroke-width: 1.8; fill: none; }

/* Tagline */
.cta-tagline {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem; font-weight: 400; line-height: 1.6;
  margin-bottom: 3rem;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* Input wrapper for icon */
.input-wrap { position: relative; }

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px; padding: 1rem 3.5rem 1rem 1.1rem;
  color: white; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.4); }

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.form-group select option { background: #3a6a88; color: white; }

/* Icon badge inside input */
.input-icon {
  position: absolute; right: 6px; top: 6px; bottom: 6px;
  width: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

.input-icon svg { width: 18px; height: 18px; stroke: white; stroke-width: 1.8; fill: none; }

/* Toggles */
.form-toggles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem;
  margin-bottom: 3rem;
}

.form-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  cursor: pointer; user-select: none;
  color: white; font-size: 0.9rem; font-weight: 500;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
}

.form-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}

.form-toggle.active {
  background: white;
  border-color: white;
  color: #4a7b9c;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.toggle-left { display: flex; align-items: center; gap: 0.9rem; }

.t-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0; position: relative;
  transition: background 0.3s;
}

.t-switch.on { background: #7fb3d5; border-color: #7fb3d5; }
.form-toggle.active .t-switch { background: #7fb3d5; border-color: #7fb3d5; }

.t-switch::after {
  content: ''; width: 18px; height: 18px;
  background: white; border-radius: 50%;
  position: absolute; top: 2px; left: 2px;
  transition: left 0.28s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 1px 5px rgba(0,0,0,0.18);
}

.t-switch.on::after { left: 22px; }

.toggle-icon { opacity: 0.6; transition: opacity 0.25s; }
.form-toggle.active .toggle-icon { opacity: 1; }
.toggle-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* NEXT button */
.cta-next {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: none; cursor: pointer;
  color: white; font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.95;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}

.cta-next:hover { opacity: 1; transform: translateX(8px); }

.cta-next-arrow {
  width: 42px; height: 42px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.cta-next:hover .cta-next-arrow { transform: translateX(6px); }

.form-submit-main {
  width: 100%; padding: 1.1rem;
  background: white; color: #4a7b9c;
  border: none; border-radius: 14px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1rem; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-bottom: 0;
}

.form-submit-main:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 300;
  text-align: center;
}

/* ============================
   FOOTER
============================ */
footer {
  background: #0a1622;
  padding: 1.8rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(106,174,214,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: rgba(255,255,255,0.5); font-size: 1.05rem;
  text-decoration: none; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.footer-logo:hover { color: rgba(255,255,255,0.8); }

.footer-logo .logo-mark { opacity: 0.5; transition: opacity 0.2s; }
.footer-logo:hover .logo-mark { opacity: 1; }

footer p { font-size: 0.78rem; color: rgba(255,255,255,0.22); font-weight: 300; }

/* ============================
   REVEAL ANIMATIONS
============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1000px) {
  .section { padding: 5rem 2rem; }
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .problem-inner, .solution-inner { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .enterprise-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid, .form-toggles { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1.5rem 2rem; }
  .hero-stats { flex-direction: column; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
