:root {
  --bg-primary: #0c0d11;
  --bg-secondary: #13151b;
  --bg-card: rgba(26, 29, 38, 0.7);
  --bg-card-hover: rgba(35, 39, 51, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(196, 250, 66, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #9da3af;
  --text-muted: #6b7280;
  --accent-lime: #c4fa42;
  --accent-lime-hover: #b2eb2e;
  --accent-purple: #a855f7;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

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

/* Header / Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(12, 13, 17, 0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo-mark {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.brand-text-logo {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-lime);
  line-height: 1;
}

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

.nav-link {
  text-decoration: none;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-lime);
}

/* Hero Section (Two-Column Split matching Screenshot) */
.hero-section {
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero-content {
  max-width: 580px;
}

.hero-headline {
  font-size: clamp(2.7rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 24px;
}

.highlight-green {
  color: var(--accent-lime);
  display: inline-block;
}

.hero-subtext {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA Store Buttons */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.btn-store-apple {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 22px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  min-width: 185px;
}

.btn-store-apple:hover {
  background: #1a1b22;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-store-android {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-lime);
  color: #0c0d11;
  border: 1.5px solid var(--accent-lime);
  border-radius: var(--radius-md);
  padding: 10px 22px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  min-width: 185px;
}

.btn-store-android:hover {
  background: var(--accent-lime-hover);
  border-color: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 250, 66, 0.35);
}

.btn-store-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-sub {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.btn-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-availability {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Right Column: Phone Mockup Scene */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-scene-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.6));
}

/* Value Proposition Bar (Crisp Pure White Background matching Screenshot) */
.value-prop-bar {
  background: #ffffff;
  color: #111827;
  padding: 34px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.value-prop-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-prop-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #111827;
  border-radius: 12px;
  color: #111827;
  flex-shrink: 0;
}

.value-prop-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.value-prop-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.4;
}

.value-prop-divider {
  width: 1px;
  height: 46px;
  background-color: #e5e7eb;
}

/* Sections */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
}

.section-tag {
  color: var(--accent-lime);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Screenshots Showcase */
.showcase {
  margin: 20px auto 40px;
  max-width: 1140px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 10px 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.phone-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.phone-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(196, 250, 66, 0.15);
}

.phone-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1290 / 2796;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-caption {
  text-align: center;
  padding: 12px 6px 4px;
}

.phone-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(196, 250, 66, 0.1);
  border: 1px solid rgba(196, 250, 66, 0.2);
  margin-bottom: 20px;
}

.feature-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Privacy Architecture Section */
.architecture-box {
  background: radial-gradient(circle at 100% 0%, rgba(196, 250, 66, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 0% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
              var(--bg-secondary);
  border: 1px solid rgba(196, 250, 66, 0.25);
  border-radius: 24px;
  padding: 48px;
  margin: 20px auto 0;
  box-shadow: var(--shadow-card);
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.arch-card {
  background: rgba(10, 11, 14, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.arch-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-lime);
}

.arch-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* How It Works Section (White Background, Clean & Exact Mockup) */
.how-it-works-section {
  background: #ffffff;
  color: #0c0d11;
  padding: 96px 0 80px;
  position: relative;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.how-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 12px;
}

.how-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #090a0f;
  margin-bottom: 14px;
}

.how-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: #52525b;
  max-width: 660px;
  margin: 0 auto;
}

/* 4-Step Flow Container & Cards */
.how-flow-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 56px;
}

.how-step-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.how-step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2f7b8;
  color: #0c0d11;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.how-step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #090a0f;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #52525b;
  margin-bottom: 24px;
  min-height: 66px;
}

.how-phone-display {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-phone-screen {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12));
  border-radius: 36px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.how-step-card:hover .how-phone-screen {
  transform: translateY(-6px);
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.18));
}

.how-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  flex-shrink: 0;
  margin-top: 250px;
}

/* Bottom Value Strip */
.how-bottom-banner {
  background: #ebfae2;
  border: 1px solid #d3f6ba;
  border-radius: 20px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.how-bottom-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.how-bottom-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c4fa42;
  color: #0c0d11;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-bottom-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0c0d11;
  letter-spacing: -0.015em;
}

.how-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c0d11;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.how-bottom-btn:hover {
  background: #1e2029;
  transform: translateY(-1px);
}

/* Responsive Rules for How It Works */
@media (max-width: 1024px) {
  .how-arrow-divider {
    display: none;
  }
  .how-flow-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
  .how-step-desc {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .how-flow-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-bottom-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .how-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .how-bottom-btn {
    justify-content: center;
  }
}

/* Android Sideloading Banner */
.android-box {
  background: linear-gradient(135deg, rgba(35, 39, 51, 0.8) 0%, rgba(18, 20, 26, 0.9) 100%);
  border: 1px solid rgba(196, 250, 66, 0.25);
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}

.android-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.android-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 250, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.android-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.android-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.android-step-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.android-step-item strong {
  color: var(--accent-lime);
  display: block;
  margin-bottom: 4px;
}

/* Testimonials Section (Real People. Real Reactions.) */
.testimonials-section {
  background: #ffffff;
  color: #0c0d11;
  padding: 80px 0 88px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.testimonials-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.testimonials-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 12px;
}

.testimonials-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #090a0f;
}

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

.testimonial-card {
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-quote {
  font-size: 0.94rem;
  line-height: 1.5;
  color: #1f2937;
  font-weight: 500;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

/* Dark CTA Banner Card ("Ready to Capture Your Reactions?") */
.cta-banner-section {
  background: #ffffff;
  padding: 60px 0 84px;
}

.cta-banner-card {
  background: radial-gradient(circle at 75% 50%, #162412 0%, #0d1215 55%, #080a0c 100%);
  border: 1px solid rgba(196, 250, 66, 0.25);
  border-radius: 28px;
  padding: 56px 64px 0 64px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.cta-banner-left {
  flex: 1.1;
  max-width: 520px;
  padding-bottom: 56px;
}

.cta-banner-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-banner-subtext {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: #9ca3af;
  margin-bottom: 32px;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-btn-apple {
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.cta-btn-apple:hover {
  background: #18191d;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cta-btn-android {
  background: var(--accent-lime);
  border: 1.5px solid var(--accent-lime);
  color: #0c0d11;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.cta-btn-android:hover {
  background: #d4fc6a;
  border-color: #d4fc6a;
  transform: translateY(-2px);
}

.cta-btn-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.cta-btn-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.cta-btn-main {
  font-size: 0.98rem;
  font-weight: 700;
}

.cta-btn-arrow {
  flex-shrink: 0;
  margin-left: 2px;
}

.cta-banner-note {
  font-size: 0.88rem;
  color: #71717a;
}

.cta-banner-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 0;
}

.cta-dual-phones-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* FAQ Section (2-Column Accordion Layout) */
.faq-section {
  background: #ffffff;
  color: #0c0d11;
  padding: 80px 0 96px;
  border-top: 1px solid #f1f5f9;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.faq-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 12px;
}

.faq-title {
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #090a0f;
}

.faq-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

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

.faq-item {
  background: #f4f4f5;
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  background: #ececee;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: #090a0f;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  font-size: 1.35rem;
  font-weight: 400;
  color: #71717a;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: #52525b;
  font-size: 0.94rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modern Dark Footer matching Screenshot */
.footer {
  background: #0c0d11;
  color: #9ca3af;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #71717a;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #d1d5db;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-lime);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #71717a;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .value-prop-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .value-prop-divider {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-card {
    flex-direction: column;
    padding: 44px 32px 0 32px;
    text-align: center;
  }
  .cta-banner-left {
    max-width: 100%;
    padding-bottom: 24px;
  }
  .cta-banner-buttons {
    justify-content: center;
  }
  .cta-banner-right {
    justify-content: center;
  }
  .faq-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 18px;
  }
  .btn-store-apple, .btn-store-android {
    width: 100%;
    justify-content: center;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-brand-block {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
    gap: 16px;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
