/* ──────────────────────────────────────────────────────────────
 * Gleebem Theme — Overrides & section styles v1.2.0
 *
 * Este arquivo substitui o Tailwind do Lovable por CSS utilitário
 * nativo + estilos BEM por seção. Carregado por último, por isso
 * qualquer override fino do tema parent entra aqui.
 *
 * Seções (use Ctrl+F):
 *   1. Brand color aliases
 *   2. Global helpers
 *   3. Marquee (parceiros) — vindo do Lovable
 *   4. Testimonials track
 *   5. FAQ accordion (grid trick)
 *   6. Custom buttons (navy, teal, white)
 *   7. Header nav (gb-nav)
 *   8. Footer (gb-footer)
 *   9. Hero (gb-hero)
 *  10. App Experience (gb-app-experience)
 *  11. Social Proof (gb-proof)
 *  12. How It Works (gb-how)
 *  13. ROI (gb-roi)
 *  14. Impact (gb-impact)
 *  15. NR-1 (gb-nr1)
 *  16. Lead Form (gb-lead)
 *  17. FAQ section shell (gb-faq)
 *  18. App Download (gb-appdl)
 *  19. Pages About / Contact / 404 / Generic
 * ───────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   1. BRAND COLOR ALIASES — facilitam leitura dos estilos
   ══════════════════════════════════════════════════════════════ */
:root {
  --brand-navy:       #123E88;
  --brand-navy-dark:  #0D2B5E;
  --brand-teal:       #23B5A7;
  --brand-teal-soft:  #8fe9e1;
  --brand-blue:       #1E6DEB;
  --brand-charcoal:   #1A2B4A;

  --surface-pale:     #f4f8fc;
  --surface-paler:    #f6f9fc;
  --surface-alt:      #eef4fa;
  --surface-card:     #f8fbfe;
  --surface-cool:     #edf4fb;
  --text-muted:       #5f7690;
  --text-muted-cool:  #6b8098;
  --text-muted-alt:   #7d98b2;
  --text-muted-soft:  #91a7bd;
  --border-pale:      #dbe6f1;
  --border-pale-alt:  #e3eaf3;
  --border-pale-cool: #d9e3ee;

  --radius-xxl:  32px;
  --radius-card: 28px;
  --radius-btn:  18px;
  --radius-pill: 9999px;
}

/* ══════════════════════════════════════════════════════════════
   2. GLOBAL HELPERS
   ══════════════════════════════════════════════════════════════ */
body {
  font-family: 'Inter', var(--font-body);
  background: var(--surface-pale);
  color: var(--brand-navy);
}

/* Container base usado em toda seção (centraliza e define largura máxima) */
.section-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section-inner--narrow {
  max-width: 820px;
}
@media (max-width: 640px) {
  .section-inner { padding-inline: 1rem; }
}

/* Heading genérico usado em pages internas */
.gb-heading-section {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}

/* Gradient text do título App Experience */
.gb-gradient-text {
  background: linear-gradient(to right, #12b8c8, var(--brand-blue), var(--brand-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Utilitário visual — linha teal debaixo de headings (tinha no Lovable) */
.underline-teal {
  position: relative;
  display: inline-block;
}
.underline-teal::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--brand-teal);
  border-radius: var(--radius-pill);
}

/* Screen-reader only (reforço além do base.css) */
.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   3. MARQUEE (parceiros) — animação de 3 faixas
   ══════════════════════════════════════════════════════════════ */
.partner-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
          mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.partner-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .partner-track { gap: 1.5rem; }
}
.partner-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 84px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--r-2xl);
  background: var(--gl);
  backdrop-filter: saturate(var(--gl-sat)) blur(8px);
  -webkit-backdrop-filter: saturate(var(--gl-sat)) blur(8px);
  box-shadow: var(--gl-in), var(--sh-sm);
  flex: 0 0 auto;
}
.partner-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 640px) {
  .partner-logo-card { width: 126px; height: 72px; padding: 0.75rem 1rem; }
}
@keyframes partner-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes partner-scroll-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
.animate-partner-scroll         { animation: partner-scroll 40s linear infinite; }
.animate-partner-scroll-reverse { animation: partner-scroll-reverse 40s linear infinite; }
@media (prefers-reduced-motion: reduce) {
  .animate-partner-scroll,
  .animate-partner-scroll-reverse { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   4. TESTIMONIALS TRACK
   ══════════════════════════════════════════════════════════════ */
.proof-testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.proof-testimonials-track::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .proof-testimonials-track { grid-auto-columns: minmax(320px, 1fr); }
}
.proof-testimonial-card {
  scroll-snap-align: start;
  min-height: 100%;
  background: #f2f7fb;
  border: 1px solid var(--border-pale-cool);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(24, 36, 79, 0.08);
  transition: transform var(--t-spring), box-shadow var(--t-smooth), border-color var(--t-fast);
}
@media (min-width: 768px) {
  .proof-testimonial-card { padding: 1.5rem; }
}
.proof-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 43, 94, 0.18);
  box-shadow: var(--sh-lg);
}
.proof-rating {
  color: hsl(var(--teal-400));
  font-size: 15px;
  letter-spacing: 0.26em;
}
.proof-tag {
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-low);
  border-radius: var(--r-pill);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  line-height: 1;
  padding: 10px 14px;
}

/* ══════════════════════════════════════════════════════════════
   5. FAQ — grid animation trick (0fr → 1fr)
   ══════════════════════════════════════════════════════════════ */
details.faq-item summary::-webkit-details-marker { display: none; }

.faq-answer {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows var(--t-spring), opacity var(--t-fast);
}
.faq-answer > div { min-height: 0; }

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 8px 18px rgba(18, 62, 136, 0.12);
  transition: transform var(--t-spring);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron svg { width: 20px; height: 20px; }

/* Estilo do rótulo de resposta FAQ (usado pelos <p class="faq-label">) */
.faq-label {
  font-weight: 700;
  color: var(--brand-navy);
}

/* ══════════════════════════════════════════════════════════════
   6. BUTTONS extras (navy, teal, white) — complementam components.css
   ══════════════════════════════════════════════════════════════ */
.gb-btn-navy {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 43, 94, 0.18);
}
.gb-btn-navy:hover { background: var(--brand-navy-dark); }

.gb-btn-teal {
  background: var(--brand-teal);
  color: #fff;
  box-shadow: 0 18px 36px rgba(35, 181, 167, 0.18);
}
.gb-btn-teal:hover { background: #1ea79a; }

.gb-btn-white {
  background: #fff;
  color: var(--brand-navy);
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.12);
}
.gb-btn-white:hover { background: rgba(255, 255, 255, 0.92); }

/* ══════════════════════════════════════════════════════════════
   7. HEADER NAV (gb-nav)
   ══════════════════════════════════════════════════════════════ */
.gb-nav {
  background: var(--brand-navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
@media (min-width: 768px) { .gb-nav { padding: 1.5rem 0; } }

.gb-nav__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .gb-nav__inner { padding-inline: 1.5rem; } }

.gb-nav__logo { display: inline-flex; align-items: center; }
.gb-nav__logo-img,
.gb-nav .custom-logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .gb-nav__logo-img,
  .gb-nav .custom-logo { height: 36px; }
}

.gb-nav__menu-wrap {
  display: none;
  align-items: center;
  gap: 2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .gb-nav__menu-wrap { display: flex; }
}

.nav-primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-primary-menu a {
  color: #fff;
  text-decoration: none;
  transition: color var(--t-fast);
}
.nav-primary-menu a:hover { color: var(--brand-teal); }

.btn-nav-cta {
  background: var(--brand-blue);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background var(--t-fast), opacity var(--t-fast);
}
.btn-nav-cta:hover { opacity: 0.9; }

.btn-nav-cta--mobile {
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn-nav-cta--mobile { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   8. FOOTER (gb-footer)
   ══════════════════════════════════════════════════════════════ */
.gb-footer {
  background: var(--brand-navy-dark);
  color: #fff;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) { .gb-footer { padding: 5rem 0; } }

.gb-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .gb-footer__inner { padding-inline: 1.5rem; } }

.gb-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gb-footer__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.95fr);
  }
}

.gb-footer__logo { height: 36px; width: auto; }
.gb-footer__tagline {
  margin-top: 1.5rem;
  max-width: 320px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
}
.gb-footer__social {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.gb-chip-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.gb-chip-link:hover { border-color: var(--brand-teal); color: var(--brand-teal); }

.gb-footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.gb-footer__list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.gb-footer__list a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.gb-footer__list a:hover { color: var(--brand-teal); }

.gb-footer__col a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--t-fast);
}
.gb-footer__col a:hover { color: var(--brand-teal); }

.gb-footer__contact-group {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}
.gb-footer__contact-group a { display: block; margin-top: 0.25rem; }
.gb-footer__contact-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.5rem;
}

.gb-footer__apps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gb-app-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  max-width: 220px;
  width: 100%;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.gb-app-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.gb-footer__legal {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gb-footer__legal { flex-direction: row; align-items: center; justify-content: space-between; }
}
.gb-footer__legal-links {
  display: flex;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gb-footer__legal-links { gap: 1.5rem; }
}
.gb-footer__legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.gb-footer__legal-links a:hover { color: rgba(255, 255, 255, 0.8); }

/* ══════════════════════════════════════════════════════════════
   9. HERO (gb-hero)
   ══════════════════════════════════════════════════════════════ */
.gb-hero {
  background: var(--brand-navy);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .gb-hero { padding: 5rem 0 6rem; }
}

.gb-hero__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 640px) { .gb-hero__inner { padding-inline: 1.5rem; } }
@media (min-width: 768px) {
  .gb-hero__inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 3.5rem;
    align-items: stretch;
  }
}

.gb-hero__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .gb-hero__copy { text-align: left; margin-inline: 0; }
}

.gb-hero__chip {
  align-self: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .gb-hero__chip { align-self: flex-start; }
}

.gb-hero__title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 11ch;
  margin-inline: auto;
}
@media (min-width: 640px) { .gb-hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .gb-hero__title { font-size: 4rem; margin-inline: 0; } }

.gb-hero__title--dim { color: rgba(255, 255, 255, 0.86); }

.gb-hero__lead {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 3rem;
  margin-inline: auto;
}
@media (min-width: 640px) { .gb-hero__lead { font-size: 1.125rem; } }
@media (min-width: 768px) {
  .gb-hero__lead { font-size: 1.15rem; margin-bottom: 3.5rem; margin-inline: 0; }
}

.gb-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gb-hero__actions .btn { width: 100%; }
@media (min-width: 640px) {
  .gb-hero__actions { flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }
  .gb-hero__actions .btn { width: auto; }
}

.gb-hero__media {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 640px) { .gb-hero__media { height: 420px; } }
@media (min-width: 1024px) { .gb-hero__media { height: 600px; } }

.gb-hero__media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.gb-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
@media (min-width: 768px) { .gb-hero__img { object-position: center; } }
.gb-hero__img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-navy), transparent, transparent);
  opacity: 0.4;
}

.gb-hero__floating-card {
  position: absolute;
  left: -1.5rem;
  bottom: 3rem;
  display: none;
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  gap: 0.75rem;
}
@media (min-width: 768px) { .gb-hero__floating-card { display: flex; align-items: center; } }

.gb-hero__floating-icon {
  width: 40px;
  height: 40px;
  background: rgba(35, 181, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  flex-shrink: 0;
}
.gb-hero__floating-icon svg { width: 24px; height: 24px; }

.gb-hero__floating-tag {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.gb-hero__floating-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
.gb-hero__floating-desc { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.5; color: #fff; max-width: 180px; }

/* ══════════════════════════════════════════════════════════════
   10. APP EXPERIENCE (gb-app-experience)
   ══════════════════════════════════════════════════════════════ */
.gb-app-experience {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
  background: var(--surface-pale);
}
.gb-app-experience__top-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 128px;
  background: radial-gradient(circle at top, rgba(35, 181, 167, 0.12), transparent 68%);
}
.gb-app-experience__intro { text-align: center; max-width: 980px; margin-inline: auto; }

.gb-app-experience__title {
  max-width: 980px;
  margin: 1.5rem auto 0;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-app-experience__title { font-size: 3.75rem; } }

.gb-app-experience__lead {
  max-width: 760px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 2;
  color: #475569;
}
@media (min-width: 768px) { .gb-app-experience__lead { font-size: 1.25rem; } }

.gb-app-experience .btn { margin-top: 2rem; }

.gb-app-experience__stage {
  position: relative;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .gb-app-experience__stage { margin-top: 4rem; margin-bottom: 4rem; }
}
.gb-app-experience__glow { position: absolute; border-radius: 50%; filter: blur(48px); pointer-events: none; }
.gb-app-experience__glow--center {
  left: 50%; top: 6%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  background: rgba(35, 181, 167, 0.2);
  filter: blur(48px);
}
.gb-app-experience__glow--left,
.gb-app-experience__glow--right {
  display: none;
  width: 112px; height: 112px;
  filter: blur(32px);
}
@media (min-width: 768px) {
  .gb-app-experience__glow--left,
  .gb-app-experience__glow--right { display: block; }
}
.gb-app-experience__glow--left { left: 12%; top: 22%; background: #dff8f4; }
.gb-app-experience__glow--right { right: 12%; top: 24%; background: #dce9ff; }

.gb-app-experience__mockup-row {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}
.gb-app-experience__phone {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) { .gb-app-experience__phone { max-width: 320px; } }
.gb-app-experience__phone-frame {
  border-radius: 42px;
  border: 1px solid rgba(18, 43, 94, 0.08);
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  padding: 1rem;
  box-shadow: 0 35px 90px rgba(18, 43, 94, 0.18);
}
.gb-app-experience__phone-screen {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-card);
}
.gb-app-experience__phone-screen img { width: 100%; height: auto; object-fit: contain; display: block; }

.gb-app-experience__side-card {
  display: none;
  position: absolute;
  top: 14%;
  padding: 1rem;
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: rgba(248, 251, 254, 0.96);
  box-shadow: 0 22px 48px rgba(18, 43, 94, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  text-align: left;
}
@media (min-width: 768px) { .gb-app-experience__side-card { display: block; } }
.gb-app-experience__side-card--left {
  left: 2%;
  top: 14%;
  width: 210px;
  padding: 1.25rem;
  border-radius: 28px;
}
.gb-app-experience__side-card--right {
  right: 3%;
  top: 16%;
  width: 196px;
  border-radius: 24px;
}
.gb-app-experience__side-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-teal);
}
.gb-app-experience__side-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-navy);
}
.gb-app-experience__side-card--left .gb-app-experience__side-title { font-size: 1.125rem; }
.gb-app-experience__side-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

.gb-app-experience__features {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 640px) { .gb-app-experience__features { grid-template-columns: repeat(3, 1fr); } }

.gb-app-experience__feature {
  border: 1px solid rgba(18, 43, 94, 0.08);
  background: var(--surface-alt);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 16px 36px rgba(18, 43, 94, 0.06);
}
.gb-app-experience__feature-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-teal);
}
.gb-app-experience__feature-text {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--brand-navy);
}

/* ══════════════════════════════════════════════════════════════
   11. SOCIAL PROOF (gb-proof)
   ══════════════════════════════════════════════════════════════ */
.gb-proof { background: var(--surface-pale); }

.gb-proof__card-outer {
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: linear-gradient(to bottom right, #eaf2f9, var(--surface-paler), #e3edf8);
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(24, 36, 79, 0.1);
}
@media (min-width: 768px) { .gb-proof__card-outer { padding: 1.5rem; } }

.gb-proof__top-row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .gb-proof__top-row { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 1.5rem; }
}

.gb-proof__claim {
  border-radius: 24px;
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: linear-gradient(to bottom right, var(--brand-navy), var(--brand-navy-dark));
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(24, 36, 79, 0.18);
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 1024px) { .gb-proof__claim { padding: 2.5rem; margin-inline: 0; } }

.gb-proof__claim .chip-dark { margin-bottom: 1.25rem; }
.gb-proof__big-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) { .gb-proof__big-number { font-size: 3.75rem; } }

.gb-proof__claim-lead {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 768px) { .gb-proof__claim-lead { font-size: 1.5rem; } }
.gb-proof__claim-highlight { color: var(--brand-teal); }

.gb-proof__claim-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #fff;
  max-width: 28rem;
}
@media (min-width: 768px) { .gb-proof__claim-desc { font-size: 1rem; } }

.gb-proof__marquee-wrap {
  border-radius: 24px;
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: var(--surface-cool);
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(24, 36, 79, 0.12);
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 768px) { .gb-proof__marquee-wrap { padding: 1.25rem; } }

.gb-proof__testimonials-row {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gb-proof__testimonials-row { grid-template-columns: 280px minmax(0, 1fr); }
}

.gb-proof__controls {
  border-radius: 24px;
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: linear-gradient(to bottom, #dbe7f3, var(--surface-cool));
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(77, 100, 135, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) { .gb-proof__controls { padding: 1.75rem; } }

.gb-proof__controls-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-proof__controls-title { font-size: 1.75rem; } }

.gb-proof__nps {
  margin-top: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
  box-shadow: 0 16px 36px rgba(18, 43, 94, 0.08);
}
.gb-proof__nps-value { font-size: 24px; font-weight: 700; color: var(--brand-navy); line-height: 1; }
.gb-proof__nps-label {
  margin-top: 0.5rem;
  font-size: 11px;
  line-height: 1.25;
  color: #5a7896;
}

.gb-proof__controls-buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gb-proof__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: opacity var(--t-fast), transform var(--t-spring);
}
.gb-proof__btn:active { transform: scale(0.97); }
.gb-proof__btn--prev { background: var(--brand-navy); }
.gb-proof__btn--next { background: var(--brand-blue); }

.gb-proof__track-wrap {
  border-radius: 24px;
  border: 1px solid rgba(18, 62, 136, 0.1);
  background: var(--surface-pale);
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(77, 100, 135, 0.14);
  overflow: hidden;
}
@media (min-width: 768px) { .gb-proof__track-wrap { padding: 1.25rem; } }

.gb-proof__card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gb-proof__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.gb-proof__name { font-weight: 700; color: var(--brand-navy); }
.gb-proof__role { font-size: 0.875rem; color: var(--text-muted-alt); }

.gb-proof__body { margin-top: 1.5rem; }
.gb-proof__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-navy);
}
.gb-proof__text {
  margin-top: 1rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted-alt);
}

.gb-proof__card-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   12. HOW IT WORKS (gb-how)
   ══════════════════════════════════════════════════════════════ */
.gb-how { background: var(--surface-alt); }

.gb-how__intro { max-width: 960px; margin-inline: auto; text-align: center; }
.gb-how__title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-how__title { font-size: 3rem; } }
.gb-how__lead {
  margin: 1.25rem auto 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-muted-cool);
}
@media (min-width: 768px) { .gb-how__lead { font-size: 1.125rem; } }

.gb-how__stage { position: relative; margin-top: 3rem; }
@media (min-width: 768px) { .gb-how__stage { margin-top: 4rem; } }

.gb-how__connector {
  display: none;
  position: absolute;
  left: 16%;
  right: 16%;
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(35, 181, 167, 0), rgba(35, 181, 167, 0.55), rgba(35, 181, 167, 0));
}
@media (min-width: 1024px) { .gb-how__connector { display: block; } }

.gb-how__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .gb-how__grid { grid-template-columns: repeat(3, 1fr); } }

.gb-how__card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.75rem;
}
@media (min-width: 768px) { .gb-how__card { padding: 2rem; } }

.gb-how__card--light {
  border: 1px solid rgba(18, 43, 94, 0.08);
  background: var(--surface-card);
  box-shadow: 0 24px 50px rgba(18, 43, 94, 0.07);
}
.gb-how__card--dark {
  border: 1px solid rgba(18, 43, 94, 0.08);
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
  box-shadow: 0 28px 60px rgba(18, 43, 94, 0.18);
}

.gb-how__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gb-how__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 900;
}
.gb-how__card--light .gb-how__card-num {
  background: rgba(35, 181, 167, 0.12);
  color: var(--brand-teal);
}
.gb-how__card--dark .gb-how__card-num {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.gb-how__card-icon { color: var(--brand-teal); }
.gb-how__card-icon svg { width: 32px; height: 32px; }

.gb-how__card-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}
.gb-how__card--light .gb-how__card-title { color: var(--brand-navy); }
.gb-how__card--dark .gb-how__card-title { color: #fff; }

.gb-how__card-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}
.gb-how__card--light .gb-how__card-desc { color: var(--text-muted-cool); }
.gb-how__card--dark .gb-how__card-desc { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   13. ROI (gb-roi)
   ══════════════════════════════════════════════════════════════ */
.gb-roi { background: var(--brand-navy); }

.gb-roi__intro { max-width: 920px; margin-inline: auto; text-align: center; }
.gb-roi__title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (min-width: 768px) { .gb-roi__title { font-size: 3rem; } }
.gb-roi__lead {
  margin: 1.25rem auto 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 2;
  color: #fff;
}
@media (min-width: 768px) { .gb-roi__lead { font-size: 1.125rem; } }

.gb-roi__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .gb-roi__grid { margin-top: 4rem; } }
@media (min-width: 640px) { .gb-roi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .gb-roi__grid { grid-template-columns: repeat(4, 1fr); } }

.gb-roi__card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(6, 18, 40, 0.18);
  transition: transform 0.5s;
}
.gb-roi__card:hover { transform: scale(1.01); }
.gb-roi__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 40, 0.02) 10%, rgba(6, 18, 40, 0.28) 42%, rgba(6, 18, 40, 0.82) 100%);
}
.gb-roi__card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.5rem;
}
.gb-roi__card-tag {
  align-self: flex-start;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.gb-roi__card-title {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
}
.gb-roi__card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}

.gb-roi__footer {
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) { .gb-roi__footer { margin-top: 3rem; } }
.gb-roi__footer-claim {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 768px) { .gb-roi__footer-claim { font-size: 1.5rem; } }
.gb-roi__footer .btn { margin-top: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   14. IMPACT (gb-impact)
   ══════════════════════════════════════════════════════════════ */
.gb-impact { background: var(--surface-paler); }

.gb-impact__hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--brand-navy);
  box-shadow: 0 28px 80px rgba(18, 43, 94, 0.22);
}
.gb-impact__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.gb-impact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 40, 0.74) 0%, rgba(11, 37, 80, 0.58) 34%, rgba(11, 37, 80, 0.24) 58%, rgba(6, 18, 40, 0.78) 100%);
}
.gb-impact__beam {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(32px);
}

.gb-impact__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  padding: 1.5rem;
}
@media (min-width: 640px) { .gb-impact__content { padding: 2rem; } }
@media (min-width: 768px) { .gb-impact__content { padding: 2.5rem; } }
@media (min-width: 1024px) { .gb-impact__content { padding: 3rem; } }

.gb-impact__content > div {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gb-impact__content > div {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
  }
}

.gb-impact__title {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.04;
  color: #fff;
  max-width: 680px;
}
@media (min-width: 768px) { .gb-impact__title { font-size: 3.75rem; } }

.gb-impact__chips {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.gb-impact__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.gb-impact__sidecard {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 1.25rem;
}
@media (min-width: 768px) { .gb-impact__sidecard { padding: 1.5rem; } }

.gb-impact__sidecard-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 2;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   15. NR-1 (gb-nr1)
   ══════════════════════════════════════════════════════════════ */
.gb-nr1 {
  background: var(--brand-charcoal);
  overflow: hidden;
}

.gb-nr1__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gb-nr1__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 3.5rem; }
}

.gb-nr1__title {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
@media (min-width: 768px) { .gb-nr1__title { font-size: 3rem; } }

.gb-nr1__lead {
  margin-top: 1.5rem;
  max-width: 620px;
  font-size: 1rem;
  line-height: 2;
  color: #fff;
}
@media (min-width: 768px) { .gb-nr1__lead { font-size: 1.125rem; } }

.gb-nr1__bullets { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.gb-nr1__bullet {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.gb-nr1__bullet-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-teal-soft);
}
.gb-nr1__bullet-text {
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.75;
}

.gb-nr1__text-col .btn { margin-top: 2rem; }

.gb-nr1__visual-col { position: relative; }

.gb-nr1__glow {
  position: absolute;
  left: -1.5rem;
  top: 2.5rem;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(35, 181, 167, 0.18);
  filter: blur(48px);
}

.gb-nr1__device {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #0b2444 0%, #102d53 100%);
  padding: 1rem;
  box-shadow: 0 28px 80px rgba(4, 12, 28, 0.34);
}
.gb-nr1__device-inner {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 1rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .gb-nr1__device-inner { padding: 1.25rem; } }

.gb-nr1__device-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.gb-nr1__device-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-teal-soft);
}
.gb-nr1__device-title {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.gb-nr1__dots { display: flex; gap: 0.5rem; padding-top: 0.25rem; }
.gb-nr1__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.gb-nr1__dots span:nth-child(1) { background: var(--brand-teal-soft); }
.gb-nr1__dots span:nth-child(2) { background: rgba(255, 255, 255, 0.35); }
.gb-nr1__dots span:nth-child(3) { background: rgba(255, 255, 255, 0.2); }

.gb-nr1__screenshot-main {
  margin-top: 1rem;
  border-radius: 22px;
  background: rgba(19, 51, 85, 0.92);
  padding: 1rem;
}
@media (min-width: 768px) { .gb-nr1__screenshot-main { padding: 1.25rem; } }
.gb-nr1__screenshot-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-teal-soft);
}
.gb-nr1__screenshot-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}
.gb-nr1__screenshot-frame {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}
.gb-nr1__screenshot-frame img { width: 100%; height: auto; object-fit: cover; display: block; }

.gb-nr1__footer-row {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gb-nr1__footer-row {
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: flex-start;
  }
}
.gb-nr1__footer-text {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}
.gb-nr1__footer-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}
.gb-nr1__footer-screenshot {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
}
.gb-nr1__footer-screenshot > div,
.gb-nr1__footer-screenshot img {
  overflow: hidden;
  border-radius: 16px;
}
.gb-nr1__footer-screenshot img {
  height: 152px;
  width: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

/* ══════════════════════════════════════════════════════════════
   16. LEAD FORM (gb-lead)
   ══════════════════════════════════════════════════════════════ */
.gb-lead { background: var(--brand-navy); }

.gb-lead__card {
  overflow: hidden;
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #0a2346 0%, #113468 52%, #163d75 100%);
  box-shadow: 0 28px 80px rgba(4, 12, 28, 0.34);
}
.gb-lead__inner {
  background: var(--surface-pale);
  padding: 1.5rem;
}
@media (min-width: 640px) { .gb-lead__inner { padding: 2rem; } }
@media (min-width: 768px) { .gb-lead__inner { padding: 2.5rem; } }
@media (min-width: 1024px) { .gb-lead__inner { padding: 3rem; } }

.gb-lead__header { margin-bottom: 1.5rem; }
.gb-lead__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-teal);
}
.gb-lead__title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-lead__title { font-size: 1.875rem; } }

.gb-lead__desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted-cool);
}

.gb-lead__form { display: flex; flex-direction: column; gap: 1.25rem; }
.gb-lead__row--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .gb-lead__row--2 { grid-template-columns: 1fr 1fr; } }
.gb-lead__field { display: flex; flex-direction: column; gap: 0.5rem; }
.gb-lead__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted-cool);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.gb-lead__input,
.gb-lead__select,
.gb-lead__textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-pale);
  background: var(--surface-card);
  padding: 0.875rem 1rem;
  color: var(--brand-navy);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.gb-lead__input::placeholder,
.gb-lead__textarea::placeholder {
  color: var(--text-muted-soft);
}
.gb-lead__input:focus,
.gb-lead__select:focus,
.gb-lead__textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30, 109, 235, 0.14);
}
.gb-lead__textarea { resize: vertical; min-height: 100px; }

.gb-lead__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.gb-lead__submit {
  width: 100%;
  border-radius: var(--radius-btn);
  background: var(--brand-blue);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(30, 109, 235, 0.24);
  transition: opacity var(--t-fast), transform var(--t-spring);
}
.gb-lead__submit:hover:not(:disabled) { opacity: 0.92; }
.gb-lead__submit:active:not(:disabled) { transform: scale(0.97); }
.gb-lead__submit:disabled { opacity: 0.55; cursor: not-allowed; }

.gb-lead__status {
  font-size: 0.875rem;
  min-height: 1.5rem;
  color: var(--text-muted-cool);
}
.gb-lead__status[data-status="success"] { color: hsl(152, 68%, 28%); }
.gb-lead__status[data-status="error"]   { color: hsl(0, 68%, 46%); }

/* ══════════════════════════════════════════════════════════════
   17. FAQ SECTION (gb-faq)
   ══════════════════════════════════════════════════════════════ */
.gb-faq { background: var(--surface-paler); }
.gb-faq__header { text-align: center; margin-bottom: 4rem; }
.gb-faq__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--brand-teal);
}
.gb-faq__title {
  font-size: 1.875rem;
  font-weight: 800;
  padding-bottom: 0.5rem;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-faq__title { font-size: 2.25rem; } }

.gb-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gb-faq__item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-pale-alt);
  background: var(--surface-cool);
  box-shadow: 0 14px 28px rgba(18, 62, 136, 0.07);
}
.gb-faq__summary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  background: transparent;
  border: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .gb-faq__summary { padding: 1.25rem 1.5rem; }
}
.gb-faq__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
}
@media (min-width: 768px) { .gb-faq__question { font-size: 1.125rem; } }

.gb-faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .gb-faq__answer { padding: 0 1.5rem 1.5rem; }
}
.gb-faq__answer-inner > div,
.gb-faq__answer-inner > p {
  margin-top: 1rem;
}
.gb-faq__answer-inner > div:first-child,
.gb-faq__answer-inner > p:first-child {
  margin-top: 0;
}

.gb-faq__more-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   18. APP DOWNLOAD (gb-appdl)
   ══════════════════════════════════════════════════════════════ */
.gb-appdl { background: var(--surface-pale); padding-bottom: 2rem; }
@media (min-width: 768px) { .gb-appdl { padding-bottom: 3rem; } }

.gb-appdl__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #0b2550 0%, #164c86 52%, #12b8c8 100%);
  padding: 2rem 1.5rem;
  box-shadow: 0 24px 70px rgba(18, 43, 94, 0.22);
}
@media (min-width: 640px) { .gb-appdl__card { padding: 2rem; } }
@media (min-width: 768px) { .gb-appdl__card { padding: 2.5rem; } }
@media (min-width: 1024px) { .gb-appdl__card { min-height: 430px; } }

.gb-appdl__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(8, 20, 46, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(7, 24, 50, 0.18), transparent 45%);
}
.gb-appdl__mockup-bg--desktop {
  display: none;
  position: absolute;
  right: -10%;
  top: -8%;
  bottom: -4%;
  width: 54%;
  background-size: 192%;
  background-position: 13% 42%;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) { .gb-appdl__mockup-bg--desktop { display: block; } }
.gb-appdl__mockup-bg--mobile {
  position: relative;
  margin-top: 2.5rem;
  min-height: 280px;
  overflow: hidden;
}
.gb-appdl__mockup-bg--mobile::before {
  content: '';
  position: absolute;
  left: 16%; right: -24%; bottom: -8%; top: -4%;
  background-image: inherit;
  background-size: 180%;
  background-position: 10% 40%;
  background-repeat: no-repeat;
}
@media (min-width: 640px) {
  .gb-appdl__mockup-bg--mobile::before { left: 26%; right: -18%; }
}
@media (min-width: 1024px) { .gb-appdl__mockup-bg--mobile { display: none; } }

.gb-appdl__glow {
  display: none;
  position: absolute;
  right: 14%; top: 8%;
  height: 58%; width: 18%;
  border-radius: 50%;
  background: rgba(140, 236, 245, 0.2);
  filter: blur(48px);
}
@media (min-width: 1024px) { .gb-appdl__glow { display: block; } }

.gb-appdl__content {
  position: relative;
  z-index: 10;
  max-width: 560px;
}
@media (min-width: 1024px) { .gb-appdl__content { padding: 2rem 0; } }

.gb-appdl__chip { color: rgba(255, 255, 255, 0.8) !important; border-color: rgba(255, 255, 255, 0.2) !important; background: rgba(255, 255, 255, 0.1) !important; }

.gb-appdl__title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 768px) { .gb-appdl__title { font-size: 3rem; } }

.gb-appdl__desc {
  margin-top: 1.25rem;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
}
@media (min-width: 768px) { .gb-appdl__desc { font-size: 1.125rem; } }

.gb-appdl__buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .gb-appdl__buttons { flex-direction: row; flex-wrap: wrap; } }

.gb-appdl__store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-decoration: none;
  transition: background var(--t-fast);
}
.gb-appdl__store-btn:hover { background: rgba(255, 255, 255, 0.18); }

.gb-appdl__rating {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (min-width: 640px) { .gb-appdl__rating { flex-direction: row; gap: 2rem; } }

.gb-appdl__avatars { display: flex; }
.gb-appdl__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #123b68;
  object-fit: cover;
  margin-left: -0.75rem;
}
.gb-appdl__avatar:first-child { margin-left: 0; }
.gb-appdl__rating-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════════════════════════════
   19. PAGE-LEVEL TEMPLATES (About, Contact, 404, Generic)
   ══════════════════════════════════════════════════════════════ */
.gb-page, .gb-about, .gb-contact, .gb-404, .gb-generic, .gb-single, .gb-archive {
  background: var(--surface-pale);
}

.gb-about__hero-inner,
.gb-contact__hero-inner,
.gb-404__inner { text-align: center; }

.gb-about__title,
.gb-contact__title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .gb-about__title,
  .gb-contact__title { font-size: 3rem; }
}
.gb-about__content {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted-cool);
}
.gb-contact__subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted-cool);
}

.gb-about__values-grid,
.gb-contact__channels-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gb-about__values-grid,
  .gb-contact__channels-grid { grid-template-columns: repeat(3, 1fr); }
}
.gb-about__value-card,
.gb-contact__channel {
  padding: 1.75rem;
}
.gb-about__value-card h3,
.gb-contact__channel h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}
.gb-about__value-card p,
.gb-contact__channel p {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted-cool);
}
.gb-contact__channel a {
  display: block;
  margin-top: 0.5rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}
.gb-contact__channel a:hover { text-decoration: underline; }

.gb-404__code {
  margin: 1.5rem auto 0;
  font-size: 6rem;
  font-weight: 900;
  color: var(--brand-teal);
  line-height: 1;
}
.gb-404__message {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--text-muted-cool);
  line-height: 1.6;
}
.gb-404__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gb-generic__loop,
.gb-archive__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 768px) { .gb-archive__grid { grid-template-columns: repeat(2, 1fr); } }

.gb-generic__item,
.gb-archive__card {
  padding: 1.5rem;
}
.gb-generic__item-title,
.gb-archive__card-title {
  font-size: 1.25rem;
  font-weight: 800;
}
.gb-generic__item-title a,
.gb-archive__card-title a {
  color: var(--brand-navy);
  text-decoration: none;
}
.gb-generic__item-title a:hover,
.gb-archive__card-title a:hover { color: var(--brand-teal); }

.gb-single__meta {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted-cool);
}
.gb-single__thumb { margin-top: 2rem; border-radius: 20px; overflow: hidden; }
.gb-single__thumb img { width: 100%; height: auto; display: block; }
.gb-single__content {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brand-navy);
}
.gb-single__content p { margin-bottom: 1.25rem; }

.gb-search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
}

.gb-page__article .gb-page__content {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}
.gb-page__article .gb-page__content p { margin-bottom: 1.25rem; }
