﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0b0f19;
  color: #e6e8ec;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: flex-start; /* 🔥 FIX */
  text-align: center;

  padding: 120px 24px 32px;
}

.brand {
  margin-bottom: 36px;
}

.name {
  font-size: 28px;      /* BIGGER */
  font-weight: 700;
  letter-spacing: 0.6px;
}

h1 {
  font-size: 52px;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 0 18px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #b8bcc6;
  margin-bottom: 40px;
}

.download {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #4f7cff;
  color: #fff;
  cursor: pointer;
}

.download:hover {
  background: #6a8cff;
}
.trust-line {
  margin-top: 32px;

  font-size: 20px;          /* MUCH bigger */
  font-weight: 600;

  color: #e6e8ec;           /* same as main text → strong visibility */
  letter-spacing: 0.5px;

  padding: 14px 24px;
  border-radius: 14px;

  background: rgba(79, 124, 255, 0.12); /* subtle blue emphasis */
  border: 1px solid rgba(79, 124, 255, 0.35);

  display: inline-block;
}
/* ============================= */
/* Problems section – CLEAN PRO */
/* ============================= */

.problems {
  padding: 48px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.problems h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 38px;
  margin-bottom: 56px;
}

/* DESKTOP: left / right boxes */
@media (min-width: 900px) {
  .problems {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.problem {
  padding: 40px 36px;
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    #0b1326,
    #0f1b3d
  );

  border: 1px solid rgba(79, 124, 255, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

/* TITLE */
.problem h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  white-space: nowrap; /* keep title on one line */
}


/* SMART SEPARATOR */
.problem h3 + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid rgba(79, 124, 255, 0.45);
}

/* SUBTITLE / DESCRIPTION */
.problem p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: #dbe2ff;
  margin: 0;
}
/* ============================= */
/* Testimonials section */
/* ============================= */

.testimonials {
  padding: 80px 24px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

/* Horizontal scroll container */
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-track::-webkit-scrollbar {
  height: 8px;
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.35);
  border-radius: 4px;
}

.testimonials-track::-webkit-scrollbar-track {
  background: transparent;
}

/* Individual card */
.testimonial-card {
  flex: 0 0 360px; /* card width */
  padding: 28px 26px;
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    #0b1326,
    #0f1b3d
  );

  border: 1px solid rgba(79, 124, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);

  scroll-snap-align: start;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Stars */
.testimonial-card .stars {
  color: #ffd700; /* App Store yellow */
  font-size: 18px;
  letter-spacing: 2px;
}

/* Comment text */
.testimonial-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #e6e8ec;
  margin: 0;
}

/* Name */
.testimonial-card .name {
  margin-top: auto;
  font-weight: 700;
  font-size: 15px;
  color: #b8c2ff;
}
/* ============================= */
/* Final CTA section */
/* ============================= */

.final-cta {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(79, 124, 255, 0.12),
    rgba(11, 15, 25, 0.95) 60%
  );
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 32px;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 520px;
}

.cta-points li {
  font-size: 18px;
  color: #dbe2ff;
  margin-bottom: 14px;
}

.final-cta .download.primary {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 14px;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: #9aa4d6;
}
/* ============================= */
/* Footer – PRO & TRUSTED */
/* ============================= */

.site-footer {
  margin-top: 120px;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-left {
  font-weight: 600;
  color: #e6e8ec;
}

.footer-center {
  display: flex;
  gap: 24px;
}

.footer-center a {
  font-size: 14px;
  color: #9aa1b2;
  text-decoration: none;
}

.footer-center a:hover {
  color: #e6e8ec;
}

.footer-right {
  text-align: right;
  font-size: 13px;
  color: #9aa1b2;
}

/* Mobile */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}
/* ============================= */
/* Legal sections (Privacy / Terms) */
/* ============================= */

.hidden {
  display: none;
}

.legal {
  max-width: 900px;
  margin: 120px auto;
  padding: 0 24px;
}

.legal h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.legal-intro {
  color: #b8bcc6;
  font-size: 18px;
  margin-bottom: 40px;
}

.legal-card {
  background: linear-gradient(145deg, #0b1326, #0f1b3d);
  border: 1px solid rgba(79, 124, 255, 0.35);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}

.legal-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-updated {
  color: #8f96a3;
  font-size: 14px;
  margin-top: 24px;
}

