/* =========================================================
   SARVIS LANDING PAGE - PURE CSS
   Full-width backgrounds with centered original Framer layouts
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --color-purple: #6936F5;
  --color-purple-dark: #582cd0;
  --color-purple-light: #ECE8FF;
  --color-purple-bg: #FAF7FF;
  --color-dark-bg: #0F1015;
  --color-dark-card: #17181F;
  --color-dark-border: rgba(255, 255, 255, 0.08);
  --color-text-main: #09090B;
  --color-text-muted: #64748B;
  --color-text-light: #F4F4F5;
  --color-text-dim: #A1A1AA;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-purple-bg);
  color: var(--color-text-main);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Common container for centered content */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-pill.early-access {
  background: rgba(105, 54, 245, 0.08);
  border: 1px solid rgba(105, 54, 245, 0.15);
  color: var(--color-purple);
  font-size: 13px;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 20px;
}

.badge-pill.white-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  margin-bottom: 24px;
}

.badge-pill.dark-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #A1A1AA;
  margin-bottom: 16px;
}

.badge-pill.light-pill {
  background: rgba(105, 54, 245, 0.08);
  border: 1px solid rgba(105, 54, 245, 0.15);
  color: var(--color-purple);
  margin-bottom: 16px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  display: inline-block;
}

/* =========================================================
   HEADER / NAVBAR (Frosted Glass Full-width at Top, Pill on Scroll)
   ========================================================= */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 48px;
  background: rgba(250, 247, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state: turns into sleek floating pill */
.nav-wrapper.scrolled {
  top: 16px;
  padding: 0 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-wrapper.scrolled .nav-container {
  pointer-events: auto;
  max-width: 880px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  padding: 8px 10px 8px 24px;
  border-radius: 9999px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 32px;
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-purple);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #09090B;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-cta-btn:hover {
  background: var(--color-purple);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-wrapper {
    padding: 16px 24px;
  }
}


/* =========================================================
   HERO SECTION
   ========================================================= */
.section-hero {
  width: 100%;
  background-color: var(--color-purple-bg);
  background-image: radial-gradient(circle at 50% 10%, rgba(105, 54, 245, 0.08) 0%, rgba(250, 247, 255, 0) 70%);
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-purple-text {
  color: #6936F5;
}

.hero-dark-text {
  color: #09090B;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--color-text-muted);
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #09090B;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  margin-bottom: 56px;
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--color-purple);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(105, 54, 245, 0.3);
}

/* Hero Duo Overlapping Phone Mockups */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  --hero-p: 0;
}

.hero-glow-left {
  position: absolute;
  left: 5%;
  top: 10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.55) 0%, rgba(186, 230, 253, 0.3) 45%, rgba(250, 247, 255, 0) 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-right {
  position: absolute;
  right: 5%;
  top: 12%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.55) 0%, rgba(233, 213, 255, 0.3) 45%, rgba(250, 247, 255, 0) 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-phones-duo {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 36px;
}

.hero-phone-card {
  position: relative;
  width: 315px;
  max-width: 46vw;
  user-select: none;
  will-change: transform;
}

.hero-phone-card .phone-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.phone-card-left {
  transform: translateX(calc(12px + 38px * var(--hero-p, 0)))
             translateY(calc((1 - var(--hero-p, 0)) * 140px))
             rotate(calc(-15deg + 4deg * var(--hero-p, 0)));
  z-index: 2;
  margin-bottom: -10px;
  filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.18)) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.1));
  transition: filter 0.4s ease;
}

.phone-card-right {
  transform: translateX(calc(-8px - 27px * var(--hero-p, 0)))
             translateY(calc((1 - var(--hero-p, 0)) * 170px))
             rotate(calc(13deg - 4.5deg * var(--hero-p, 0)));
  z-index: 3;
  filter: drop-shadow(-12px 24px 48px rgba(15, 23, 42, 0.22)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: filter 0.4s ease;
}

/* Metrics Bar */
.hero-metrics-bar {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  padding: 16px 36px 20px 36px;
  margin-top: 0;
  width: 100%;
  max-width: 660px;
}

.metric-bar-header {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  text-align: center;
}

.metric-items-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #E2E8F0;
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  color: #09090B;
  line-height: 1.1;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =========================================================
   PURPLE ABOUT APP SECTION
   ========================================================= */
.section-about {
  width: 100%;
  background-color: #000000;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  transition: background-color 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-headline {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.025em;
  margin-top: 20px;
  text-align: center;
}

.about-phrase-white .about-word {
  color: #FFFFFF;
  opacity: 0.35;
  display: inline-block;
  margin-right: 0.22em;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.about-phrase-white .about-word.active {
  opacity: 1;
  color: #FFFFFF;
}

.about-phrase-purple .about-word {
  color: #C084FC;
  opacity: 0.35;
  display: inline-block;
  margin-right: 0.22em;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.about-phrase-purple .about-word.active {
  opacity: 1;
  color: #C084FC;
}

/* =========================================================
   FEATURES SECTION (#18181B Charcoal Dark)
   ========================================================= */
.section-features {
  width: 100%;
  background-color: #18181B;
  padding: 130px 0 110px 0;
  position: relative;
  color: #FFFFFF;
}

.section-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.section-heading-white {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.feature-card {
  background: #23242B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  padding: 36px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(105, 54, 245, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-img-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.feature-img-wrapper img {
  max-height: 100%;
  width: auto;
  border-radius: 14px;
  object-fit: contain;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 400px;
}

/* =========================================================
   REVIEWS / TESTIMONIALS SECTION (#000000 Pure Deep Black)
   ========================================================= */
.section-reviews {
  width: 100%;
  background-color: #000000;
  padding: 130px 0 130px 0;
  position: relative;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.review-card-dark {
  background: #121319;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.review-stars-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-play-icon {
  width: 20px;
  height: 20px;
  opacity: 0.4;
}

.review-quote {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.55;
}

.review-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.review-author-role {
  font-size: 12px;
  color: #64748B;
  margin-top: 2px;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.section-faq {
  width: 100%;
  background-color: var(--color-purple-bg);
  padding: 130px 0;
  position: relative;
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #09090B;
  margin-bottom: 50px;
  text-align: center;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--color-purple-light);
  border: 1px solid rgba(105, 54, 245, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.faq-card:hover {
  background: #ECE7FF;
  border-color: rgba(105, 54, 245, 0.25);
}

.faq-card.expanded {
  background: #E6E1FF;
  border-color: rgba(105, 54, 245, 0.35);
  box-shadow: 0 4px 20px rgba(105, 54, 245, 0.08);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #1E1B4B;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: rgba(105, 54, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-icon-svg {
  width: 14px;
  height: 14px;
  display: block;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card.expanded .faq-toggle-icon {
  background: var(--color-purple);
  color: #FFFFFF;
}

.faq-card.expanded .faq-icon-svg {
  transform: rotate(45deg);
}

/* CSS Grid 0fr -> 1fr smooth accordion transition */
.faq-answer-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card.expanded .faq-answer-collapse {
  grid-template-rows: 1fr;
}

.faq-answer-content {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-text {
  padding-top: 14px;
  font-size: 14.5px;
  color: #4338CA;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-card.expanded .faq-answer-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

/* =========================================================
   PURPLE DOWNLOAD / CTA SECTION & EMBEDDED FOOTER CARD
   ========================================================= */
.section-cta {
  width: 100%;
  background-color: var(--color-purple);
  padding: 130px 24px 36px 24px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
}

.cta-side-mockup {
  position: absolute;
  bottom: -60px;
  width: 320px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
}

.cta-phone-left {
  left: -20px;
  transform: rotate(-8deg);
}

.cta-phone-right {
  right: -20px;
  transform: rotate(8deg);
}

.cta-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1040px;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.cta-heading {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 800px;
  margin-bottom: 14px;
}

.cta-subtext {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.cta-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.store-card {
  background: #FFFFFF;
  color: #09090B;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  width: 280px;
  transition: transform 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
}

.store-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 72px;
}

.store-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #09090B;
  margin-bottom: 6px;
}

.coming-soon-badge {
  display: inline-block;
  background: #F4F4F5;
  color: #71717A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.store-card-sub {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}

.coming-soon-box {
  width: 170px;
  height: 170px;
  border-radius: 24px;
  background: #F3EEFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.apple-purple-icon {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.qr-code-img {
  width: 170px;
  height: 170px;
  border-radius: 0;
  margin-bottom: 24px;
  background: #FFFFFF;
  object-fit: contain;
  display: block;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #09090B;
  color: #FFFFFF;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s ease;
  text-decoration: none;
}

.store-btn:hover {
  background: var(--color-purple-dark);
}

/* Rounded Dark Footer Card */
.footer-card {
  background: #18181B;
  border-radius: 14px;
  padding: 18px 28px;
  width: 100%;
  max-width: 920px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A1A1AA;
  font-size: 13.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  color: #A1A1AA;
  font-size: 13px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
}

.footer-links a {
  color: #A1A1AA;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-links span {
  color: #71717A;
}

/* =========================================================
   RESPONSIVE QUERIES
   ========================================================= */
@media (max-width: 1200px) {
  .cta-phone-left {
    left: -80px;
    opacity: 0.6;
  }
  .cta-phone-right {
    right: -80px;
    opacity: 0.6;
  }
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-side-mockup {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .faq-columns {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cta-cards-row {
    flex-direction: column;
  }
  .hero-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .metric-item:not(:last-child)::after {
    display: none;
  }
  .footer-card {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hero-phones-duo {
    margin-bottom: 24px;
  }
  .hero-phone-card {
    width: 220px;
  }
  .phone-card-left {
    transform: translateX(35px) rotate(-10deg);
  }
  .phone-card-right {
    transform: translateX(-25px) rotate(7deg);
  }
}

/* =========================================================
   LEGAL / POLICY PAGES (Privacy Policy & Terms of Service)
   ========================================================= */
.legal-page-body {
  background-color: #FAF7FF;
  color: #18181B;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 70px 24px;
  flex: 1;
}

.legal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}

.legal-mini-logo {
  height: 24px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.legal-title {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #09090B;
  line-height: 1.15;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 14.5px;
  color: #71717A;
  font-weight: 500;
}

.legal-content {
  font-size: 15.5px;
  line-height: 1.8;
  color: #3F3F46;
}

.legal-content p {
  margin-bottom: 22px;
}

.legal-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #09090B;
  letter-spacing: -0.015em;
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal-content h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: #18181B;
  letter-spacing: -0.01em;
  margin-top: 22px;
  margin-bottom: 10px;
}

.legal-content code {
  background: rgba(105, 54, 245, 0.08);
  color: var(--color-purple);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13.5px;
  font-family: monospace;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content strong {
  color: #09090B;
}

.legal-footer-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 36px 24px;
}

