body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
}

/* ---------- HERO ---------- */
.gwg-hero {
  padding-top: 140px;
  padding-bottom: 100px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hero-inner {
  max-width: 70%;
  margin: 0 auto;
}

.eyebrow {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.headline {
  margin-top: 10px;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.headline .highlight {
  font-weight: 700;
  color: #000;
  border-bottom: 5px solid #00ff44; /* subtle pop using your green accent */
}

.subhead {
  font-size: 2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.cta-proof {
  margin-bottom: 20px;
  text-align: center;
}

.cta-ticks {
  display: inline-flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
  color: #111;
}

.tick-icon {
  width: 16px;
  height: 16px;
  stroke: #17c964;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.btn .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease, margin-left 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background-color: #00ff44;
  border: 3px solid #000;
  color: #000;
}

.btn.secondary {
  border: 3px solid #000;
  color: #000;
  background-color: #fff;
}

.btn.secondary:hover {
  background-color: #f0f0f0;
}



.trusted-by {
  text-align: center;
  padding: 2rem 1rem;
}

.trusted-by .trusted-tagline {
  font-weight: 500;
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-row img {
  max-height: 150px;     /* This keeps logos consistently aligned by height */
  max-width: 150px;     /* Prevents overly wide logos from stretching */
  object-fit: contain;  /* Ensures logos don’t get distorted */
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.05);
  opacity: 1;
}


/* ---------- SHARED CARD STYLE ---------- */
.section-card {
  margin-top: 20px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  max-width: 1100px;
  border: 2px solid #000;
  border-radius: 12px;
  background: #fff;
}

/* ---------- SPRINT SECTION ---------- */

.sprint-section {
  /* inherits .section-card */
}

.sprint-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* standardized */
  gap: 40px;
  align-items: start;
}

/* LEFT COLUMN */
.sprint-left h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 12px 0; 
}

.sprint-left .highlight {
  color: #000;
  border-bottom: 5px solid #00ff44; /* subtle pop using your green accent */
}

.sprint-left p {
  font-size: 2rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #333;
}

/* RIGHT COLUMN */
.sprint-right {
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sprint-right h3 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.sprint-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sprint-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
}

.sprint-list .check {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
}

.sprint-list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 2rem;
}

.sprint-list p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444;
}








/* ---------- FEATURES SECTION ---------- */

.features-heading {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #111;
}

.features-subhead {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.features-section {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #111;
}

.feature-card p {
  font-size: 2rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}











/* ---------- EXPERIENCE SECTION ---------- */
.experience-heading {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  margin-top: 150px;
  margin-bottom: 60px;
  color: #111;
}

.experience-section {
  /* inherits .section-card */
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* standardized */
  gap: 40px;
  align-items: start;
}

/* Left column */
.exp-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 20px 0; 
}

.exp-intro{
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.exp-bullets {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.exp-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.exp-bullets .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Right column */
.exp-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.headshot {
  position: relative;
  display: inline-block;
}

.headshot img {
  width: 300px;
  border-radius: 12px;
  display: block;
  filter: drop-shadow(10px 34px 30px rgb(0 0 0 / 0.25))
}

.nameplate {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  width: 260px;
}

.nameplate strong {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}


/* ---------- PRICING SECTION ---------- */

.pricing-heading {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  margin-top: 150px;
  margin-bottom: 30px;
  color: #111;
}

.pricing-subhead {
  font-size: 2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}

.pricing-subhead .highlight {
  color: #000;
  border-bottom: 5px solid #00ff44; /* subtle pop using your green accent */
}

.pricing-section {
  margin-top: 20px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-card {
  border: 2px solid #000;
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  background: #f9f9ff; /* subtle highlight */
  border: 3px solid #000;
}

.pricing-label {
  display: inline-block;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: #000;
  color: #fff;
  border-radius: 6px;
}

.starts-at {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #555;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  margin: 8px 0 20px;
  color: #111;
}

.price span {
  font-size: 1.8rem;
  font-weight: 400;
  color: #333;
}

.pricing-desc {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}










/* ---------- FAQ SECTION ---------- */

.faq-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 80px 0 40px;
  color: #111;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid #000;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for text */
  padding: 20px;
  border-top: 1px solid #ddd;
}

.faq-answer p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}







/* ---------- CLOSING CTA SECTION ---------- */
.closing-cta {
  margin: 80px auto;
  max-width: 1100px;
  padding: 60px 40px;
  border: 2px solid #000;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.closing-eyebrow {
  font-size: 1rem;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.closing-headline {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

.closing-headline .highlight {
  font-weight: 700;
  color: #000;
  border-bottom: 3px solid #00ff44; /* subtle pop using your green accent */
}

.closing-subhead {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.closing-button .btn.primary {
  font-size: 1.3rem;
  padding: 16px 28px;
}

/* ---------- RESPONSIVE STYLES ---------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .headline { font-size: 5rem; }
  .subhead { font-size: 1.6rem; }

  .section-card {
    padding: 30px 30px;
  }
  .sprint-grid,
  .experience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sprint-left h2,
  .exp-title { font-size: 3rem; }

  .sprint-left p,
  .exp-intro,
  .pricing-desc,
  .feature-card p { font-size: 1.6rem; }

  .feature-card h3 { font-size: 2rem; }
  .price { font-size: 3rem; }

  .headshot img { width: 240px; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .gwg-hero {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-inner { max-width: 100%; }
  .headline { font-size: 3.5rem; }
  .subhead { font-size: 1.4rem; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  
  .section-card {
    padding: 30px 30px;
  }
  .sprint-section { margin: 40px 20px 60px; }
  .sprint-grid { grid-template-columns: 1fr; gap: 30px; }
  .sprint-right { padding-right: 0; }

  .sprint-left h2 { font-size: 3rem; }
  .sprint-left p { font-size: 1.8rem; }
  .sprint-list strong { font-size: 1.8rem; }
  .sprint-list p { font-size: 1.8rem; }

  .sprint-right h3 { font-size: 2.5rem; }

  .features-heading { font-size: 3rem; max-width: 90%; margin: 0 auto 10px auto;}
  .features-subhead { font-size: 1.4rem; max-width: 90%;}

  .feature-card { padding: 20px; }
  .feature-card h3 { font-size: 1.8rem; }
  .feature-card p { font-size: 1.8rem; }

  .experience-section { margin: 40px 20px 60px; }
  .experience-heading { font-size: 3rem; }
  .exp-title { font-size: 2.5rem; }
  .exp-intro { font-size: 1.4rem; }

  .headshot img { width: 200px; }
  .nameplate { font-size: 1rem; width: 200px; }

  .pricing-section { margin: 40px 20px 60px; }
  .pricing-heading { font-size: 3rem; }
  .pricing-label { font-size: 2rem; }
  .price { font-size: 2.8rem; }
  .pricing-desc { font-size: 1.8rem; }
  .pricing-features { font-size: 1.8rem; }

  .faq-section { margin: 40px 20px 60px; }
  .faq-question { font-size: 1.6rem; }
  .faq-answer p { font-size: 1.4rem; }

  .closing-cta { margin: 40px 20px 60px; }
  .closing-headline { font-size: 2rem; }
  .closing-subhead { font-size: 1.4rem; }
  .closing-button .btn.primary { font-size: 1.2rem; padding: 14px 20px; }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .headline { font-size: 2.8rem; }
  .subhead { font-size: 1.2rem; }
  .tick-item { font-size: 1.2rem; }
  .price { font-size: 2.2rem; }

  .section-card {
    padding: 30px 30px;
  }
  .sprint-section { margin: 40px 20px 60px; }
  .feature-card { padding: 16px; }
  .feature-card h3 { font-size: 1.6rem; }
  .feature-card p { font-size: 1.8rem; }

  .experience-section { margin: 40px 20px 60px; }
  .exp-intro { font-size: 1.8rem; }
  .exp-bullets li { font-size: 1.8rem; }

  .pricing-section { margin: 40px 20px 60px; }
  .pricing-label { font-size: 1.9rem; }
  .pricing-features li { font-size: 1.6rem; }

  .faq-section { margin: 40px 20px 60px; }
  .faq-question { font-size: 1.4rem; }
  .faq-answer p { font-size: 1.2rem; }

  .closing-cta { margin: 40px 20px 60px; }
  .closing-headline { font-size: 1.6rem; }
  .closing-subhead { font-size: 1.2rem; }
}
