/* ============================
   CSS VARIABLES
   ============================ */
:root {
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco,
    Consolas, 'Liberation Mono', monospace;

  --color-bg: #ffffff;
  --color-bg-alt: #f9fafb;
  --color-text: #111111;
  --color-text-muted: #52525b;
  --color-border: #e5e7eb;
  --color-accent: #000000;
  --color-accent-hover: #333333;

  --max-width: 1200px;
  --max-width-narrow: 720px;
  --radius: 6px;
  --radius-sm: 4px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ============================
   UTILITIES
   ============================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.muted { color: var(--color-text-muted); font-size: 0.9rem; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--color-bg-alt); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover { border-color: var(--color-accent); }

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

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ============================
   HEADER / NAV
   ============================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 60px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--color-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s;
  transform-origin: center;
}

/* Hamburger menu open state (X icon) */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ============================
   HERO
   ============================ */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
  padding: 7px 16px;
  border-radius: 100px;
  background: #000000;
}

.hero-eyebrow svg {
  color: #25d366;
  flex-shrink: 0;
}

/* Eyebrow Variation 1: With Icon */
.hero-eyebrow-v1 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 7px 16px;
  background: #000000;
  color: #ffffff;
}

.hero-eyebrow-v1 svg {
  color: #25d366; /* WhatsApp green */
}

/* Eyebrow Variation 2: Badge Style */
.hero-eyebrow-v2 {
  display: inline-block;
  margin-bottom: 1.75rem;
  padding: 0;
  background: none;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  background: rgba(37, 211, 102, 0.1);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

/* Eyebrow Variation 3: Underline Accent */
.hero-eyebrow-v3 {
  display: inline-block;
  padding: 0 0 0.5rem 0;
  background: none;
  color: #000000;
  border-bottom: 2px solid #25d366;
}

.hero-h1 {
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hero-sub {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 520px;
}

.hero-highlight {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0a4a3a;
  background: linear-gradient(transparent 52%, rgba(37, 211, 102, 0.55) 52%);
  padding: 0 3px;
  border-radius: 0;
  box-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-trust {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* OPTION 1: Bold & Dark - More Emphasis */
.trust-item-v1 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111111;
  padding: 8px 16px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  letter-spacing: -0.01em;
}

/* OPTION 2: With Check Icons */
.trust-item-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111111;
  padding: 8px 16px;
  background: #f9fafb;
  border-radius: 100px;
}

.trust-item-v2::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* OPTION 3: Minimal with Separator Dots */
.trust-item-v3 {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
  padding: 0;
  background: none;
  border: none;
}

.trust-item-v3:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  margin-right: 0.25rem;
  color: #d1d5db;
}

/* Current style (for comparison) */
.trust-item {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  padding: 5px 12px;
  background: #f3f4f6;
  border-radius: 100px;
  letter-spacing: -0.01em;
}

.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Demo container with interactive badge */
.demo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.demo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: badge-float 3s ease-in-out infinite;
}

.demo-badge svg {
  color: var(--color-accent);
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hero-code {
  background: #111;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

.hero-code pre {
  margin: 0;
}

.hero-code code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
  white-space: nowrap;
}

/* ============================
   TRUST BANNER
   ============================ */

.hero-testimonial {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
  text-align: center;
}

.hero-testimonial-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-testimonial-icon {
  width: 36px;
  height: 28px;
  color: var(--color-accent);
  opacity: 0.15;
  flex-shrink: 0;
}

.hero-testimonial-quote {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--color-text);
  margin: 0;
  line-height: 1.55;
}

.hero-testimonial-attr {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.hero-testimonial-attr a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-testimonial-attr a:hover {
  color: var(--color-text);
}

.trust-banner {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
}

.trust-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

@media (max-width: 480px) {
  .trust-banner-inner {
    flex-direction: column;
    gap: 1.25rem;
  }

  .trust-divider {
    display: none;
  }
}

/* ============================
   FOUNDER QUOTE BLOCK
   ============================ */
.fq-section { padding: 56px 0; }

.fq-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #25D366;
}
.fq-attribution {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 2rem;
}
.fq-attr-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.fq-name { font-weight: 600; font-size: 0.9rem; color: var(--color-text); }
.fq-role { font-size: 0.8125rem; color: var(--color-text-muted); }
.fq-link { font-size: 0.8125rem; color: #128C7E; text-decoration: none; font-weight: 500; margin-top: 0.15rem; }
.fq-link:hover { text-decoration: underline; }

.fq-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.fq-v4-outer { display: flex; justify-content: center; }
.fq-v4 {
  max-width: 700px;
  border-left: 4px solid #111;
  padding-left: 2rem;
}
.fq-v4-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 400;
}

@media (max-width: 600px) {
  .fq-v4-text { font-size: 1rem; }
}

/* ============================
   WHY WHATSAPP
   ============================ */
.why-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: #374151;
}

.why-highlight {
  font-size: 1.1rem !important;
  color: var(--color-text) !important;
}

/* ============================
   PLATFORMS
   ============================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3rem 2rem;
  margin-top: 2.5rem;
  justify-items: center;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.platform-logo:hover {
  opacity: 1;
}

a.platform-logo-link {
  text-decoration: none;
}

.platform-logo img {
  height: 28px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .platform-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }

  .platform-logo img {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
  }
}

.platform-docs {
  text-align: center;
  margin-top: 2rem;
}

.docs-link {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.docs-link:hover {
  text-decoration: underline;
}

/* ============================
   STEPS
   ============================ */
#how-it-works {
  text-align: center;
}

/* Old steps (keep for legacy) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-text);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* How It Works - Simple Design */
.how-header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-simple {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.simple-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  align-items: center;
}

.simple-step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.simple-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.simple-step-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.simple-step-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Code Box - Mobile Friendly */
.code-box {
  margin-top: 1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.code-box-header {
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.code-box-header span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-docs-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
}

.code-docs-link:hover {
  color: #25d366;
}

.code-box-content {
  padding: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.code-box-content code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #111111;
  line-height: 1.6;
  display: block;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .simple-step-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .simple-step-header h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .simple-step-desc {
    font-size: 0.95rem;
    text-align: center;
  }

  .code-box {
    max-width: calc(100vw - 3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .code-box-content {
    padding: 0.5rem;
  }

  .code-box-content code {
    font-size: 0.7rem;
  }
}

.code-block {
  margin-top: 1rem;
  background: #111;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  overflow-x: auto;
  max-width: 100%;
}

.code-block pre {
  max-width: 100%;
  overflow-x: auto;
}

.code-block code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #e2e8f0;
  word-break: break-all;
  white-space: pre-wrap;
}

.how-footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-top: 3.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  background: #f9fafb;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-weight: 500;
  line-height: 1.6;
}

.code-block pre { margin: 0; }

/* ============================
   COMPARISON TABLE
   ============================ */
#comparison {
  text-align: center;
}

.comparison-table {
  max-width: 650px;
  margin: 2.5rem auto 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.comparison-table thead {
  background: #f9fafb;
}

.comparison-table th {
  padding: 1.25rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid #e5e7eb;
  text-align: center;
  letter-spacing: -0.01em;
}

.comparison-table .icon-email,
.comparison-table .icon-whatsapp {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -2px;
}

.comparison-table .icon-email {
  color: #6b7280;
}

.comparison-table .highlight-col .icon-whatsapp {
  color: #ffffff;
}

.comparison-table th:first-child {
  width: 40%;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
  font-size: 1rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: #fafbfc;
}

.comparison-table .row-label {
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
}

.comparison-table .highlight-col {
  background: #000000;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
}

.comparison-table thead .highlight-col {
  background: #000000;
  color: #ffffff;
  border-bottom-color: #000000;
}

.comparison-quote {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.quote-source {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Visual Comparison Cards */
.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  align-items: start;
}

.comparison-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.card-badge {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.card-badge-bad {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.card-badge-good {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

/* Gmail Mockup */
.gmail-mockup {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gmail-header {
  background: #f6f8fc;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}

.gmail-logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: #5f6368;
}

.gmail-unread {
  font-size: 0.8rem;
  color: #5f6368;
}

.gmail-unread strong {
  color: #d93025;
  font-weight: 700;
}

.gmail-list {
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gmail-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.1s;
}

.gmail-row:hover {
  background: #f5f5f5;
  box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0;
}

.gmail-row.unread-email {
  background: #f2f6fc;
}

.gmail-row.form-email {
  background: #e8f0fe;
}

.gmail-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #5f6368;
}

.gmail-star {
  font-size: 1rem;
  color: #dadce0;
  cursor: pointer;
}

.gmail-content {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
}

.gmail-sender {
  font-weight: 600;
  font-size: 0.875rem;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gmail-subject {
  font-size: 0.875rem;
  color: #5f6368;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gmail-time {
  font-size: 0.75rem;
  color: #5f6368;
  white-space: nowrap;
}

/* WhatsApp Mockup for Comparison */
.whatsapp-mockup-comparison {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}

/* Emphasis for WhatsApp (Better option) */
.whatsapp-mockup-comparison.emphasized {
  border: 2px solid #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.whatsapp-mockup-comparison .wa-header {
  background: #075e54;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #054d44;
}

.whatsapp-mockup-comparison .wa-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-mockup-comparison .wa-avatar {
  width: 36px;
  height: 36px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.whatsapp-mockup-comparison .wa-contact-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.whatsapp-mockup-comparison .wa-contact-status {
  font-size: 0.75rem;
  color: #c7e9d7;
}

.whatsapp-mockup-comparison .wa-messages {
  background: #e5ddd5;
  padding: 1.25rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.whatsapp-mockup-comparison .wa-message {
  display: flex;
  justify-content: flex-start;
}

.whatsapp-mockup-comparison .wa-bubble {
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-mockup-comparison .wa-text {
  font-size: 0.9rem;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

.whatsapp-mockup-comparison .wa-text:last-of-type {
  margin-bottom: 0.5rem;
}

.whatsapp-mockup-comparison .wa-button-static {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 0.625rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: default;
  margin: 0.625rem 0 0.5rem;
}

.comparison-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-quote-new {
  margin: 0 0 1.5rem 0;
  padding: 1.5rem 2rem;
  background: #f9fafb;
  border-left: 4px solid #000000;
  border-radius: 4px;
}

.quote-stat {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.quote-source-new {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  font-style: normal;
}

.comparison-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: #4b5563;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gmail-content {
    grid-template-columns: 120px 1fr auto;
    gap: 0.375rem;
  }

  .gmail-sender,
  .gmail-subject {
    font-size: 0.8rem;
  }

  .comparison-stat {
    font-size: 1.05rem;
  }
}

/* ============================
   WHAT IT IS/ISN'T CARDS
   ============================ */
.is-isnt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.isnt-card,
.is-card {
  padding: 2.5rem 2rem;
  border-radius: 8px;
  min-height: 320px;
}

.isnt-card {
  background: #ffffff;
  border: 2px dashed #d1d5db;
}

.isnt-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.isnt-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.isnt-items li {
  font-size: 1rem;
  color: #9ca3af;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.isnt-items li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #d1d5db;
  font-weight: 700;
}

.is-card {
  background: #000000;
  border: 2px solid #000000;
  position: relative;
}

.is-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.is-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.is-items li {
  font-size: 1rem;
  color: #ffffff;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.is-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.callout-box {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #000000;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.callout-box p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #111111;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .is-isnt-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .isnt-card,
  .is-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .callout-box {
    padding: 1.5rem 1.5rem;
    margin-top: 2rem;
  }

  .callout-box p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .isnt-card,
  .is-card {
    padding: 1.75rem 1.25rem;
  }

  .isnt-items li,
  .is-items li {
    font-size: 0.95rem;
  }

  .callout-box {
    padding: 1.25rem 1.25rem;
  }

  .callout-box p {
    font-size: 1rem;
  }
}

/* ============================
   DASHBOARD SECTION
   ============================ */
.dashboard-list {
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
}

.dashboard-list li::before {
  content: '→';
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============================
   IS / ISN'T
   ============================ */
.is-isnt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}

.isnt-col h3 { color: var(--color-text-muted); }
.is-col h3 { color: var(--color-text); }

.isnt-list li, .is-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.isnt-list li:last-child, .is-list li:last-child { border-bottom: none; }

.isnt-list li {
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--color-border);
}

.is-list li {
  color: var(--color-text);
}

.is-list li::before {
  content: '✓ ';
  color: #111;
  font-weight: 700;
}

/* ============================
   PRICING
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pricing-card-featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
  background: #f0fdf4;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  justify-content: center;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  font-size: 0.8rem;
  color: #374151;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.plan-features li:last-child { border-bottom: none; }

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.pricing-custom {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.pricing-custom a {
  color: var(--color-accent);
  text-decoration: none;
}

.pricing-custom a:hover {
  text-decoration: underline;
}

/* ============================
   ROADMAP
   ============================ */
.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.roadmap-list li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.roadmap-list li:last-child { border-bottom: none; }

.roadmap-done::before { content: '✅'; }
.roadmap-wip::before { content: '🚧'; }
.roadmap-planned::before { content: '📋'; }

.roadmap-done { color: var(--color-text); }
.roadmap-wip { color: var(--color-text-muted); }
.roadmap-planned { color: var(--color-text-muted); }

/* ============================
   FOUNDER
   ============================ */
.founder-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.25rem;
}

.founder-content strong {
  color: var(--color-text);
}

/* ============================
   FAQ
   ============================ */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
  border-color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
  color: var(--color-text);
  line-height: 1.5;
}

.faq-item summary h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item:hover summary::after {
  color: var(--color-text);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: #000000;
}

.faq-item p {
  padding: 1rem 0 0.25rem;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: #000;
  color: #fff;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-inner .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cta-inner .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.cta-subtext {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--color-text); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.footer-bottom .status-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .status-link:hover {
  color: var(--color-text);
}

/* ============================
   PROSE (Privacy / Terms / Blog)
   ============================ */
.prose-page {
  padding: 60px 0 100px;
}

.prose-container {
  max-width: 740px;
  margin: 0 auto;
  overflow-x: hidden;
}

.prose-container h1 {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  display: block;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

.post-meta time {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* AI Summarize - Minimal Blog Meta */
.ai-summarize-meta {
  margin-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.ai-summarize-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.625rem;
  letter-spacing: 0.01em;
}

.ai-summarize-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.ai-summarize-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  opacity: 0.85;
}

.ai-summarize-links a:hover {
  opacity: 1;
  border-color: var(--color-text-muted);
  transform: translateY(-1px);
}

.ai-summarize-links svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.ai-summarize-links span {
  font-size: 0.8125rem;
  color: var(--color-text);
  font-weight: 500;
}

.prose-content {
  margin-top: 2.5rem;
  overflow-x: hidden;
  max-width: 100%;
}

.prose-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.prose-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose-content p { color: #374151; line-height: 1.75; }

.prose-content ul, .prose-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.prose-content li { margin-bottom: 0.4rem; color: #374151; font-size: 0.95rem; }

.prose-content a { color: #000; text-decoration: underline; text-underline-offset: 2px; }

.prose-content strong { color: var(--color-text); }

/* Code blocks in blog posts - High contrast for readability */
.prose-content .highlight {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.prose-content .highlight pre {
  overflow: visible;
  padding: 1rem 1.25rem;
  margin: 0;
  border-radius: 8px;
  background: #f8f9fa !important;
  width: fit-content;
  min-width: 100%;
}

.prose-content .highlight code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.6;
  word-wrap: normal;
  white-space: pre;
  display: block;
  color: #1f2937 !important;
  width: fit-content;
}

/* Mobile adjustments for code blocks */
@media (max-width: 768px) {
  .prose-content .highlight {
    margin: 1.5rem -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .prose-content .highlight pre {
    padding: 0.75rem 1rem;
  }

  .prose-content .highlight code {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* Override ALL syntax highlighting colors for readability */
.prose-content .highlight code * {
  color: #1f2937 !important;
  background: transparent !important;
}

/* Plain pre blocks (without .highlight wrapper) */
.prose-content > pre {
  overflow-x: auto;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.prose-content > pre code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #1f2937 !important;
  background: transparent !important;
  white-space: pre;
  display: block;
  width: fit-content;
}

/* Mobile adjustments for plain pre blocks */
@media (max-width: 768px) {
  .prose-content > pre {
    padding: 0.75rem 1rem;
    margin: 1.5rem -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .prose-content > pre code {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* Inline code */
.prose-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: #f3f4f6;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: #1f2937;
}

.prose-content .highlight code {
  background: transparent;
  padding: 0;
}

.prose-content .info-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 0.875rem 1.1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #0c4a6e;
  line-height: 1.6;
}

.prose-content .info-box .info-icon {
  font-style: normal;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}

.prose-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.prose-footer a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Blog */
.blog-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.blog-item:first-child { border-top: 1px solid var(--color-border); }

.blog-thumbnail {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.blog-thumbnail:hover img {
  transform: scale(1.05);
}

.blog-item-content {
  flex: 1;
  min-width: 0;
}

.blog-item time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.blog-item h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.blog-item h2 a:hover { text-decoration: underline; text-underline-offset: 2px; }

.blog-item p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

.blog-empty { color: var(--color-text-muted); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .hero { padding: 60px 0 50px; }
  .hero {
    overflow-x: hidden;
  }

  .hero .container {
    padding: 0 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-eyebrow {
    display: inline-flex;
  }

  .hero-headline {
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }

  .hero-headline span {
    white-space: normal !important;
    display: inline !important;
  }

  .hero-sub {
    margin: 0 auto 2rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn-lg {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .hero-trust {
    justify-content: center;
  }

  .trust-item-v1 {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .demo-container {
    max-width: 100%;
    width: 100%;
  }

  .whatsapp-mockup {
    margin: 0 auto;
    max-width: calc(100vw - 3rem);
    width: 100%;
  }

  .demo-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    max-width: calc(100vw - 4rem);
  }
  .hero-sub {
    font-size: 1.15rem;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }

  .comparison-table .row-label {
    font-size: 0.95rem;
  }

  .quote-text {
    font-size: 1.25rem;
  }

  .blog-item {
    flex-direction: column;
    gap: 1rem;
  }

  .blog-thumbnail {
    width: 100%;
    height: 180px;
  }

  .nav-links, .nav-actions {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links.open, .nav-actions.open { display: flex; }
  .nav-actions.open { top: auto; border-bottom: none; padding-top: 0; }

  .nav-toggle { display: flex; }

  header .container { position: relative; }

  .is-isnt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .hero { padding: 50px 0 40px; }
  .hero .container {
    padding: 0 1rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-headline {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-headline span {
    white-space: normal !important;
  }

  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero-actions .btn-lg {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .trust-item-v1 {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  .trust-item { font-size: 0.75rem; padding: 4px 10px; }
  .quote-text { font-size: 1.1rem; }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-mockup {
    max-width: 100%;
    border-width: 6px;
  }
  .wa-messages {
    min-height: 360px;
    max-height: 360px;
  }
}

/* ============================
   WHATSAPP DEMO
   ============================ */
.whatsapp-demo-section {
  background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
}

.demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.demo-context h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.demo-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.demo-step:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.demo-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WhatsApp mockup */
.whatsapp-mockup {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 8px solid #1f1f1f;
}

.wa-header {
  background: #075e54;
  padding: 0.75rem 1rem;
}

.wa-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.wa-contact-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.wa-contact-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.wa-messages {
  background: #e5ddd5;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
  padding: 1.25rem 1rem;
  min-height: 420px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-message {
  display: flex;
  justify-content: flex-start;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-bubble {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}

.wa-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 0.375rem;
  word-wrap: break-word;
}

.wa-text:last-of-type {
  margin-bottom: 0.5rem;
}

.wa-text strong {
  font-weight: 600;
}

.wa-text.wa-muted {
  color: #667781;
  font-size: 0.8rem;
}

.wa-divider {
  font-size: 0.7rem;
  color: #d1d5db;
  margin: 0.375rem 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.wa-button {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #25d366;
  color: #25d366;
  padding: 0.625rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  margin: 0.625rem 0 0.5rem;
  transition: all 0.2s;
  animation: pulse-button 2.5s ease-in-out infinite;
}

.wa-button:hover {
  background: #e8f8f0;
  animation: none; /* Stop pulsing on hover */
}

.wa-button:active {
  transform: scale(0.98);
  animation: none;
}

/* Pulse animation for the View Details button */
@keyframes pulse-button {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
}

.wa-time {
  font-size: 0.7rem;
  color: #667781;
  text-align: right;
  margin-top: 0.25rem;
}

/* Typing indicator */
.wa-typing {
  display: flex;
  justify-content: flex-start;
}

.wa-typing-bubble {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.625rem 1rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-typing-bubble span {
  width: 8px;
  height: 8px;
  background: #667781;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.wa-typing-bubble span:nth-child(2) {
  animation-delay: 0.2s;
}

.wa-typing-bubble span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .demo-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .demo-context {
    text-align: center;
  }

  .demo-steps {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .whatsapp-mockup {
    max-width: 100%;
    width: 100%;
    border-width: 6px;
  }

  .demo-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}

