/* ============================================================
   GROWTH ASSESSMENT PAGE — brand-matched redesign
   Palette (from About Us page):
     --ga-navy-900 : #0A1B3D   (deep band background)
     --ga-navy-800 : #123472   (band gradient end)
     --ga-blue-600 : #2563EB   (primary action / accent)
     --ga-blue-500 : #2279EF   (link accent, matches breadcrumbs)
     --ga-blue-50  : #EEF4FF   (tints, icon tiles)
     --ga-ink-900  : #0F172A   (headings/body)
     --ga-ink-600  : #55607A   (muted copy)
     --ga-line     : #E6EAF2   (hairline borders)
   Font: Poppins (already loaded globally)
   ============================================================ */

.ga-page {
  --ga-navy-900: #0a1b3d;
  --ga-navy-800: #123472;
  --ga-blue-600: #2563eb;
  --ga-blue-500: #2279ef;
  --ga-blue-50: #eef4ff;
  --ga-ink-900: #0f172a;
  --ga-ink-600: #55607a;
  --ga-line: #e6eaf2;
  --ga-radius: 16px;

  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ga-ink-900);
  overflow-x: hidden;
}

.ga-page * {
  box-sizing: border-box;
}

.ga-page h1,
.ga-page h2,
.ga-page h3,
.ga-page h4 {
  font-family: "Poppins", sans-serif;
  color: var(--ga-ink-900);
  margin: 0;
  line-height: 1.2;
}

.ga-page p {
  margin: 0;
}

/* ---------- layout helpers ---------- */
.ga-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.ga-container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.ga-section {
  padding: 88px 0;
}

.ga-section-alt {
  background: #f7f9fc;
}

.ga-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ga-blue-600);
  margin-bottom: 12px;
}

.ga-section-label-muted {
  color: var(--ga-ink-600);
  font-size: 12px;
}

.ga-section-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ga-section-title-md {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.ga-section-subtitle {
  font-size: 16px;
  color: var(--ga-ink-600);
  margin-top: 10px;
  line-height: 1.6;
}

.ga-footnote {
  font-size: 13px;
  color: #8b93a7;
  margin-top: 20px;
  text-align: center;
}

/* icons */
.ga-icon-14 { width: 14px; height: 14px; flex-shrink: 0; }
.ga-icon-16 { width: 16px; height: 16px; flex-shrink: 0; }
.ga-icon-20 { width: 20px; height: 20px; flex-shrink: 0; }
.ga-icon-primary { color: var(--ga-blue-600); }

.ga-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ga-blue-50);
  color: var(--ga-blue-600);
  margin-bottom: 14px;
}

/* buttons */
.ga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.ga-btn-primary {
  background: var(--ga-blue-600);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.55);
  padding: 12px 26px;
}

.ga-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.ga-btn-white {
  background: #fff;
  color: var(--ga-navy-900);
}

.ga-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
}

.ga-btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.ga-hero {
  padding: 110px 0 72px;
  background:
    radial-gradient(1100px 480px at 85% -10%, #eaf1ff 0%, rgba(234, 241, 255, 0) 60%),
    #ffffff;
  scroll-margin-top: 24px;
}

.ga-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.ga-hero-copy {
  padding-top: 8px;
}

.ga-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--ga-blue-50);
  color: var(--ga-blue-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ga-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ga-blue-600);
}

.ga-hero h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.ga-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ga-ink-600);
  margin-bottom: 14px;
  max-width: 34em;
}

.ga-hero-lead-muted {
  color: #7b8296;
}

.ga-proof-grid {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.ga-proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-ink-900);
}

.ga-hero-mobile-note {
  display: none;
}

/* ---------- hero form card ---------- */
.ga-hero-form-col {
  position: relative;
}

.ga-form-card {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--ga-line);
  box-shadow: 0 24px 60px -20px rgba(10, 27, 61, 0.22);
  padding: 32px 30px 26px;
  scroll-margin-top: 24px;
}

.ga-form-card-head h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ga-form-card-head p {
  font-size: 14px;
  color: var(--ga-ink-600);
  line-height: 1.55;
  margin-bottom: 20px;
}

.ga-form-bullets {
  list-style: none;
  margin: 0 0 22px;
  padding: 16px;
  background: var(--ga-blue-50);
  border-radius: 12px;
  display: grid;
  gap: 9px;
}

.ga-form-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ga-navy-900);
}

.ga-form-wrap :is(input, textarea, select) {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--ga-line);
  background: #fff;
  color: var(--ga-ink-900);
}

.ga-form-wrap :is(input, textarea, select):focus {
  outline: none;
  border-color: var(--ga-blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.ga-form-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-navy-900);
}

.ga-form-wrap button[type="submit"],
.ga-form-wrap .ff-btn-submit {
  width: 100%;
  background: var(--ga-blue-600) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 20px !important;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  cursor: pointer;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
}

.ga-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8b93a7;
  margin-top: 16px;
  text-align: left;
}

/* ============================================================
   METRICS BAND (navy, matches About page stat strip)
   ============================================================ */
.ga-metrics-band {
  background: linear-gradient(135deg, var(--ga-navy-900), var(--ga-navy-800));
  padding: 72px 0;
  color: #fff;
}

.ga-metrics-band-head {
  max-width: 42rem;
  margin: 0 auto 40px;
  text-align: center;
}

.ga-metrics-band-head h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.ga-metrics-band-head p {
  color: #b7c2e0;
  font-size: 15px;
  margin-top: 10px;
}

.ga-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ga-metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}

.ga-metric-card .ga-icon-20 {
  color: #8fb0ff;
  margin-bottom: 10px;
}

.ga-metric-value {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.ga-metric-label {
  font-size: 13px;
  color: #b7c2e0;
  margin-top: 4px;
}

.ga-metrics-band .ga-footnote {
  color: #8592b3;
}

/* plain (in-page, light) metric grid variant used inside case study */
.ga-metrics-grid-flush {
  margin-top: 28px;
}

.ga-metric-card-plain {
  background: #fff;
  border: 1px solid var(--ga-line);
}

.ga-metric-card-plain .ga-metric-value {
  color: var(--ga-navy-900);
}

.ga-metric-card-plain .ga-metric-label {
  color: var(--ga-ink-600);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.ga-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ga-client-card {
  background: #fff;
  border: 1px solid var(--ga-line);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ga-client-card:hover {
  box-shadow: 0 12px 28px -14px rgba(10, 27, 61, 0.25);
  transform: translateY(-2px);
}

.ga-client-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ga-navy-900);
}

.ga-client-location {
  font-size: 13px;
  color: var(--ga-ink-600);
  margin-top: 3px;
}

.ga-client-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ga-blue-600);
  background: var(--ga-blue-50);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   FEATURED CASE STUDY
   ============================================================ */
.ga-case-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.ga-case-meta {
  font-size: 14px;
  color: var(--ga-ink-600);
}

.ga-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ga-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--ga-blue-600);
  background: var(--ga-blue-50);
  border-radius: 999px;
  padding: 6px 13px;
}

.ga-case-lead {
  font-size: 16px;
  color: var(--ga-ink-600);
  max-width: 40em;
  line-height: 1.6;
}

/* ============================================================
   CASE STUDY DETAILS
   ============================================================ */
.ga-details-block + .ga-details-block {
  margin-top: 56px;
}

.ga-details-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ga-ink-600);
}

.ga-details-text p + p {
  margin-top: 12px;
}

.ga-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.ga-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ga-ink-900);
}

.ga-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ga-strategy-card,
.ga-why-card {
  background: #fff;
  border: 1px solid var(--ga-line);
  border-radius: 14px;
  padding: 22px;
}

.ga-strategy-card h4,
.ga-why-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ga-strategy-card p,
.ga-why-card p {
  font-size: 13.5px;
  color: var(--ga-ink-600);
  line-height: 1.55;
}

/* growth journey timeline */
.ga-journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.ga-journey-node {
  display: flex;
  align-items: center;
  flex: 1;
}

.ga-journey-card {
  flex: 1;
  background: var(--ga-blue-50);
  border: 1px solid #d9e6ff;
  border-radius: 12px;
  padding: 16px 18px;
}

.ga-journey-stage {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ga-blue-600);
  margin-bottom: 4px;
}

.ga-journey-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ga-navy-900);
}

.ga-journey-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  color: #9db3e0;
}

/* current engagement */
.ga-engagement-card {
  background: linear-gradient(135deg, var(--ga-navy-900), var(--ga-navy-800));
  border-radius: 18px;
  padding: 36px 34px;
  color: #fff;
}

.ga-engagement-card .ga-section-label {
  color: #8fb0ff;
}

.ga-engagement-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}

.ga-engagement-meta {
  font-size: 13px;
  color: #b7c2e0;
  margin-top: 4px;
}

.ga-engagement-body {
  font-size: 14.5px;
  color: #d6ddef;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 40em;
}

/* why us */
.ga-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

/* ============================================================
   MID-PAGE CTA BAND
   ============================================================ */
.ga-cta-band {
  background: var(--ga-blue-600);
  background: linear-gradient(120deg, var(--ga-blue-600), #1d4ed8);
  padding: 52px 0;
}

.ga-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.ga-cta-band h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ga-cta-band p {
  color: #dbe6ff;
  font-size: 14.5px;
}

/* ============================================================
   TRUST / CLOSING QUOTE
   ============================================================ */
.ga-trust-wrap {
  text-align: center;
}

.ga-trust-icon {
  color: var(--ga-blue-600);
}

.ga-trust-copy {
  max-width: 42em;
  margin: 18px auto 0;
}

.ga-trust-copy p {
  font-size: 15.5px;
  color: var(--ga-ink-600);
  line-height: 1.7;
}

.ga-trust-copy p + p {
  margin-top: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .ga-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ga-form-card {
    position: static;
  }

  .ga-hero h1 {
    font-size: 36px;
  }

  .ga-metrics-grid,
  .ga-clients-grid,
  .ga-strategy-grid,
  .ga-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ga-section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .ga-hero {
    padding: 36px 0 48px;
  }

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

  .ga-hero-lead {
    font-size: 15.5px;
  }

  .ga-proof-grid {
    grid-template-columns: 1fr;
  }

  .ga-hero-mobile-note {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ga-ink-600);
    margin-top: 26px;
  }

  .ga-form-card {
    padding: 26px 20px 22px;
    border-radius: 16px;
  }

  .ga-section {
    padding: 48px 0;
  }

  .ga-section-title {
    font-size: 26px;
  }

  .ga-metrics-band-head h2 {
    font-size: 24px;
  }

  .ga-metrics-grid,
  .ga-clients-grid,
  .ga-strategy-grid,
  .ga-why-grid,
  .ga-check-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* tighten card padding so two-up cards breathe on narrow screens */
  .ga-metric-card {
    padding: 16px 12px;
  }

  .ga-metric-value {
    font-size: 22px;
  }

  .ga-metric-label {
    font-size: 11.5px;
  }

  .ga-client-card,
  .ga-strategy-card,
  .ga-why-card {
    padding: 16px;
  }

  .ga-client-name {
    font-size: 13.5px;
  }

  .ga-client-location {
    font-size: 12px;
  }

  .ga-client-tag {
    font-size: 10px;
    padding: 3px 8px;
    margin-top: 8px;
  }

  .ga-icon-tile {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .ga-strategy-card h4,
  .ga-why-card h4 {
    font-size: 14px;
  }

  .ga-strategy-card p,
  .ga-why-card p {
    font-size: 12.5px;
  }

  .ga-check-item {
    font-size: 13px;
  }

  .ga-journey-list {
    flex-direction: column;
    align-items: stretch;
  }

  .ga-journey-node {
    flex-direction: column;
  }

  .ga-journey-arrow {
    transform: rotate(90deg);
    width: auto;
    height: 28px;
  }

  .ga-cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .ga-engagement-card {
    padding: 28px 22px;
  }
}

@media (max-width: 420px) {
  .ga-hero h1 {
    font-size: 25px;
  }

  .ga-btn-lg {
    width: 100%;
  }
}

/* ============================================================
   POST-SUBMIT CALENDLY MODAL
   ============================================================ */
body.ga-modal-open {
  overflow: hidden;
}

.ga-calendly-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.ga-calendly-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.ga-calendly-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 61, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ga-calendly-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 90px -20px rgba(10, 27, 61, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.ga-calendly-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, var(--ga-navy-900, #0a1b3d), var(--ga-navy-800, #123472));
  border-bottom: none;
  position: relative;
}

.ga-calendly-panel-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ga-blue-600, #2563eb), #60a5fa);
}

.ga-calendly-panel-head h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ga-calendly-panel-head h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ga-blue-600, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ga-calendly-panel-head p {
  font-size: 13px;
  color: #b7c2e0;
  margin: 0;
}

.ga-calendly-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.ga-calendly-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ga-calendly-body {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #fafbfd;
}

.ga-calendly-iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: none;
  display: block;
}

/* ---------- in-modal "thank you" view, shown after a booking ---------- */
.ga-calendly-thankyou {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 560px;
  padding: 40px 32px;
  background: #fff;
}

.ga-calendly-thankyou.is-visible {
  display: flex;
}

.ga-calendly-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ga-blue-50, #eef4ff);
  color: var(--ga-blue-600, #2563eb);
  margin-bottom: 18px;
}

.ga-calendly-thankyou h4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ga-navy-900, #0a1b3d);
  margin: 0 0 8px;
}

.ga-calendly-thankyou p {
  font-size: 14.5px;
  color: var(--ga-ink-600, #55607a);
  line-height: 1.6;
  max-width: 32em;
  margin: 0 0 26px;
}

@media (max-width: 640px) {
  .ga-calendly-modal {
    padding: 0;
  }

  .ga-calendly-panel {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .ga-calendly-panel-head {
    padding: 18px 16px 14px;
  }

  .ga-calendly-panel-head h3 {
    font-size: 16px;
  }

  .ga-calendly-iframe {
    min-height: 100%;
  }

  .ga-calendly-thankyou {
    min-height: 100%;
    padding: 32px 22px;
  }
}