/* ==============================================
   GO Data Landing Page — module_go-data-landing.css
   Namespaced under .gdl
   ============================================== */

/* ---- Minimal Header ---- */
.gdl-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gdl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gdl-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.gdl-header__logo img {
  height: 34px;
  width: auto;
}

.gdl-header__badge {
  font-size: 12px;
  color: var(--gray-500, #6b7280);
  border-left: 1px solid var(--gray-300, #d1d5db);
  padding-left: 12px;
  white-space: nowrap;
}

.gdl-header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary, #10292C);
  text-decoration: none;
  white-space: nowrap;
}

.gdl-header__phone:hover {
  color: var(--brand-secondary, #C4ECB0);
}

/* ---- Hero Section ---- */
.gdl-hero {
  padding: 60px 0 40px;
}

.gdl-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gdl-hero__preheadline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500, #6b7280);
  margin-bottom: 12px;
}

.gdl-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-primary, #10292C);
  margin: 0 0 20px;
}

.gdl-hero__subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600, #4b5563);
  margin-bottom: 28px;
}

/* Trust pills */
.gdl-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gdl-trust-pills__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-gray, #f9fafb);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary, #10292C);
}

.gdl-trust-pills__item::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
}

/* Form card */
.gdl-hero__form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.gdl-hero__form-card .form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0 0 4px;
  text-align: center;
}

.gdl-hero__form-card .form-subtitle {
  font-size: 14px;
  color: var(--gray-500, #6b7280);
  margin: 0 0 20px;
  text-align: center;
}

.gdl-hero__form-card .form-microcopy {
  font-size: 12px;
  color: var(--gray-500, #6b7280);
  text-align: center;
  margin-top: 12px;
}

.gdl-hero__form-card .form-microcopy a {
  color: var(--gray-600, #4b5563);
  text-decoration: underline;
}

/* ---- Logo Trust Bar ---- */
.gdl-logos {
  padding: 48px 0;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.gdl-logos__heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500, #6b7280);
  text-align: center;
  margin: 0 0 24px;
}

.gdl-logos__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.gdl-logos__grid img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.gdl-logos__grid img:hover {
  opacity: 1;
}

/* ---- Platform Bridge (3 cards) ---- */
.gdl-platform {
  padding: 80px 0;
}

.gdl-platform__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.gdl-platform__header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0 0 16px;
}

.gdl-platform__header p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-600, #4b5563);
  margin: 0;
}

.gdl-platform__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gdl-platform__card {
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gdl-platform__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.gdl-platform__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0 0 12px;
}

.gdl-platform__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600, #4b5563);
  margin: 0 0 16px;
}

.gdl-platform__card .proof {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary, #10292C);
  background: var(--surface-gray, #f0fdf4);
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-block;
}

/* ---- Stats Counter ---- */
.gdl-stats {
  padding: 60px 0;
  background: var(--brand-primary, #10292C);
}

.gdl-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.gdl-stats__item .number {
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-secondary, #C4ECB0);
  line-height: 1.2;
}

.gdl-stats__item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* ---- Testimonials ---- */
.gdl-testimonials {
  padding: 80px 0;
}

.gdl-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.gdl-testimonials__header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0;
}

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

.gdl-testimonial {
  background: var(--surface-gray, #f9fafb);
  border-radius: 12px;
  padding: 32px;
}

.gdl-testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700, #374151);
  font-style: italic;
  margin: 0 0 20px;
}

.gdl-testimonial__quote::before {
  content: "\201C";
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-secondary, #C4ECB0);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.gdl-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary, #10292C);
}

.gdl-testimonial__role {
  font-size: 13px;
  color: var(--gray-500, #6b7280);
}

/* ---- How It Works ---- */
.gdl-steps {
  padding: 80px 0;
  background: var(--surface-gray, #f9fafb);
}

.gdl-steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.gdl-steps__header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0;
}

.gdl-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.gdl-step {
  text-align: center;
}

.gdl-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-primary, #10292C);
  color: var(--brand-secondary, #C4ECB0);
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.gdl-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-primary, #10292C);
  margin: 0 0 8px;
}

.gdl-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600, #4b5563);
  margin: 0;
}

/* ---- Final CTA ---- */
.gdl-final-cta {
  padding: 80px 0;
  background: var(--brand-primary, #10292C);
  text-align: center;
}

.gdl-final-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.gdl-final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.gdl-final-cta .cbtn {
  font-size: 18px;
  padding: 16px 40px;
}

.gdl-final-cta .microcopy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* ---- Minimal Footer ---- */
.gdl-footer {
  padding: 24px 0;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  background: #fff;
}

.gdl-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500, #6b7280);
}

.gdl-footer__links {
  display: flex;
  gap: 20px;
}

.gdl-footer__links a {
  color: var(--gray-500, #6b7280);
  text-decoration: none;
}

.gdl-footer__links a:hover {
  color: var(--brand-primary, #10292C);
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 991px) {
  .gdl-hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gdl-hero h1 {
    font-size: 32px;
  }

  .gdl-platform__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gdl-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .gdl-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gdl-steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 575px) {
  .gdl-header__badge {
    display: none;
  }

  .gdl-hero {
    padding: 40px 0 24px;
  }

  .gdl-hero h1 {
    font-size: 28px;
  }

  .gdl-hero__subhead {
    font-size: 16px;
  }

  .gdl-trust-pills {
    gap: 8px;
  }

  .gdl-trust-pills__item {
    font-size: 12px;
    padding: 4px 10px;
  }

  .gdl-logos__grid {
    gap: 24px;
  }

  .gdl-logos__grid img {
    height: 22px;
  }

  .gdl-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .gdl-stats__item .number {
    font-size: 30px;
  }

  .gdl-platform__header h2,
  .gdl-testimonials__header h2,
  .gdl-steps__header h2,
  .gdl-final-cta h2 {
    font-size: 26px;
  }

  .gdl-hero__form-card {
    padding: 24px 20px;
  }

  .gdl-footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
