/* ============================================
   AI-SmartMove Design System — Corporate Edition
   Theme: Clean Corporate SaaS / Light
   Fonts: Plus Jakarta Sans + DM Sans
   Version: 2.0
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  /* Backgrounds */
  --bg-base:        #ffffff;
  --bg-surface:     #f7f9fc;
  --bg-surface-2:   #eef2f8;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f4f7fd;

  /* Borders */
  --border:         #e2e8f0;
  --border-medium:  #cbd5e1;
  --border-accent:  rgba(37, 99, 235, 0.25);

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --text-inverse:   #ffffff;

  /* Brand Colors */
  --brand-blue:     #2563eb;
  --brand-blue-dk:  #1d4ed8;
  --brand-blue-lt:  #eff6ff;
  --brand-blue-dim: rgba(37, 99, 235, 0.08);

  --brand-teal:     #0891b2;
  --brand-teal-lt:  #ecfeff;
  --brand-teal-dim: rgba(8, 145, 178, 0.08);

  --brand-green:    #059669;
  --brand-green-lt: #ecfdf5;
  --brand-green-dim:rgba(5, 150, 105, 0.08);

  --brand-amber:    #d97706;
  --brand-amber-lt: #fffbeb;
  --brand-amber-dim:rgba(217, 119, 6, 0.08);

  /* Accents */
  --accent:         #2563eb;
  --accent-hover:   #1d4ed8;
  --accent-dim:     rgba(37, 99, 235, 0.08);
  --accent-glow:    rgba(37, 99, 235, 0.15);

  --accent2:        #0891b2;
  --accent2-dim:    rgba(8, 145, 178, 0.08);

  --success:        #059669;
  --warning:        #d97706;
  --danger:         #dc2626;

  /* Radii */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.07), 0 10px 10px -5px rgba(0,0,0,0.02);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px var(--border);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Transitions */
  --transition:  0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3vw, 2.75rem); font-weight: 700; line-height: 1.18; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
h5 { font-size: 0.9rem; font-weight: 700; }
p  { color: var(--text-secondary); line-height: 1.72; }
strong { color: var(--text-primary); font-weight: 600; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 620px;
}

/* ── Layout ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 48px 0; }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Flex Helpers ── */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }  .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }

/* ── Text Utilities ── */
.text-center   { text-align: center; }
.text-accent   { color: var(--accent); }
.text-accent2  { color: var(--accent2); }
.text-muted    { color: var(--text-muted); }
.text-secondary{ color: var(--text-secondary); }
.text-success  { color: var(--success); }
.text-warning  { color: var(--warning); }
.mx-auto       { margin: 0 auto; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--brand-blue-lt); color: var(--brand-blue);
  border: 1px solid rgba(37,99,235,0.2);
}
.badge-teal   { background: var(--brand-teal-lt); color: var(--brand-teal); border-color: rgba(8,145,178,0.2); }
.badge-green  { background: var(--brand-green-lt); color: var(--brand-green); border-color: rgba(5,150,105,0.2); }
.badge-amber  { background: var(--brand-amber-lt); color: var(--brand-amber); border-color: rgba(217,119,6,0.2); }
.badge-gray   { background: var(--bg-surface); color: var(--text-secondary); border-color: var(--border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 11px 24px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 1px 3px rgba(37,99,235,0.2), 0 0 0 0 transparent;
}
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--bg-base); color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--bg-surface); border-color: var(--accent);
  color: var(--accent); transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-outline-blue {
  background: transparent; color: var(--accent);
  border-color: rgba(37,99,235,0.4);
}
.btn-outline-blue:hover {
  background: var(--accent-dim); border-color: var(--accent);
}
.btn-ghost {
  background: transparent; color: var(--accent); border-color: transparent;
  padding: 10px 4px;
}
.btn-ghost:hover { gap: 12px; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 0.825rem; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card-accent-top::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

/* ── Icon Box ── */
.icon-box {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  background: var(--brand-blue-lt);
  border: 1px solid rgba(37,99,235,0.15);
}
.icon-box-teal   { background: var(--brand-teal-lt);  border-color: rgba(8,145,178,0.15); }
.icon-box-green  { background: var(--brand-green-lt); border-color: rgba(5,150,105,0.15); }
.icon-box-amber  { background: var(--brand-amber-lt); border-color: rgba(217,119,6,0.15); }
.icon-box-gray   { background: var(--bg-surface);     border-color: var(--border); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }

/* ── Tag strip ── */
.tag-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  font-size: 0.76rem; font-weight: 500; color: var(--text-secondary);
  background: var(--bg-surface); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 100px;
}

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--text-primary); display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.02em;
}
.nav-logo .logo-mark {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
}
.nav-logo .logo-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .nav-dropdown > a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-links > a:hover, .nav-dropdown > a:hover {
  color: var(--text-primary); background: var(--bg-surface);
}
.nav-links > a.active, .nav-dropdown > a.active { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 6px;
  min-width: 200px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: none;
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text-secondary);
}
.nav-dropdown-menu a:hover {
  background: var(--bg-surface); color: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none;
  background: transparent; border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); transition: var(--transition); border-radius: 2px;
}
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu {
    display: none; position: fixed; inset: 68px 0 0;
    background: var(--bg-base); padding: 20px 28px;
    flex-direction: column; gap: 2px; z-index: 999;
    border-top: 1px solid var(--border); overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1rem; font-weight: 500; color: var(--text-secondary);
    padding: 13px 16px; border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:hover { color: var(--accent); background: var(--accent-dim); }
  .nav-actions .btn-secondary { display: none; }
}

/* ── FOOTER ── */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-brand .nav-logo .logo-accent { color: #93c5fd; }
.footer-brand .nav-logo .logo-mark { background: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); max-width: 270px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  font-size: 0.75rem; font-weight: 600; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }

.footer-col h5 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6);
  padding: 5px 0; transition: var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 0.825rem; color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── Step indicator ── */
.step-number {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(37,99,235,0.25);
  color: var(--accent); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Table ── */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.comparison-table th {
  font-family: var(--font-display); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted);
  background: var(--bg-surface);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check-yes { color: var(--success); font-size: 1.1rem; }
.comparison-table .check-no  { color: var(--text-muted); font-size: 1.1rem; }
.comparison-table .highlight-col { background: var(--brand-blue-lt); }

/* ── Pricing ── */
.pricing-card { position: relative; }
.pricing-card.featured {
  background: var(--accent); color: white;
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(37,99,235,0.25);
}
.pricing-card.featured p,
.pricing-card.featured .price-period,
.pricing-card.featured .price-feature { color: rgba(255,255,255,0.8); }
.pricing-card.featured .price-feature { border-color: rgba(255,255,255,0.15); }
.pricing-card.featured h3 { color: white; }
.pricing-card.featured .price-amount { color: white; }
.pricing-card.featured .check { color: #a5f3fc; }
.pricing-card.featured .cross { color: rgba(255,255,255,0.35); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--text-primary); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.price-amount {
  font-family: var(--font-display); font-size: 2.75rem;
  font-weight: 800; color: var(--text-primary); line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount sup { font-size: 1.1rem; vertical-align: top; margin-top: 6px; }
.price-period  { font-size: 0.825rem; color: var(--text-muted); }
.price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.price-feature:last-child { border-bottom: none; }
.price-feature .check { color: var(--success); font-size: 0.95rem; }
.price-feature .cross { color: var(--text-muted); }

/* ── Work Pilot Badge ── */
.work-pilot-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 10px; border-radius: 100px;
  background: var(--brand-green-lt); color: var(--brand-green);
  border: 1px solid rgba(5,150,105,0.2);
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: 0.975rem; font-weight: 600;
  color: var(--text-primary); text-align: left; gap: 16px;
}
.faq-question .icon {
  color: var(--accent); font-size: 1.3rem; flex-shrink: 0;
  transition: var(--transition); width: 24px; text-align: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 18px; color: var(--text-secondary); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Animations ── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes float      { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

.animate-fade-up    { animation: fadeInUp 0.65s ease both; }
.animate-fade-up-d1 { animation: fadeInUp 0.65s 0.1s ease both; }
.animate-fade-up-d2 { animation: fadeInUp 0.65s 0.2s ease both; }
.animate-fade-up-d3 { animation: fadeInUp 0.65s 0.3s ease both; }
.animate-fade-up-d4 { animation: fadeInUp 0.65s 0.4s ease both; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 128px 0 80px;
  background: linear-gradient(170deg, #f0f6ff 0%, #ffffff 55%, #f8fffe 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(8,145,178,0.04) 0%, transparent 50%);
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stat .stat-num {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.02em;
}
.hero-stat .stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat-divider { width: 1px; background: var(--border); }

/* ── Dashboard mockup ── */
.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(37,99,235,0.05);
}
.mockup-bar {
  background: var(--bg-surface); padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { padding: 20px; }

/* ── Progress bar ── */
.progress-bar { height: 6px; background: var(--bg-surface-2); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }

/* ── Testimonial ── */
.testimonial-card { padding: 32px; }
.testimonial-text {
  font-size: 1rem; color: var(--text-primary);
  font-style: italic; line-height: 1.75; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white;
}

/* ── Contact Form ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg-base); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 128px 0 80px; position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { margin: 0 auto 36px; }

/* ── Check item ── */
.check-item { display: flex; align-items: flex-start; gap: 12px; padding: 7px 0; }
.check-item .icon { color: var(--success); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.check-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Horizontal step flow ── */
.flow-steps { display: flex; gap: 0; position: relative; }
.flow-step { flex: 1; text-align: center; position: relative; padding: 0 16px; }
.flow-step::after {
  content: '→'; position: absolute; top: 20px; right: -12px;
  color: var(--accent); font-size: 1.1rem; z-index: 1;
}
.flow-step:last-child::after { display: none; }
.flow-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--brand-blue-lt); border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto 12px;
}
@media(max-width:640px) {
  .flow-steps { flex-direction: column; }
  .flow-step::after { content: '↓'; top: auto; right: 50%; bottom: -18px; }
}

/* ── Problem/Solution boxes ── */
.problem-box {
  background: rgba(220, 38, 38, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-xl); padding: 36px;
}
.solution-box {
  background: rgba(5, 150, 105, 0.03);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-xl); padding: 36px;
}
.problem-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.problem-item .x   { color: var(--danger); font-weight: 700; flex-shrink: 0; }
.problem-item .chk { color: var(--success); font-weight: 700; flex-shrink: 0; }
.problem-item p    { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Usecase Tabs ── */
.usecase-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.usecase-tab {
  padding: 9px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--bg-base);
  color: var(--text-secondary); cursor: pointer; transition: var(--transition);
}
.usecase-tab.active, .usecase-tab:hover {
  background: var(--accent-dim); border-color: rgba(37,99,235,0.3);
  color: var(--accent);
}
.usecase-panel { display: none; }
.usecase-panel.active {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
}
@media(max-width:768px){ .usecase-panel.active { grid-template-columns: 1fr; } }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: var(--radius-2xl); padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
  color: white;
}
.cta-section h2    { color: white; }
.cta-section .lead { color: rgba(255,255,255,0.85); }
.cta-section .btn-primary {
  background: white; color: var(--accent); border-color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover { background: #f8fafc; transform: translateY(-2px); }
.cta-section .btn-secondary {
  background: rgba(255,255,255,0.12); color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: white; }
@media(max-width:640px){ .cta-section { padding: 48px 24px; } }

/* ── Compare table wrap ── */
.compare-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg-surface); padding: 16px 24px; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 24px; gap: 16px; border-bottom: 1px solid var(--border);
  align-items: center; font-size: 0.9rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--bg-surface); }
.col-sm { text-align: center; font-size: 1.1rem; }
@media(max-width:640px){
  .compare-header, .compare-row { grid-template-columns: 2fr 1fr 1fr; padding: 12px 14px; }
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Trust bar ── */
.trust-bar {
  padding: 20px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.825rem; font-weight: 600; color: var(--text-secondary);
}
.trust-item .icon { color: var(--success); }

/* ── How steps ── */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.how-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--border); z-index: 0;
}
.how-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.how-step-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--brand-blue-lt); border: 2px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 20px;
}
@media(max-width:768px) {
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps::before { display: none; }
}
@media(max-width:480px){ .how-steps { grid-template-columns: 1fr; } }

/* ── Suite cards ── */
.suite-card .suite-icon { font-size: 1.75rem; margin-bottom: 14px; }
.suite-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.suite-card .explore-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  margin-top: 18px; transition: var(--transition);
}
.suite-card:hover .explore-link { gap: 10px; }
