/* ============================================
   Redas Landing Page Styles — Pass 2
   Standalone — does not depend on dashboard.css
   Palette: Navy #1a2332, White #ffffff, Orange #e87722
   Font: IBM Plex Sans / IBM Plex Mono
   No gradients, no glows, no animations
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #333840;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1a2332;
  letter-spacing: -0.3px;
}

.section__subtitle {
  font-size: 1.05rem;
  text-align: center;
  color: #5a6370;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 10px 22px;
}

.btn--primary {
  background: #e87722;
  color: #ffffff;
  border-color: #e87722;
}

.btn--primary:hover {
  background: #d06a1e;
  border-color: #d06a1e;
}

.btn--outline {
  background: transparent;
  color: #1a2332;
  border-color: #c8cdd3;
}

.btn--outline:hover {
  border-color: #1a2332;
}

.btn--lg {
  padding: 12px 28px;
  font-size: 1rem;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e2e5e9;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5a6370;
  transition: color 0.15s;
}

.nav__link:hover {
  color: #1a2332;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #e87722;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.nav__cta:hover {
  background: #d06a1e;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a2332;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 96px;
  text-align: center;
  background: #1a2332;
  color: #ffffff;
}

.hero__inner {
  position: relative;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232, 119, 34, 0.12);
  border: 1px solid rgba(232, 119, 34, 0.35);
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e87722;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #9ba5b1;
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.hero__origin {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: #e87722;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero .btn--outline {
  color: #9ba5b1;
  border-color: #3d4d5f;
}

.hero .btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.hero__note {
  font-size: 0.8125rem;
  color: #5a6a7a;
}

/* Hero product preview — below CTAs */
.hero__preview {
  max-width: 840px;
  margin: 48px auto 0;
  border: 1px solid #2a3548;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero__preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #151d28;
  border-bottom: 1px solid #2a3548;
}

.hero__preview-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.hero__preview-url {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: #5a6a7a;
}

.hero__preview-body {
  display: grid;
  grid-template-columns: 80px 1fr 70px 70px;
  background: #1e2a38;
}

.hero__preview-row {
  display: contents;
}

.hero__preview-row--header .hero__preview-col {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  color: #5a6a7a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-bottom: 1px solid #2a3548;
  background: #1a2332;
}

.hero__preview-col {
  font-size: 0.75rem;
  color: #9ba5b1;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(42, 53, 72, 0.5);
}

.hero__preview-col--who {
  font-weight: 600;
  color: #ffffff;
}

.hero__preview-col--conf {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  text-align: right;
}

.hero__preview-conf--high { color: #4ade80; }
.hero__preview-conf--med { color: #fbbf24; }

/* ============================================
   TRUST STRIP — "Used by contractors..."
   ============================================ */
.trust-strip {
  padding: 24px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e5e9;
  text-align: center;
}

.trust-strip__text {
  font-size: 0.8125rem;
  color: #8a929c;
  font-weight: 500;
}

.trust-strip__text strong {
  color: #1a2332;
  font-weight: 700;
}

/* ============================================
   STATS STRIP — Key numbers
   ============================================ */
.stats-strip {
  padding: 48px 0;
  background: #ffffff;
}

.stats-strip__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.8125rem;
  color: #5a6370;
  font-weight: 500;
}

/* ============================================
   INTEGRATIONS STRIP
   ============================================ */
.integrations {
  padding: 32px 0;
  background: #f5f6f8;
  border-bottom: 1px solid #e2e5e9;
}

.integrations__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8a929c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.integrations__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5a6370;
  font-size: 0.8125rem;
  font-weight: 500;
}

.integration-item svg {
  opacity: 0.5;
}

/* ============================================
   PROBLEM — Left-border accent quotes
   ============================================ */
.problem {
  padding: 80px 0;
  background: #ffffff;
}

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

.problem__card {
  background: #ffffff;
  border: none;
  border-left: 2px solid #e87722;
  border-radius: 0;
  padding: 20px 24px;
  position: relative;
  transform: none;
}

.problem__card:nth-child(2) {
  background: #ffffff;
  border: none;
  border-left: 2px solid #e87722;
  transform: none;
}

.problem__card:nth-child(3) {
  background: #ffffff;
  border: none;
  border-left: 2px solid #e87722;
  transform: none;
}

.problem__quote {
  font-size: 1.02rem;
  font-style: italic;
  color: #333840;
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: left;
}

.problem__cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-style: normal;
  color: #8a929c;
  font-weight: 500;
  text-align: left;
  display: block;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 80px 0;
  background: #f5f6f8;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e5e9;
  border-radius: 4px;
  padding: 28px 24px;
  text-align: left;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #e87722;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
  text-align: left;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: #5a6370;
  line-height: 1.6;
  text-align: left;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #e2e5e9;
  z-index: 0;
}

.step {
  text-align: left;
  position: relative;
  z-index: 1;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #1a2332;
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
  text-align: left;
}

.step__desc {
  font-size: 0.92rem;
  color: #5a6370;
  line-height: 1.6;
  text-align: left;
}

/* ============================================
   DEMO — Static product screenshot mockup
   ============================================ */
.demo-section {
  padding: 120px 0;
  background: #f5f6f8;
}

.demo-screenshot {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid #d0d4da;
  border-radius: 4px;
  overflow: hidden;
  background: #1a2332;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.demo-screenshot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #151d28;
  border-bottom: 1px solid #2a3548;
}

.demo-screenshot__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.demo-screenshot__url {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: #5a6a7a;
}

.demo-screenshot__body {
  display: flex;
  min-height: 280px;
}

.demo-screenshot__sidebar {
  width: 160px;
  background: #1e2a38;
  border-right: 1px solid #2a3548;
  padding: 16px 0;
  flex-shrink: 0;
}

.demo-screenshot__nav-item {
  padding: 8px 16px;
  font-size: 0.8125rem;
  color: #6b7a8a;
  font-weight: 500;
}

.demo-screenshot__nav-item--active {
  color: #ffffff;
  background: rgba(232, 119, 34, 0.12);
  border-left: 2px solid #e87722;
}

.demo-screenshot__main {
  flex: 1;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.demo-screenshot__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e2e5e9;
}

.demo-screenshot__topbar-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2332;
}

.demo-screenshot__topbar-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #8a929c;
}

.demo-screenshot__row {
  display: grid;
  grid-template-columns: 100px 1fr 80px 80px;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid #e2e5e9;
  background: #ffffff;
  align-items: center;
}

.demo-screenshot__row--header {
  background: #f5f6f8;
  border-bottom: 2px solid #e2e5e9;
}

.demo-screenshot__row--header .demo-screenshot__col {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #8a929c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-screenshot__col {
  font-size: 0.8125rem;
  color: #333840;
}

.demo-screenshot__col--who {
  font-weight: 600;
  color: #1a2332;
}

.demo-screenshot__col--what {
  color: #5a6370;
}

.demo-screenshot__col--due {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: #5a6370;
}

.demo-screenshot__col--conf {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
}

.demo-screenshot__conf--high {
  color: #1a7a3a;
}

.demo-screenshot__conf--med {
  color: #8a6d1b;
}

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.who-card {
  border: 1px solid #e2e5e9;
  border-top: 3px solid #e87722;
  border-radius: 4px;
  padding: 28px 24px;
  text-align: left;
}

.who-card__role {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 10px;
}

.who-card__desc {
  font-size: 0.92rem;
  color: #5a6370;
  line-height: 1.6;
  text-align: left;
}

/* ============================================
   DIFFERENTIATOR / COMPARISON — Spec sheet
   No card wrapper, no rounded corners
   ============================================ */
.differentiator {
  padding: 80px 0;
  background: #f5f6f8;
}

.diff__table {
  max-width: 800px;
  margin: 0 auto;
}

.diff__table table {
  border: 1px solid #d0d4da;
  border-radius: 0;
  font-size: 0.95rem;
}

.diff__table thead {
  background: #1a2332;
}

.diff__table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diff-th--label {
  color: #9ba5b1;
  width: 35%;
}

.diff-th--them {
  color: #6b7a8a;
  width: 30%;
}

.diff-th--us {
  color: #e87722;
  width: 35%;
}

.diff__table tbody tr {
  border-bottom: 1px solid #e2e5e9;
}

.diff__table tbody tr:last-child {
  border-bottom: none;
}

.diff__table td {
  padding: 14px 16px;
  vertical-align: top;
  text-align: left;
}

.diff-td--label {
  font-weight: 600;
  color: #1a2332;
  background: #fafbfc;
}

.diff-td--them {
  color: #8a929c;
}

.diff-td--us {
  color: #1a2332;
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: #ffffff;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e5e9;
}

.faq-item__q {
  cursor: pointer;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
}

.faq-item__q:hover {
  color: #e87722;
}

.faq-item__q .faq-chevron {
  flex-shrink: 0;
  margin-left: 16px;
  width: 18px;
  height: 18px;
  color: #8a929c;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-item__q .faq-chevron {
  transform: rotate(180deg);
  color: #e87722;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__a {
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: #5a6370;
  line-height: 1.7;
  text-align: left;
}

/* ============================================
   PRICING — Flat bordered boxes, left-aligned
   Featured card: 2px orange border
   ============================================ */
.pricing {
  padding: 120px 0;
  background: #f5f6f8;
}

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

.pricing-card {
  background: #ffffff;
  border: 1px solid #d0d4da;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
  position: relative;
}

.pricing-card--featured {
  border-color: #e87722;
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: #e87722;
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
  text-align: left;
}

.pricing-card__price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 24px;
  line-height: 1;
  text-align: left;
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #8a929c;
}

.pricing-card__features {
  margin-bottom: 24px;
}

.pricing-card__features li {
  padding: 7px 0;
  font-size: 0.875rem;
  color: #5a6370;
  border-bottom: 1px solid #f0f1f3;
  text-align: left;
  padding-left: 16px;
  position: relative;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #1a2332;
  border-radius: 50%;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 64px 0;
  text-align: center;
  background: #1a2332;
  color: #ffffff;
}

.final-cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta__subtitle {
  font-size: 1.05rem;
  color: #9ba5b1;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.final-cta__note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #5a6a7a;
}

/* ---------- Waitlist Form ---------- */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
}
.waitlist-form--centered {
  margin: 0 auto;
  justify-content: center;
}
.waitlist-form__input {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  border: 2px solid #d1d9e0;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-form__input:focus {
  border-color: #e87722;
}
.waitlist-form__success {
  font-size: 1.125rem;
  font-weight: 600;
  color: #16a34a;
  margin: 0;
  padding: 14px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 56px 0 28px;
  background: #1a2332;
  border-top: 3px solid #e87722;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 8px;
}

.footer__tagline {
  color: #6b7a8a;
  font-size: 0.875rem;
  text-align: left;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ba5b1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer__list li {
  margin-bottom: 8px;
}

.footer__list a {
  font-size: 0.875rem;
  color: #6b7a8a;
  transition: color 0.15s;
}

.footer__list a:hover {
  color: #e87722;
}

.footer__cta-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__cta-col .btn {
  align-self: flex-start;
}

.footer__contact-link {
  font-size: 0.875rem;
  color: #6b7a8a;
  transition: color 0.15s;
}

.footer__contact-link:hover {
  color: #e87722;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #2a3548;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: #4a5a6a;
}
.footer__address {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #3a4a5a;
}

/* ============================================
   RESPONSIVE — Tablet (< 968px)
   ============================================ */
@media (max-width: 968px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e2e5e9;
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .steps::before {
    display: none;
  }

  .demo-screenshot__sidebar {
    display: none;
  }

  .demo-screenshot__row {
    grid-template-columns: 80px 1fr 70px 60px;
    gap: 6px;
    padding: 8px 14px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .who__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff__table th,
  .diff__table td {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .hero__preview {
    max-width: 100%;
  }

  .hero__preview-body {
    grid-template-columns: 70px 1fr 60px 60px;
  }

  .stats-strip__row {
    gap: 40px;
  }

  .integrations__row {
    gap: 20px;
  }

  /* Reduce section padding on tablet */
  .problem,
  .features,
  .how-it-works,
  .demo-section,
  .who-section,
  .differentiator,
  .faq,
  .pricing,
  .final-cta {
    padding: 60px 0;
  }
}

/* ============================================
   RESPONSIVE — Mobile (< 640px)
   ============================================ */
@media (max-width: 640px) {
  .section__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero {
    padding: 110px 0 64px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__preview {
    margin: 32px -12px 0;
    border-radius: 0;
  }

  .hero__preview-body {
    grid-template-columns: 1fr 1fr;
  }

  .hero__preview-row--header {
    display: none;
  }

  .hero__preview-col--who {
    grid-column: 1 / -1;
    font-size: 0.8125rem;
  }

  .hero__preview-col--what {
    grid-column: 1 / -1;
  }

  .stats-strip__row {
    gap: 28px;
  }

  .stat-item__number {
    font-size: 1.75rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 20px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Waitlist form stacks on mobile */
  .waitlist-form {
    flex-direction: column;
    max-width: 100%;
  }

  .waitlist-form__input {
    font-size: 1rem;
  }

  /* Reduce section padding on mobile */
  .problem,
  .features,
  .how-it-works,
  .demo-section,
  .who-section,
  .differentiator,
  .faq,
  .pricing,
  .final-cta {
    padding: 48px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .demo-screenshot {
    margin: 0 -12px;
    border-radius: 0;
  }

  .demo-screenshot__sidebar {
    display: none;
  }

  .demo-screenshot__row {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 8px 12px;
  }

  .demo-screenshot__row--header {
    display: none;
  }

  .demo-screenshot__col--who {
    grid-column: 1 / -1;
    font-size: 0.8125rem;
  }

  .demo-screenshot__col--what {
    grid-column: 1 / -1;
  }

  .demo-screenshot__col--due {
    font-size: 0.75rem;
  }

  .demo-screenshot__col--conf {
    text-align: left;
    font-size: 0.75rem;
  }

  .final-cta__title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__brand {
    margin-bottom: 8px;
  }

  .who__grid {
    grid-template-columns: 1fr;
  }

  /* Comparison table mobile: stack cells */
  .diff__table table,
  .diff__table thead,
  .diff__table tbody,
  .diff__table th,
  .diff__table td,
  .diff__table tr {
    display: block;
  }

  .diff__table thead {
    display: none;
  }

  .diff__table tbody tr {
    margin-bottom: 12px;
    border: 1px solid #e2e5e9;
    border-radius: 4px;
    overflow: hidden;
  }

  .diff-td--label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    background: #f5f6f8;
  }

  .diff-td--them,
  .diff-td--us {
    padding: 6px 14px;
    font-size: 0.875rem;
  }

  .diff-td--them::before {
    content: 'Otter/Fireflies: ';
    font-weight: 500;
    color: #8a929c;
  }

  .diff-td--us::before {
    content: 'Redas: ';
    font-weight: 500;
    color: #e87722;
  }

  .diff-td--us {
    padding-bottom: 12px;
  }

  .integrations__row {
    gap: 10px;
    justify-content: center;
  }

  .integration-item {
    font-size: 0.7rem;
    gap: 3px;
  }

  .integration-item svg {
    width: 18px;
    height: 18px;
  }

  .faq-item__q {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .faq-item__a {
    font-size: 0.875rem;
  }

  /* Problem quotes readable on mobile */
  .problem__quote {
    font-size: 0.95rem;
  }

  /* Feature and step cards readable */
  .feature-card__title,
  .step__title {
    font-size: 1.05rem;
  }

  .feature-card__desc,
  .step__desc,
  .who-card__desc {
    font-size: 0.9rem;
  }
}
