@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Premium dark / metallic blue design system */
  --background: #05070D;
  --foreground: #EAF1FF;
  --card: #0B1020;
  --card-foreground: #EAF1FF;
  --primary: #4BA3FF;
  --primary-foreground: #06101D;
  --secondary: #101827;
  --secondary-foreground: #C7D2E6;
  --muted: #0E1524;
  --muted-foreground: #A7B0C0;
  --accent: #1E5BFF;
  --border: rgba(75, 163, 255, 0.18);
  --radius: 0.5rem;

  /* Extra tokens (safe defaults; no HTML changes required) */
  --surface-elevated: #101827;
  --glow: rgba(75, 163, 255, 0.35);
  --glow-soft: rgba(75, 163, 255, 0.16);
  --shadow-elev-1: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-elev-2: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 140px;
  background: radial-gradient(1200px 700px at 50% -180px, rgba(75, 163, 255, 0.10) 0%, transparent 60%),
    var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--foreground);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: auto;
  padding: 1.25rem 0 0.75rem;
  background: linear-gradient(180deg, rgba(11,16,32,0.82) 0%, rgba(5,7,13,0.68) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-brand img {
  display: block;
  height: 100px;
  width: auto;
  max-width: 400px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.navbar-nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--muted-foreground);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.navbar-nav a:hover { color: var(--foreground); }
.navbar-nav a.active { color: var(--primary); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.nav-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.nav-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.nav-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .navbar {
    height: auto;
    min-height: 56px;
  }

  .navbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    position: relative;
  }

  .navbar-brand img {
    height: 52px;
  }

  /* Hide nav links until hamburger tapped */
  .navbar-nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #05070D;
    border-top: 1px solid rgba(75,163,255,0.18);
    border-bottom: 1px solid rgba(75,163,255,0.18);
    padding: 0.5rem 0;
    z-index: 1000;
    gap: 0;
    margin: 0;
  }

  .navbar-nav.nav-open {
    display: flex !important;
  }

  .navbar-nav li {
    width: 100%;
  }

  .navbar-nav li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .navbar-nav li:last-child a {
    border-bottom: none;
  }

  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex;
  }
}
/* ===== END NAVBAR ===== */

/* ----- Layout ----- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3.5rem 0;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 163, 255, 0.22);
  background: rgba(11, 16, 32, 0.55);
}

.hero {
  padding: 4rem 0 4rem;
  text-align: center;
}

.hero--about {
  padding: 8rem 0 4rem;
}

.hero--features,
.hero--contact {
  padding: 7.5rem 0 3rem;
}

.hero--features h1,
.hero--contact h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero .container > p:not(.section-label):not(.phone-cta) {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 1.5rem auto;
}

.hero--features .container > p:not(.section-label):not(.phone-cta),
.hero--contact .container > p:not(.section-label):not(.phone-cta) {
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-proof {
  width: 100%;
  background: rgba(11, 16, 32, 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
}

.social-proof-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-intro .section-label {
  margin-bottom: 0.75rem;
}

.section-intro h2 {
  margin-top: 0;
}

.mission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission-inner h2 {
  margin-bottom: 1.5rem;
}

.mission-inner p {
  margin: 0;
}

.mission-inner p + p {
  margin-top: 1.25rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.bottom-cta {
  background: radial-gradient(900px 420px at 50% 0%, rgba(75, 163, 255, 0.10) 0%, transparent 60%),
    var(--card);
  text-align: center;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.bottom-cta h2 {
  margin-bottom: 1rem;
}

.bottom-cta > .container > p:not(.phone-cta) {
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.bottom-cta .btn-primary {
  margin-bottom: 0.25rem;
}

.bottom-cta .hero-actions {
  margin-top: 0.25rem;
  justify-content: center;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}

.phone-cta a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.phone-cta a:hover {
  color: var(--foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0 0 0.65rem;
}


.contact-link {
  color: var(--primary);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--foreground);
}

.contact-muted {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.75rem 0;
}

.contact-phone-cta {
  margin-top: 1rem;
  justify-content: flex-start;
}

.contact-error {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 140, 140, 0.95);
}

.contact-thanks {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.consent-page-header {
  text-align: center;
  padding: 6rem 0 2rem;
}

.consent-page-header h1 {
  margin: 0;
}

.consent-lead {
  max-width: 520px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.consent-card {
  max-width: 640px;
  margin: 0 auto;
}

.consent-card:hover {
  transform: none;
  border-color: var(--border);
}

.consent-block {
  margin-bottom: 2rem;
}

.consent-block:last-of-type {
  margin-bottom: 0;
}

.consent-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.consent-block p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.consent-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: consent;
}

.consent-policy-list li {
  position: relative;
  padding-left: 1.85rem;
  margin: 0 0 0.85rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.consent-policy-list li::before {
  counter-increment: consent;
  content: counter(consent) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--foreground);
}

.consent-policy-list li:last-child {
  margin-bottom: 0;
}

#consent-form {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.consent-checkbox-group {
  margin-bottom: 1.5rem;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.consent-checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.consent-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-checkbox-label a:hover {
  color: var(--foreground);
}

/* ----- Cards ----- */
.card {
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.82) 0%, rgba(11, 16, 32, 0.92) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(75, 163, 255, 0.06), var(--shadow-elev-1);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(75, 163, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(75, 163, 255, 0.12), 0 0 40px rgba(75, 163, 255, 0.08), var(--shadow-elev-2);
}

/* ----- Buttons ----- */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #4BA3FF 0%, #1E5BFF 100%);
  color: var(--primary-foreground);
  border: none;
  box-shadow: 0 10px 28px rgba(30, 91, 255, 0.25), 0 0 0 1px rgba(159, 212, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #63B2FF 0%, #2E6BFF 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(30, 91, 255, 0.30), 0 0 0 1px rgba(159, 212, 255, 0.20);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(75, 163, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(75, 163, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(75, 163, 255, 0.14);
  color: var(--primary-foreground);
  border-color: rgba(75, 163, 255, 0.75);
}

.btn-block {
  width: 100%;
}

/* ----- Tags ----- */
.tag {
  background: var(--secondary);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

/* ----- Forms ----- */
.form-group {
  margin-bottom: 1.25rem;
}

form label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.4rem;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(16, 24, 39, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 163, 255, 0.14);
}

/* ----- Legal / privacy ----- */
.legal-main {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.legal-main > h1 {
  margin-bottom: 0.75rem;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 2rem;
}

.legal-page .card {
  margin-bottom: 1.5rem;
  text-align: left;
}

.legal-page .card:last-of-type {
  margin-bottom: 0;
}

.legal-page .card:hover {
  transform: none;
  border-color: var(--border);
}

.legal-page .card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--primary);
}

.legal-page .card p {
  margin: 0 0 0.85rem;
  color: var(--muted-foreground);
}

.legal-page .card p:last-child {
  margin-bottom: 0;
}

.legal-page .card ul {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
}

.legal-page .card ul:last-child {
  margin-bottom: 0;
}

.legal-page .card li {
  margin: 0.35rem 0;
  line-height: 1.7;
}

.legal-page .card a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page .card a:hover {
  color: var(--foreground);
}

.legal-page .card strong {
  color: var(--foreground);
}

/* ----- Footer ----- */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--foreground);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-top: 84px;
  }

  /* Page titles / heroes — body already clears fixed navbar */
  .hero,
  .hero-main {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .hero--about {
    padding: 2.5rem 1.25rem 3rem;
  }

  .hero--features,
  .hero--contact,
  .hero--faq {
    padding: 2.5rem 1.25rem 2.5rem;
  }

  .consent-page-header {
    padding: 2.5rem 1.25rem 2rem;
  }

  .legal-main {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-band {
  background: radial-gradient(900px 420px at 50% 0%, rgba(75, 163, 255, 0.08) 0%, transparent 60%),
    var(--card);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.pricing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 140px;
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.everything-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.everything-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Single-column variant used on landing index after removing visual block */
.everything-inner--single {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.everything-inner--single .everything-text {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.everything-inner--single .everything-list {
  text-align: left;
  margin: 0 auto;
  max-width: 500px;
}
.everything-text h2 {
  margin-bottom: 1rem;
}
.everything-text p {
  margin-bottom: 1.25rem;
}
.everything-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.everything-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--foreground);
}
.everything-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.everything-note {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}
.everything-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mock-phone {
  width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mock-screen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mock-business-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}
.mock-service {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.mock-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}
.mock-cta {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.mock-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .everything-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .everything-visual {
    order: -1;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* HERO MAIN */
.hero-main {
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(75, 163, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1.25rem auto 0;
}
.hero-number {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* DEMO SECTION */
.demo-section {
  text-align: center;
}
.demo-phone-wrap {
  position: relative;
  display: inline-block;
  margin-top: 2.5rem;
}
.demo-phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(75, 163, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.demo-phone {
  width: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(75, 163, 255, 0.14), 0 24px 48px rgba(0, 0, 0, 0.5);
}
.demo-phone-notch {
  width: 100px;
  height: 14px;
  background: var(--background);
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
}
.demo-phone-bar {
  padding: 0.5rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.demo-business-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: 0.02em;
}
.demo-thread {
  padding: 1rem;
  min-height: 340px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  scroll-behavior: smooth;
}
.demo-thread::-webkit-scrollbar { display: none; }
.demo-bubble {
  max-width: 78%;
  padding: 0.55rem 0.85rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.45;
  animation: bubbleIn 0.3s ease;
}
.demo-bubble--in {
  background: var(--secondary);
  color: var(--foreground);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.demo-bubble--out {
  background: var(--primary);
  color: var(--primary-foreground);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.demo-bubble--confirm {
  background: rgba(75, 163, 255, 0.12);
  color: var(--primary);
  align-self: flex-end;
  border: 1px solid rgba(75, 163, 255, 0.28);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PAIN SECTION */
.pain-section {
  background: var(--background);
  padding-bottom: 3rem;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.pain-card {
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem;
  border: 1px solid;
}
.pain-card--bad {
  background: rgba(255, 88, 88, 0.06);
  border-color: rgba(255, 88, 88, 0.18);
}
.pain-card--good {
  background: rgba(65, 219, 154, 0.06);
  border-color: rgba(65, 219, 154, 0.18);
}
.pain-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.pain-card-label--bad  { color: rgba(255, 140, 140, 0.95); }
.pain-card-label--good { color: rgba(160, 255, 220, 0.95); }
.pain-thread {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pain-msg {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 85%;
}
.pain-msg--in {
  background: var(--secondary);
  color: var(--muted-foreground);
  align-self: flex-start;
}
.pain-card--bad .pain-msg--in {
  opacity: 0.6;
}
.pain-msg--out {
  background: var(--primary);
  color: var(--primary-foreground);
  align-self: flex-end;
}
.good-confirm {
  background: rgba(65, 219, 154, 0.12);
  color: rgba(160, 255, 220, 0.95);
  border: 1px solid rgba(65, 219, 154, 0.28);
}
.pain-no-reply {
  font-size: 0.78rem;
  color: rgba(255, 170, 170, 0.7);
  padding-left: 0.5rem;
  font-style: italic;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pain-list li {
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}
.pain-list--bad li {
  color: rgba(255, 170, 170, 0.9);
}
.pain-list--bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
}
.pain-list--good li {
  color: rgba(160, 255, 220, 0.9);
}
.pain-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
}
.pain-quote {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 170, 170, 0.6);
  margin: 0;
}

/* PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover {
  border-color: rgba(75, 163, 255, 0.42);
  transform: translateY(-3px);
}
.pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.pillar-card p {
  font-size: 0.875rem;
}

/* MOCK PHONE UPGRADE */
.mock-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(75, 163, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.everything-visual {
  position: relative;
}
.mock-phone {
  border: 1px solid rgba(75, 163, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(75, 163, 255, 0.10), 0 20px 40px rgba(0, 0, 0, 0.45);
}
.mock-location {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
.mock-cta-box {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(16, 24, 39, 0.72);
  border: 1px solid rgba(75, 163, 255, 0.22);
  border-radius: calc(var(--radius));
}
.mock-cta {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
}
.mock-number {
  margin-top: 0;
}

/* OUTCOME */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.outcome-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.outcome-card:hover {
  border-color: rgba(75, 163, 255, 0.42);
  transform: translateY(-3px);
}
.outcome-check {
  font-size: 1.5rem;
  color: rgba(159, 212, 255, 0.95);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.outcome-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.outcome-card p {
  font-size: 0.875rem;
}

/* PRICING SUB */
.pricing-sub {
  max-width: 580px;
  margin: 1rem auto 0;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .demo-phone { width: 100%; max-width: 300px; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}
