/* ============================================================
   Effortless Signature Manager — Marketing Site Stylesheet
   ============================================================ */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* Design Tokens
   ---------------------------------------------------------- */
:root {
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;

  --white: #ffffff;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl:0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Layout
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 96px 0; }
.section-lg    { padding: 112px 0; }
.section-sm    { padding: 64px 0; }
.section-alt   { background: var(--slate-50); }
.section-dark  { background: var(--slate-900); }

/* Header / Navigation
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--slate-200);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.25s;
}

.logo-text em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.65;
}

.site-header.scrolled .logo-text { color: var(--slate-900); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 4px;
}

.nav-link {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--white); }

.site-header.scrolled .nav-link       { color: var(--slate-600); }
.site-header.scrolled .nav-link:hover { color: var(--blue-700); background: var(--blue-50); }
.site-header.scrolled .nav-link.active{ color: var(--blue-700); }

.nav-cta { margin-left: 8px; }

/* Mobile menu */
.btn-mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.btn-mobile-menu:hover { background: rgba(255,255,255,0.1); }
.site-header.scrolled .btn-mobile-menu { color: var(--slate-800); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: var(--slate-900);
}

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

.mobile-nav-link {
  display: block;
  padding: 9px 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.mobile-nav-cta {
  margin-top: 8px;
  display: block;
  text-align: center;
}

/* Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: inherit;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.2), inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(29 78 216 / 0.35), inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}

.btn-outline {
  color: var(--blue-700);
  border-color: var(--blue-200);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
}

.btn-white {
  color: var(--blue-700);
  border-color: transparent;
  background: var(--white);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--slate-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-xl { padding: 15px 32px; font-size: 16px; border-radius: var(--radius); }

.btn-full { width: 100%; }

/* Hero
   ---------------------------------------------------------- */
.hero {
  background: linear-gradient(145deg, var(--slate-950) 0%, #132255 50%, #1a3a8f 100%);
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(37,99,235,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(6,182,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 85%, rgba(79,70,229,0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #93c5fd 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hero-meta-item svg { flex-shrink: 0; }

/* Browser Mockup
   ---------------------------------------------------------- */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.browser-mockup {
  width: 100%;
  max-width: 600px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.3);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}

.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { display: block; width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--slate-500);
  text-align: center;
}

.app-layout {
  display: flex;
  height: 320px;
}

.app-sidebar {
  width: 176px;
  background: var(--slate-900);
  padding: 14px 0;
  flex-shrink: 0;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}

.sidebar-brand-icon {
  width: 24px; height: 24px;
  background: var(--blue-600);
  border-radius: 5px;
  flex-shrink: 0;
}

.sidebar-brand-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.sidebar-group-label {
  padding: 4px 14px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--slate-600);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--slate-500);
}

.sidebar-item.active {
  background: rgba(37,99,235,0.25);
  color: var(--white);
  border-left: 2px solid var(--blue-400);
}

.sidebar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

.sidebar-item.active .sidebar-dot { opacity: 1; background: var(--blue-400); }

.app-main {
  flex: 1;
  background: var(--slate-50);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.app-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-toolbar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-800);
}

.app-toolbar-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 600;
}

.sig-rule-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 12px;
}

.sig-rule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sig-rule-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-800);
}

.sig-status {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

.sig-status.active  { background: var(--green-100); color: var(--green-600); }
.sig-status.draft   { background: var(--slate-100); color: var(--slate-500); }
.sig-status.warning { background: #fef9c3; color: #a16207; }

.sig-preview {
  height: 42px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 9px;
}

.sig-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-700);
}

.sig-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sig-line {
  height: 5px;
  border-radius: 3px;
  background: var(--slate-200);
}

.sig-line-short { width: 55%; }
.sig-line-xs    { width: 35%; }

.sig-tags {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.sig-tag {
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
}

.sig-tag.blue { background: var(--blue-50); color: var(--blue-700); }
.sig-tag.gray { background: var(--slate-100); color: var(--slate-600); }

/* Social Proof Bar
   ---------------------------------------------------------- */
.social-proof {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  padding: 24px 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-proof-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-400);
  white-space: nowrap;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-200);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Section Headers
   ---------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-600);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-eyebrow { color: var(--blue-400); }
.section-dark .section-lead { color: rgba(255,255,255,0.55); }

/* Feature Grid (Home)
   ---------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-600);
  flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-600);
}

/* How It Works
   ---------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 19px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: rgba(255,255,255,0.1);
}

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

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.15);
  position: relative;
  z-index: 1;
}

.step-body {}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* Why Effortless (Differentiators)
   ---------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-list { display: flex; flex-direction: column; gap: 32px; }

.diff-item { display: flex; gap: 16px; align-items: flex-start; }

.diff-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}

.diff-icon svg { width: 20px; height: 20px; }

.diff-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.diff-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.65;
}

.diff-stat-panel {
  background: linear-gradient(145deg, var(--slate-900), var(--slate-800));
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-2xl);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-cell {
  padding: 28px 20px;
  text-align: center;
}

.stat-cell:nth-child(1) { border-radius: var(--radius) 0 0 0; }
.stat-cell:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.stat-cell:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.stat-cell:nth-child(4) { border-radius: 0 0 var(--radius) 0; }
.stat-cell:nth-child(odd)  { background: rgba(255,255,255,0.04); }
.stat-cell:nth-child(even) { background: rgba(255,255,255,0.02); }

.stat-value {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-value.accent { color: var(--blue-400); }
.stat-value.green  { color: #4ade80; }

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Integration Strip
   ---------------------------------------------------------- */
.integration-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0 0;
  border-top: 1px solid var(--slate-200);
  margin-top: 64px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
}

.integration-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA Banner
   ---------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, #4f46e5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.cta-fine {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Footer
   ---------------------------------------------------------- */
.site-footer {
  background: var(--slate-950);
  color: rgba(255,255,255,0.45);
  padding: 72px 0 32px;
}

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

.footer-logo { margin-bottom: 14px; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  max-width: 220px;
  margin-bottom: 24px;
}

.footer-m365-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  transition: color 0.15s;
}

.footer-link:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

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

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: color 0.15s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Page Hero (generic interior pages)
   ---------------------------------------------------------- */
.page-hero {
  background: linear-gradient(145deg, var(--slate-950) 0%, #132255 50%, #1a3a8f 100%);
  padding: 120px 0 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Features Page
   ---------------------------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-100);
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reverse > .feature-row-content { order: 2; }
.feature-row.reverse > .feature-row-visual  { order: 1; }

.feature-row-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.feature-row-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.feature-row-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.feature-check-list { display: flex; flex-direction: column; gap: 10px; }

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.5;
}

.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green-600);
}

.check-icon svg { width: 10px; height: 10px; }

.feature-row-visual {
  background: linear-gradient(145deg, var(--slate-800), var(--slate-900));
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-xl);
}

.feature-visual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
}

.feature-visual-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
}

.fv-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.fv-row-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  width: 90px;
  flex-shrink: 0;
}

.fv-row-value {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.fv-row-pill {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  background: rgba(59,130,246,0.2);
  color: var(--blue-400);
}

.fv-placeholder-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.fv-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}

.fv-line-short { width: 65%; }
.fv-line-xs    { width: 40%; }

/* Features overview grid (top of features page) */
.features-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.overview-card {
  padding: 24px 20px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.overview-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); }

.overview-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--blue-600);
}

.overview-card-icon svg { width: 20px; height: 20px; }
.overview-card-label { font-size: 13px; font-weight: 600; color: var(--slate-700); }

/* Pricing Page
   ---------------------------------------------------------- */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 0 48px;
}

.billing-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.15s;
}

.billing-label.active { color: var(--white); font-weight: 600; }

.toggle-switch { position: relative; width: 46px; height: 25px; flex-shrink: 0; }

.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 19px; height: 19px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-track { background: var(--blue-500); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(21px); }

.save-badge {
  padding: 2px 9px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 80px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow 0.2s;
}

.pricing-card:hover { box-shadow: var(--shadow-xl); }

.pricing-card.featured {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.3), var(--shadow-xl);
  position: relative;
}

.featured-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--slate-500);
  margin-bottom: 10px;
}

.pricing-card.featured .plan-name { color: rgba(255,255,255,0.65); }

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}

.price-sup {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.price-num {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-denom {
  font-size: 14px;
  color: var(--slate-500);
  margin-top: 36px;
  font-weight: 500;
}

.pricing-card.featured .price-denom { color: rgba(255,255,255,0.6); }

.plan-billing {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 24px;
}

.pricing-card.featured .plan-billing { color: rgba(255,255,255,0.6); }

.plan-divider {
  height: 1px;
  background: var(--slate-100);
  margin: 20px 0;
}

.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.15); }

.plan-feature-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.45;
}

.pricing-card.featured .plan-feature { color: rgba(255,255,255,0.88); }

.plan-check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-check.yes { color: var(--green-600); }
.pricing-card.featured .plan-check.yes { color: #86efac; }

.plan-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.7); }

/* Comparison Table */
.comparison-wrap { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
  font-size: 14px;
}

.comparison-table thead th {
  background: var(--slate-50);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-500);
}

.comparison-table td:first-child { font-weight: 500; color: var(--slate-800); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--slate-50); }

.check-yes { color: var(--green-600); display: inline; }
.check-no  { color: var(--slate-300); display: inline; }

/* FAQ
   ---------------------------------------------------------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item.open { border-color: var(--blue-200); }

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-900);
  text-align: left;
  background: var(--white);
  transition: background 0.15s;
}

.faq-btn:hover { background: var(--slate-50); }
.faq-item.open .faq-btn { color: var(--blue-700); }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.15s;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--blue-500); }

.faq-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate-600);
  border-top: 1px solid var(--slate-100);
}

.faq-item.open .faq-body { display: block; }

/* Contact Page
   ---------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  position: sticky;
  top: 88px;
}

.contact-info-item { display: flex; gap: 14px; margin-bottom: 28px; }

.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}

.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.5;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-card p {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--slate-900);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-400); }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.form-privacy {
  font-size: 12px;
  color: var(--slate-400);
  line-height: 1.5;
}

.form-privacy a { color: var(--blue-600); }
.form-privacy a:hover { text-decoration: underline; }

/* Inline success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: var(--slate-600); }

/* Utilities
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Responsive
   ---------------------------------------------------------- */
@media (max-width: 1060px) {
  .hero .container   { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { order: -1; justify-content: center; }
  .browser-mockup    { max-width: 520px; }
  .hero h1           { font-size: 44px; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid        { grid-template-columns: 1fr; gap: 36px; }
  .steps-connector   { display: none; }
  .diff-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .features-overview { grid-template-columns: repeat(2, 1fr); }
  .feature-row       { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse > .feature-row-content { order: 0; }
  .feature-row.reverse > .feature-row-visual  { order: 0; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; }
  .contact-layout    { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .hero       { padding: 112px 0 72px; }
  .hero h1    { font-size: 34px; }
  .hero-lead  { font-size: 16px; }
  .hero-meta  { display: none; }

  .nav-links      { display: none; }
  .nav-cta        { display: none; }
  .btn-mobile-menu{ display: flex; }

  .section-title  { font-size: 30px; }
  .features-grid  { grid-template-columns: 1fr; }
  .features-overview { grid-template-columns: repeat(2, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 8px; }
  .page-hero h1   { font-size: 36px; }
  .cta-banner h2  { font-size: 30px; }
}

@media (max-width: 480px) {
  .hero h1          { font-size: 28px; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .cta-actions      { flex-direction: column; align-items: center; }
  .features-overview{ grid-template-columns: repeat(2, 1fr); }
}

/* Waitlist form
   ---------------------------------------------------------- */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  flex-wrap: wrap;
}

.waitlist-form .waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.waitlist-form .waitlist-input::placeholder { color: rgba(255,255,255,0.38); }

.waitlist-form .waitlist-input:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.waitlist-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4ade80;
  margin-top: 4px;
}

.waitlist-success.show { display: flex; }

/* Coming soon page
   ---------------------------------------------------------- */
.coming-soon-hero {
  background: linear-gradient(145deg, var(--slate-950) 0%, #132255 50%, #1a3a8f 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.coming-soon-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(37,99,235,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-hero .container { position: relative; z-index: 1; }

.coming-soon-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.coming-soon-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.coming-soon-hero .waitlist-form {
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

@media (max-width: 768px) {
  .coming-soon-features { grid-template-columns: 1fr; }
  .coming-soon-hero h1  { font-size: 36px; }
  .waitlist-form        { flex-direction: column; }
  .waitlist-form .waitlist-input { min-width: 0; }
}
