/* ============================================================
   Snapflow Solutions — Main Stylesheet
   ============================================================ */

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

:root {
  --color-bg: #060612;
  --color-surface: #0a0a1f;
  --color-primary: #00D4FF;
  --color-accent: #00D4FF;
  --color-text: #ffffff;
  --color-muted: #a0a0c0;
  --color-border: #1a1a3a;
  --font-main: 'Outfit', sans-serif;
  --max-width: 1200px;
  --glow: 0 0 20px rgba(0,212,255,0.4), 0 4px 20px rgba(0,212,255,0.2);
  --glow-hover: 0 0 32px rgba(0,212,255,0.6), 0 8px 32px rgba(0,212,255,0.3);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-main);
  font-size: 19px;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* -- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #060612;
  box-shadow: var(--glow);
}
.btn--primary:hover {
  box-shadow: var(--glow-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 4px 20px rgba(255,255,255,0.08);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  box-shadow: 0 0 32px rgba(255,255,255,0.25), 0 8px 32px rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--outline:hover {
  background: rgba(0,212,255,0.1);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* -- SECTION UTILITIES -- */
.section {
  padding: 100px 0;
}

.section__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00D4FF;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1.15rem;
  color: #b0b0cc;
  max-width: 640px;
  line-height: 1.75;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__sub {
  margin: 0 auto;
}

/* -- STICKY NAV -- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,6,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 24px;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #d0d0e8;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-text); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6,6,18,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 40px 24px;
}
.nav__mobile.is-open { display: flex; flex-direction: column; gap: 24px; }
.nav__mobile a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.nav__mobile .btn { margin-top: 16px; text-align: center; }

/* -- HERO -- */
.hero {
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(0,212,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(80,0,255,0.15) 0%, transparent 50%),
    #060612;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00D4FF;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  color: #b0b0cc;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}
.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00D4FF;
}
.hero__stat-label {
  font-size: 1rem;
  color: #a0a0c0;
  margin-top: 4px;
}

/* -- PROBLEM SECTION -- */
.problem {
  background: var(--color-surface);
}

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

.problem__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 2.25rem 2rem;
}

.problem__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.problem__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.problem__card p {
  color: #c8c8e0;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* -- SOLUTION / FEATURES -- */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.solution__card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
}

.solution__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.solution__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.solution__card p {
  color: #c8c8e0;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* -- STEPS -- */
.steps {
  background: var(--color-surface);
}

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

.step__card {
  padding: 2.25rem 2rem;
  position: relative;
}

.step__number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0,212,255,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.step__card p {
  color: #c0c0dc;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* -- PRICING -- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing__card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(0,212,255,0.15), 0 0 60px rgba(0,212,255,0.05);
}

.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #060612;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing__price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}
.pricing__price span {
  font-size: 1rem;
  font-weight: 500;
  color: #a0a0c0;
}

.pricing__setup {
  font-size: 1rem;
  color: #a0a0c0;
  margin-top: 4px;
  margin-bottom: 16px;
}
.pricing__setup s {
  color: #666688;
}

.pricing__desc {
  font-size: 1.05rem;
  color: #b8b8d8;
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing__features li {
  font-size: 1rem;
  color: #c8c8e0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing__features li::before {
  content: "\2713";
  color: #00D4FF;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing__card .btn { width: 100%; margin-top: auto; }

.pricing__note {
  text-align: center;
  margin-top: 24px;
  font-size: 1rem;
  color: #a0a0c0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* -- FINANCING BANNER -- */
.financing-banner {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(80,0,255,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin: 2.5rem auto 0;
  max-width: 900px;
}

.financing-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.financing-banner__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.financing-banner__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.financing-banner__body {
  color: #c0c0d8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.financing-banner__logos {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.financing-badge {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00D4FF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* -- TESTIMONIALS -- */
.testimonials {
  background: var(--color-surface);
}

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

.testimonial__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 2.25rem 2rem;
}

.testimonial__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial__quote {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: #d8d8f0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ffffff;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: #a0a0c0;
}

/* -- FAQ -- */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}
.faq__question:hover { color: var(--color-primary); }

.faq__toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.is-open .faq__toggle { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__answer-inner {
  padding: 0 28px 24px;
  font-size: 1.1rem;
  color: #c0c0dc;
  line-height: 1.75;
}

.faq__item.is-open .faq__answer {
  max-height: 300px;
}

/* -- FORM / CTA SECTION -- */
.form-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.12) 0%, transparent 60%),
    #060612;
}

.form-section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form-section__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.form-section__sub {
  font-size: 1.15rem;
  color: #b0b0cc;
  margin-bottom: 40px;
  line-height: 1.75;
}

.form-section__embed {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 32px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.form-section__disclaimer {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* -- FOOTER -- */
.footer {
  background: #050505;
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.footer__tagline {
  font-size: 0.9375rem;
  color: #9090b0;
  margin-top: 8px;
  max-width: 300px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.9375rem;
  color: #9090b0;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--color-text); }

.footer__email a {
  font-size: 0.9375rem;
  color: #9090b0;
  transition: color 0.2s;
}
.footer__email a:hover { color: var(--color-primary); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: #666688;
}

/* -- MOBILE STICKY CTA BAR -- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6,6,18,0.97);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  gap: 12px;
}
.sticky-cta .btn { flex: 1; text-align: center; padding: 12px 16px; }

/* -- THANK YOU PAGE -- */
.thankyou {
  padding: 180px 0 120px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,212,255,0.15) 0%, transparent 55%),
    #060612;
}

.thankyou__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.thankyou__accent {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.thankyou__sub {
  font-size: 1.15rem;
  color: #b0b0cc;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .financing-banner__inner { flex-direction: column; }
  .financing-banner { padding: 1.5rem; }

  .nav__links,
  .nav__actions .btn--outline {
    display: none;
  }
  .nav__hamburger { display: flex; }

  .hero { padding: 130px 0 80px; }
  .hero__title { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero__stats { gap: 24px; }

  .problem__grid,
  .solution__grid,
  .steps__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .section { padding: 72px 0; }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__tagline { margin-left: auto; margin-right: auto; }

  .sticky-cta { display: flex; }

  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* ===== FREE BUSINESS CHECKUP SECTION ===== */
.checkup-section { background: var(--surface, #0d1117); }
.checkup-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.checkup-section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.checkup-section__sub { color: #aaa; margin-bottom: 1.5rem; line-height: 1.7; }
.checkup-section__list { list-style: none; padding: 0; margin: 0 0 2rem; }
.checkup-section__list li { color: #ccc; padding: 0.4rem 0; font-size: 0.95rem; }
.checkup-card { background: #111820; border: 1px solid #1e2d3d; border-radius: 12px; overflow: hidden; }
.checkup-card__header { background: #0a1628; color: #00D4FF; padding: 1rem 1.25rem; font-weight: 600; font-size: 0.9rem; }
.checkup-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.25rem; border-bottom: 1px solid #1e2d3d; font-size: 0.9rem; }
.checkup-item:last-of-type { border-bottom: none; }
.checkup-item--bad { color: #ccc; }
.checkup-item--bad .checkup-item__icon { color: #00D4FF; }
.checkup-card__footer { background: #0a1628; color: #00D4FF; padding: 1rem 1.25rem; font-size: 0.85rem; font-weight: 500; }
.pricing__grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .checkup-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricing__grid--three { grid-template-columns: 1fr; }
}
