/* ============================================
   Yogpolis — Complete Yoga Industry Platform
   Stylesheet
   ============================================ */

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

:root {
  /* Sage green wellness palette */
  --sage-50:  #F4F7F4;
  --sage-100: #E8F0E8;
  --sage-200: #D1E0D1;
  --sage-300: #B0CAB0;
  --sage-400: #8FAE8F;
  --sage-500: #6B926B;
  --sage-600: #5F8268;
  --sage-700: #4A6B52;
  --sage-800: #3A5544;
  --sage-900: #2D4234;
  --sage-950: #1A2A20;

  /* Neurax dark accent */
  --neurax-bg:     #0F1B17;
  --neurax-surface:#16261F;
  --neurax-border: #1F3329;
  --neurax-accent: #7FE7B5;
  --neurax-glow:   rgba(127, 231, 181, 0.15);

  /* Neutrals */
  --ink-900: #1A1F1B;
  --ink-700: #3A423C;
  --ink-500: #6B736D;
  --ink-300: #B0B8B2;
  --ink-100: #E8ECE9;
  --white:   #FFFFFF;

  /* Functional */
  --gold:    #C9A961;
  --cream:   #FAF7F0;
  --warn:    #E07A5F;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 66, 52, 0.08);
  --shadow:    0 4px 16px rgba(45, 66, 52, 0.10);
  --shadow-md: 0 8px 28px rgba(45, 66, 52, 0.14);
  --shadow-lg: 0 20px 60px rgba(45, 66, 52, 0.20);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
svg { display: block; max-width: 100%; height: auto; }
svg:not([width]):not([height]) { width: 24px; height: 24px; flex-shrink: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(95, 130, 104, 0.3);
}
.btn-primary:hover {
  background: var(--sage-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 130, 104, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--sage-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ---------- Navigation ---------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(176, 202, 176, 0.25);
  transition: all 0.3s var(--ease);
}
#nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 12px rgba(45, 66, 52, 0.08);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--sage-700);
}
.logo-svg { width: 36px; height: 36px; }
.logo-text { font-family: var(--font-display); letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--sage-600); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--sage-600);
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--sage-600);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--sage-700);
  transform: translateY(-1px);
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-200);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.nav-dropdown-menu a:hover {
  background: var(--sage-50);
  color: var(--sage-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--sage-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-title { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light {
  color: var(--neurax-accent);
  background: rgba(127, 231, 181, 0.12);
  border: 1px solid rgba(127, 231, 181, 0.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 720px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 640px;
}
.section-header.center .section-subtitle { margin: 0 auto; }

.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 28px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://storage.googleapis.com/yogpolis-media/images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 32, 0.85) 0%,
    rgba(45, 66, 52, 0.7) 50%,
    rgba(74, 107, 82, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--neurax-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neurax-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--neurax-accent), var(--sage-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.role-chip {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: all 0.25s var(--ease);
}
.role-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Platform / Roles ---------- */
.platform { background: var(--sage-50); }

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

.role-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
  border: 1px solid rgba(176, 202, 176, 0.2);
}
.role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-300);
}

.role-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.role-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.role-card:hover .role-img img { transform: scale(1.08); }
.role-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(45, 66, 52, 0.25));
}

.role-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  padding: 24px 24px 10px;
}
.role-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
  padding: 0 24px 28px;
}

/* ---------- Neurax AI ---------- */
.neurax {
  position: relative;
  background: var(--neurax-bg);
  color: var(--white);
  overflow: hidden;
}
.neurax-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(127, 231, 181, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 130, 104, 0.12) 0%, transparent 50%);
}
.neurax .section-tag {
  color: var(--neurax-accent);
  background: rgba(127, 231, 181, 0.1);
  border: 1px solid rgba(127, 231, 181, 0.2);
}
.neurax .section-title { color: var(--white); }
.neurax .section-body { color: rgba(255, 255, 255, 0.75); }

.neurax-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.neurax-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.neurax-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.neurax-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 27, 23, 0.6), transparent 60%);
}
.neurax-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 27, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(127, 231, 181, 0.25);
  padding: 12px 18px;
  border-radius: var(--radius);
}
.nbf-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--neurax-accent), var(--sage-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nbf-icon svg { width: 22px; height: 22px; }
.nbf-title { font-weight: 700; font-size: 15px; color: var(--white); }
.nbf-sub { font-size: 12px; color: rgba(255, 255, 255, 0.6); }

.neurax-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.neurax-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--neurax-surface);
  border: 1px solid var(--neurax-border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.neurax-feature:hover {
  border-color: rgba(127, 231, 181, 0.3);
  transform: translateX(4px);
}
.nf-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(127, 231, 181, 0.1);
  border: 1px solid rgba(127, 231, 181, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neurax-accent);
}
.nf-icon svg { width: 22px; height: 22px; }
.nf-title { font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.nf-desc { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.65); }

/* ---------- Flow Designer ---------- */
.flows { background: var(--cream); }

.flows-showcase {
  margin-bottom: 64px;
}

.flow-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--sage-200);
}

.flow-toolbar {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  background: var(--sage-50);
  border-bottom: 1px solid var(--sage-200);
  overflow-x: auto;
}
.flow-tool {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.flow-tool.active {
  background: var(--sage-600);
  color: var(--white);
}
.flow-tool.ai {
  margin-left: auto;
  background: var(--neurax-bg);
  color: var(--neurax-accent);
  border: 1px solid rgba(127, 231, 181, 0.3);
}

.flow-canvas {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  overflow-x: auto;
}
.flow-pose {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
}
.flow-pose img {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--sage-200);
  transition: all 0.3s var(--ease);
}
.flow-pose:hover img {
  border-color: var(--sage-500);
  transform: scale(1.04);
}
.pose-info { margin-top: 10px; }
.pose-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}
.pose-time {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}
.flow-arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--sage-400);
}
.flow-arrow svg { width: 100%; height: 100%; }

.flow-footer {
  padding: 14px 20px;
  background: var(--sage-50);
  border-top: 1px solid var(--sage-200);
  font-size: 14px;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-tag {
  background: var(--neurax-bg);
  color: var(--neurax-accent);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.flows-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flow-feature {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
  transition: all 0.3s var(--ease);
}
.flow-feature:hover {
  border-color: var(--sage-400);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.ff-icon {
  width: 48px; height: 48px;
  background: var(--sage-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  margin-bottom: 16px;
}
.ff-icon svg { width: 24px; height: 24px; }
.flow-feature h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.flow-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ---------- Marketplace ---------- */
.marketplace { background: var(--white); }

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.marketplace-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.marketplace-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-300);
}

.mc-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.mc-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.marketplace-card:hover .mc-image img { transform: scale(1.08); }
.mc-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
}

.mc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mc-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.mc-location {
  font-size: 13px;
  color: var(--sage-600);
  font-weight: 500;
  margin-bottom: 10px;
}
.mc-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-500);
  margin-bottom: 16px;
  flex: 1;
}
.mc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.mc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
}
.mc-book {
  background: var(--sage-600);
  color: var(--white);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.mc-book:hover {
  background: var(--sage-700);
  transform: translateY(-1px);
}

.marketplace-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--sage-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
}
.mp-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
}
.mp-feature svg {
  width: 20px; height: 20px;
  color: var(--sage-600);
  flex-shrink: 0;
}

/* ---------- Management ---------- */
.management { background: var(--sage-50); }

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

.mg-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  transition: all 0.3s var(--ease);
}
.mg-card:hover {
  border-color: var(--sage-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.mg-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sage-100), var(--sage-200));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-700);
  margin-bottom: 20px;
}
.mg-icon svg { width: 26px; height: 26px; }
.mg-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.mg-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mg-card li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-500);
  padding-left: 22px;
  position: relative;
}
.mg-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--sage-500);
  border-radius: 50%;
}

/* ---------- SEO Section ---------- */
.seo-section { background: var(--white); }

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.seo-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.seo-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
}
.seo-check svg {
  width: 22px; height: 22px;
  color: var(--sage-600);
  background: var(--sage-100);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

.search-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-100);
  background: var(--sage-50);
}
.search-bar svg {
  width: 20px; height: 20px;
  color: var(--ink-500);
}
.search-text {
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 500;
}
.search-results { padding: 16px; }
.result-item {
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: background 0.2s var(--ease);
  cursor: pointer;
}
.result-item:hover { background: var(--sage-50); }
.result-item.top-result {
  background: linear-gradient(135deg, var(--sage-50), var(--white));
  border: 1px solid var(--sage-200);
}
.result-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sage-700);
  background: var(--sage-100);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.result-title {
  font-size: 16px;
  font-weight: 600;
  color: #1A0FAB;
  margin-bottom: 2px;
}
.result-url {
  font-size: 13px;
  color: var(--sage-600);
  margin-bottom: 4px;
}
.result-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-500);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--sage-700);
  padding: 60px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.sb-stat { color: var(--white); }
.sb-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--neurax-accent);
}
.sb-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ---------- CTA ---------- */
.cta-section { background: var(--sage-50); padding: 80px 0; }

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--sage-700), var(--sage-900));
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-decoration {
  position: relative;
  z-index: 0;
}
.lotus-svg {
  width: 180px; height: 180px;
  opacity: 0.6;
  animation: lotusFloat 6s ease-in-out infinite;
}
@keyframes lotusFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--sage-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--neurax-accent); }

.footer-address .address-line {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  padding: 1px 0;
}
.footer-address .address-line strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .marketplace-grid { grid-template-columns: repeat(2, 1fr); }
  .flows-features { grid-template-columns: repeat(2, 1fr); }
  .management-grid { grid-template-columns: repeat(2, 1fr); }
  .neurax-grid { grid-template-columns: 1fr; gap: 48px; }
  .seo-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-address { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    border-bottom: 1px solid var(--sage-200);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .roles-grid { grid-template-columns: 1fr; }
  .marketplace-grid { grid-template-columns: 1fr; }
  .flows-features { grid-template-columns: 1fr; }
  .management-grid { grid-template-columns: 1fr; }
  .marketplace-features { grid-template-columns: 1fr; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }
  .cta-decoration { display: none; }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand, .footer-address { grid-column: auto; }

  .flow-canvas { padding: 20px 16px; }
  .flow-pose { width: 110px; }
  .flow-pose img { width: 110px; height: 110px; }

  /* Slightly smaller icons on tablet */
  .fcs-icon, .nf-icon { width: 40px; height: 40px; }
  .fcs-icon svg, .nf-icon svg { width: 20px; height: 20px; }
  .mg-icon { width: 48px; height: 48px; }
  .mg-icon svg { width: 24px; height: 24px; }
  .ff-icon { width: 44px; height: 44px; }
  .ff-icon svg { width: 22px; height: 22px; }
  .value-icon { width: 52px; height: 52px; }
  .value-icon svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .role-chip { font-size: 12px; padding: 6px 12px; }
  .stats-bar-grid { grid-template-columns: 1fr; }
  .mg-card { padding: 24px; }
  .cta-card { padding: 32px 20px; }
  /* Smaller icons on mobile */
  .fcs-icon, .nf-icon { width: 36px; height: 36px; border-radius: 10px; }
  .fcs-icon svg, .nf-icon svg { width: 18px; height: 18px; }
  .mg-icon { width: 42px; height: 42px; border-radius: 12px; }
  .mg-icon svg { width: 22px; height: 22px; }
  .ff-icon { width: 40px; height: 40px; border-radius: 10px; }
  .ff-icon svg { width: 20px; height: 20px; }
  .value-icon { width: 48px; height: 48px; border-radius: 14px; }
  .value-icon svg { width: 24px; height: 24px; }
  .contact-icon { width: 40px; height: 40px; border-radius: 10px; }
  .contact-icon svg { width: 20px; height: 20px; }
  .fs-check { width: 18px; height: 18px; }
  .fs-check svg { width: 12px; height: 12px; }
  .pricing-feature svg { width: 16px; height: 16px; }
  .fcs-link svg { width: 14px; height: 14px; }
  .logo-svg { width: 32px; height: 32px; }
  .lotus-svg { width: 120px; height: 120px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SaaS-Style Feature Sections (Dashboard Images)
   ============================================ */

/* Split feature section — image + text */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-split:last-child { margin-bottom: 0; }
.feature-split.reverse .fs-image { order: 2; }
.feature-split.reverse .fs-content { order: 1; }

.fs-image {
  position: relative;
}
.fs-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.fs-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.feature-split:hover .fs-image-wrap img { transform: scale(1.05); }

.fs-image-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  z-index: 2;
}
.fs-badge-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--sage-600);
  font-family: var(--font-display);
}
.fs-badge-label {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
}
.fs-image-badge.right {
  left: auto; right: -16px;
  bottom: -16px;
}

.fs-content { padding: 8px 0; }
.fs-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.fs-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.fs-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.fs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.fs-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
}
.fs-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--sage-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  margin-top: 1px;
}
.fs-check svg { width: 14px; height: 14px; }

/* Dashboard mockup card (CSS-only visual) */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--sage-200);
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--sage-50);
  border-bottom: 1px solid var(--sage-200);
}
.dm-dot { width: 10px; height: 10px; border-radius: 50%; }
.dm-dot.red { background: #FF5F57; }
.dm-dot.yellow { background: #FFBD2E; }
.dm-dot.green { background: #28C940; }
.dm-title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}
.dm-body { padding: 20px; }
.dm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dm-stat {
  background: var(--sage-50);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.dm-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  font-family: var(--font-display);
}
.dm-stat-label {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}
.dm-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 12px;
  background: var(--sage-50);
  border-radius: var(--radius-sm);
}
.dm-bar {
  flex: 1;
  background: linear-gradient(to top, var(--sage-500), var(--sage-300));
  border-radius: 4px 4px 0 0;
  transition: height 0.8s var(--ease-out);
}

/* Feature grid (3-column cards) */
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card-saas {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.feature-card-saas:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-400);
}
.fcs-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.fcs-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.feature-card-saas:hover .fcs-image img { transform: scale(1.08); }
.fcs-body { padding: 24px; }
.fcs-icon {
  width: 44px; height: 44px;
  background: var(--sage-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  margin-bottom: 14px;
}
.fcs-icon svg { width: 22px; height: 22px; }
.fcs-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.fcs-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.fcs-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}
.fcs-link:hover { gap: 10px; }
.fcs-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================
   Page Hero (sub-pages)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--sage-50), var(--white));
  text-align: center;
}
.page-hero.dark {
  background: var(--neurax-bg);
  color: var(--white);
}
.page-hero.dark .ph-title { color: var(--white); }
.page-hero.dark .ph-subtitle { color: rgba(255,255,255,0.75); }
.page-hero.dark .section-tag {
  color: var(--neurax-accent);
  background: rgba(127,231,181,0.1);
  border: 1px solid rgba(127,231,181,0.2);
}
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ph-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   Legal / Content Pages
   ============================================ */
.legal-page {
  padding: 120px 0 80px;
  background: var(--white);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.legal-content strong { color: var(--ink-900); }
.legal-content a { color: var(--sage-600); text-decoration: underline; }
.legal-contact {
  background: var(--sage-50);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}
.legal-contact p { margin-bottom: 4px; }

/* ============================================
   Pricing Page
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  padding: 36px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--sage-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--sage-600);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage-600);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--ink-900);
}
.pricing-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-500);
}
.pricing-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
}
.pricing-feature svg {
  width: 18px; height: 18px;
  color: var(--sage-600);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-cta {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

/* ============================================
   About Page
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sage-100), var(--sage-200));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-700);
  margin: 0 auto 16px;
}
.value-icon svg { width: 28px; height: 28px; }
.value-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--sage-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-label {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--sage-500);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ============================================
   Responsive — SaaS sections
   ============================================ */
@media (max-width: 1024px) {
  .feature-split { grid-template-columns: 1fr; gap: 48px; }
  .feature-split.reverse .fs-image { order: 0; }
  .feature-split.reverse .fs-content { order: 0; }
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .feature-grid-3 { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .dm-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: transparent;
  }
  .nav-dropdown-menu a { font-size: 14px; color: var(--ink-500); }
}

@media (max-width: 480px) {
  .dm-stats { grid-template-columns: 1fr; }
  .feature-split { gap: 32px; margin-bottom: 48px; }
  .fs-image-badge { display: none; }
}
