/* ============================================
   Rentibly — Shared Stylesheet (Light Theme)
   ============================================ */

:root {
  /* Light theme palette */
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-muted: #F3F4F6;
  --border: #E5E7EB;
  --border-soft: #EEF0F3;
  --ink: #0B1120;
  --ink-mid: #1F2937;

  /* Legacy aliases — values flipped for light theme */
  --navy: #FFFFFF;          /* page background */
  --navy-light: #F7F8FA;    /* alt section bg */
  --navy-mid: #E5E7EB;      /* borders */
  --navy-card: #FFFFFF;     /* mock body bg */
  --white: #0B1120;         /* now: primary dark text */
  --slate: #6B7280;
  --slate-light: #1F2937;
  --slate-dark: #9CA3AF;

  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --amber-dark: #B45309;
  --amber-soft: #FEF3C7;

  --green: #10B981;
  --green-soft: #D1FAE5;
  --red: #EF4444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
  --radius: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.12), 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-mid);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navigation ───────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem;
  min-width: 540px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: var(--bg-soft); }
.nav-dropdown-item-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.nav-dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.nav-dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--slate);
  line-height: 1.4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}
.btn:hover {
  background: #1F2937;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11, 17, 32, 0.18);
}
.btn-lg { padding: 0.95rem 1.85rem; font-size: 0.95rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}
.btn-amber {
  background: var(--amber);
  color: var(--ink);
}
.btn-amber:hover {
  background: var(--amber-light);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: none;
}
.btn-ghost:hover {
  color: var(--ink);
  background: transparent;
  transform: none;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Generic layout ──────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 2rem; position: relative; }
.section-tight { padding: 4.5rem 2rem; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-divider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.section-header h2 em {
  font-style: italic;
  color: var(--amber-dark);
}
.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Hero variants ───────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    var(--bg);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--amber);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--amber-dark);
  margin-bottom: 1.75rem;
  background: var(--amber-soft);
  animation: fadeInUp 0.7s ease both;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--amber-dark); }
.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.3s both;
  flex-wrap: wrap;
}

/* Page-level hero (smaller) */
.page-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 700px 380px at 50% 0%, rgba(245, 158, 11, 0.07) 0%, transparent 65%),
    var(--bg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
  color: var(--ink);
}
.page-hero h1 em { font-style: italic; color: var(--amber-dark); }
.page-hero p.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── Trust strip ──────────────────────── */
.trust-strip {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  background: var(--bg-soft);
}
.trust-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-mid);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ── Mock UI ──────────────────────── */
.mock-window {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin: 4rem auto 0;
  max-width: 980px;
  position: relative;
  z-index: 1;
}
.mock-window-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D1D5DB;
}
.mock-dots span:nth-child(1) { background: #EF4444; }
.mock-dots span:nth-child(2) { background: #FBBF24; }
.mock-dots span:nth-child(3) { background: #10B981; }
.mock-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--slate);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.mock-body {
  background: #FFFFFF;
  padding: 1.5rem;
  min-height: 440px;
}

/* Mock dashboard */
.mock-dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  height: 420px;
}
.mock-sidebar {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem 0.75rem;
}
.mock-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 0.15rem;
}
.mock-sidebar-item.active {
  background: var(--amber-soft);
  color: var(--amber-dark);
}
.mock-sidebar-item-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--slate-dark);
}
.mock-sidebar-item.active .mock-sidebar-item-dot { background: var(--amber); }
.mock-main {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.mock-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
}
.mock-stat-label {
  font-size: 0.65rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.mock-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
}
.mock-stat-trend {
  font-size: 0.7rem;
  color: var(--green);
  margin-top: 0.2rem;
}
.mock-rows {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}
.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 80px 90px;
  align-items: center;
  padding: 0.7rem 0.95rem;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-mid);
}
.mock-row:last-child { border-bottom: none; }
.mock-row-head { color: var(--slate); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; background: var(--bg-soft); }
.mock-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--green-soft);
  color: #047857;
}
.mock-pill.warn { background: var(--amber-soft); color: var(--amber-dark); }
.mock-pill.muted { background: var(--bg-muted); color: var(--slate); }

/* Mock chat (inbox) */
.mock-inbox {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  height: 420px;
}
.mock-conv-list {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.4rem;
}
.mock-conv {
  padding: 0.6rem 0.65rem;
  border-radius: 8px;
  margin-bottom: 0.1rem;
}
.mock-conv.active { background: var(--amber-soft); }
.mock-conv-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.2rem;
}
.mock-conv-name { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.mock-conv-time { font-size: 0.62rem; color: var(--slate); }
.mock-conv-msg { font-size: 0.7rem; color: var(--slate); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-conv-ch {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  margin-top: 0.2rem;
}
.mock-conv-ch.wa { color: #128C7E; }
.mock-conv-ch.airbnb { color: #E11D48; }
.mock-conv-ch.email { color: var(--amber-dark); }

.mock-chat {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.mock-bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  font-size: 0.78rem;
  max-width: 75%;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.mock-bubble.them {
  background: #FFFFFF;
  color: var(--ink-mid);
  border: 1px solid var(--border-soft);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.mock-bubble.you {
  background: var(--ink);
  color: #FFFFFF;
  align-self: flex-end;
  border-top-right-radius: 4px;
  font-weight: 500;
}
.mock-chat-spacer { flex: 1; }

/* ── Features grid ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate);
}
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-dark);
  letter-spacing: 0.01em;
}
.feature-card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.feature-card:hover .feature-card-link::after { transform: translateX(3px); }

/* ── Two-column feature row ──────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 0;
}
.split.reverse .split-text { order: 2; }
.split-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  color: var(--ink);
}
.split-text h2 em { font-style: italic; color: var(--amber-dark); }
.split-text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.split-list {
  list-style: none;
  margin-bottom: 1.75rem;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.5;
}
.split-list li strong { color: var(--ink); font-weight: 600; }
.split-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23B45309' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Stats / metrics row ─────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.metric {
  text-align: center;
  padding: 2rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--amber-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--slate);
}

/* ── Pricing ──────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 60%);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.price-desc {
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  min-height: 2.4em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-amount-sub {
  color: var(--slate);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.price-features li {
  font-size: 0.875rem;
  color: var(--ink-mid);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6L5 8.5L9.5 4' stroke='%23B45309' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── FAQ ──────────────────────────────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--amber-dark);
  font-weight: 300;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-item.open .faq-a {
  margin-top: 0.85rem;
  max-height: 400px;
}

/* ── CTA box ──────────────────────────── */
.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  position: relative;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cta-box h2 em { font-style: italic; color: var(--amber-dark); }
.cta-box > p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.waitlist-form input {
  flex: 1;
  padding: 0.85rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-form input::placeholder { color: var(--slate-dark); }
.waitlist-form input:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12); }
.waitlist-form button {
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover {
  background: #1F2937;
  box-shadow: 0 8px 24px rgba(11, 17, 32, 0.18);
}
.waitlist-note {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 1rem;
  position: relative;
}
.waitlist-success {
  display: none;
  color: var(--amber-dark);
  margin-top: 1rem;
  font-weight: 500;
  position: relative;
}

/* ── Integrations grid ───────────────── */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.integration-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.integration-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.integration-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}
.integration-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.integration-category {
  font-size: 0.7rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.integration-status {
  margin-top: 0.6rem;
  font-size: 0.66rem;
  color: #047857;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.integration-status.soon { color: var(--slate-dark); }

/* ── Quote / testimonial ─────────────── */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-block blockquote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.quote-author { color: var(--slate); font-size: 0.9rem; }
.quote-author strong { color: var(--ink); display: block; font-weight: 600; }

/* ── Footer ──────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  position: relative;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}
.footer-brand span { color: var(--amber); }
.footer-tagline {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--slate);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-bottom-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.78rem;
}
.footer-bottom-links a:hover { color: var(--ink); }

/* ── Animations ──────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .split.reverse .split-text { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-dropdown-menu { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #FFFFFF;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section, .section-tight { padding: 3.5rem 1.25rem; }
  .hero, .page-hero { padding: 7rem 1.25rem 3rem; }
  .mock-dash, .mock-inbox { grid-template-columns: 1fr; height: auto; }
  .mock-sidebar, .mock-conv-list { display: none; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .waitlist-form { flex-direction: column; }
}
