@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body, html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

/* ============ HOMEPAGE HERO STAT CARDS ============ */

/* Hide the isometric background illustration */
.bg-seo .hero-img-homepage {
  background-image: none !important;
}

/* Card base styling */
.bg-seo .hero-img-homepage .card.bg-white-90alpha {
  background: #ffffff !important;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-seo .hero-img-homepage .card.bg-white-90alpha:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bg-seo .hero-img-homepage .card .card-body {
  padding: 1.5rem 1.5rem 1.4rem;
}

/* Top block layout — badge above number, no icon */
.bg-seo .hero-img-homepage .card .top-block {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0.75rem;
  margin-bottom: 0.5rem !important;
}

/* Service tag pills */
.bg-seo .hero-img-homepage .card .badge {
  position: static !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px !important;
  border-radius: 4px !important;
}

/* The big stat number */
.bg-seo .hero-img-homepage .card .h3 {
  font-size: 44px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  margin: 0 !important;
}

/* Label styling */
.bg-seo .hero-img-homepage .card p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #5a5a6a !important;
  margin: 0.75rem 0 0 !important;
}

.bg-seo .hero-img-homepage .card p b {
  color: #1a1a2e;
  font-weight: 600;
}

/* Card positioning — asymmetric stagger */
.bg-seo .hero-img-homepage .row:first-child .col-md-6:first-child {
  margin-top: 1rem !important;
}

.bg-seo .hero-img-homepage .row:first-child .col-md-5 {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

.bg-seo .hero-img-homepage .row:nth-child(2) {
  margin-top: -0.5rem !important;
}

/* CTA button improvements */
.bg-seo .hero .btn-cta {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(255, 217, 61, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bg-seo .hero .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.5);
}

.bg-seo .hero .btn-cta small {
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .bg-seo .hero-img-homepage {
    display: block !important;
    margin-top: 2rem;
  }

  .bg-seo .hero-img-homepage .card .h3 {
    font-size: 36px !important;
  }
}

/* Force desktop hero cards to hide on mobile/tablet */
@media (max-width: 991px) {
  .bg-seo .hero-img-homepage {
    display: none !important;
  }
}

/* ============ TRUST STRIP ============ */

.trust-strip {
  background: #ffffff;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.trust-strip-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a2e;
  margin: 0 0 2.5rem;
  text-transform: none;
}

.trust-strip-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trust-strip-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 80s linear infinite;
}

.trust-strip-track:hover {
  animation-play-state: paused;
}

.trust-strip-logos {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding: 0 2.25rem;
  flex-shrink: 0;
}

.trust-strip-logos img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.trust-strip-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@media (max-width: 768px) {
  .trust-strip {
    padding: 3rem 0 2.5rem;
  }
  .trust-strip-heading {
    font-size: 18px;
    margin-bottom: 1.75rem;
  }
  .trust-strip-logos {
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .trust-strip-logos img {
    height: 42px;
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* ============ PROBLEM WE SOLVE ============ */

.problem-we-solve {
  background: #f6f7f9;
  padding: 5rem 0;
}

/* Headline wrapper — centered */
.problem-headline-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.problem-heading {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.problem-heading-highlight {
  position: relative;
  display: inline-block;
  color: #1a4fd6;
  white-space: nowrap;
}

.problem-heading-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 8px;
  background: rgba(26, 79, 214, 0.18);
  z-index: -1;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: highlight-sweep 0.8s ease-out 0.4s forwards;
}

@keyframes highlight-sweep {
  to {
    transform: scaleX(1);
  }
}

.problem-heading-qualifier {
  font-size: 18px;
  font-weight: 400;
  color: #6a6a7a;
  margin: 0;
  font-style: italic;
}

/* Body copy — centered */
.problem-body {
  margin: 0 auto 3.5rem;
  max-width: 780px;
  text-align: center;
}

.problem-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a4a;
  margin: 0 0 1.25rem;
}

.problem-body p:last-child {
  margin-bottom: 0;
}

/* Cards intro — centered */
.problem-cards-intro {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6a6a7a;
  margin: 0 0 1.5rem;
  text-align: center;
}

/* Cards grid */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  border-top: 4px solid;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-card-seo {
  border-top-color: #1a4fd6;
}

.problem-card-ppc {
  border-top-color: #1d9e75;
}

.problem-card-affiliates {
  border-top-color: #6c5ce7;
}

.problem-card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

.problem-card-seo .problem-card-tag {
  background: #E6F1FB;
  color: #0C447C;
}

.problem-card-ppc .problem-card-tag {
  background: #DFF5E5;
  color: #0F6E2E;
}

.problem-card-affiliates .problem-card-tag {
  background: #EEEDFE;
  color: #3C3489;
}

.problem-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #6a6a7a;
  margin: 0;
  letter-spacing: 0.01em;
}

.problem-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-card-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a3a;
  padding-left: 1.5rem;
  position: relative;
}

.problem-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.problem-card-seo .problem-card-list li::before {
  background: #1a4fd6;
}

.problem-card-ppc .problem-card-list li::before {
  background: #1d9e75;
}

.problem-card-affiliates .problem-card-list li::before {
  background: #6c5ce7;
}

.problem-transition {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a2e;
  margin: 0;
  text-align: center;
  font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .problem-we-solve {
    padding: 3.5rem 0;
  }

  .problem-heading {
    font-size: 26px;
  }

  .problem-heading-qualifier {
    font-size: 16px;
  }

  .problem-headline-wrap {
    margin-bottom: 2rem;
  }

  .problem-body p {
    font-size: 15px;
  }

  .problem-body {
    margin-bottom: 2.5rem;
  }

  .problem-heading-highlight {
    white-space: normal;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .problem-card {
    padding: 1.5rem;
  }

  .problem-transition {
    font-size: 16px;
  }
}

/* ============ CLIENT TESTIMONIALS ============ */

.gd-testimonials-section {
  background: #ffffff;
  padding: 5rem 0 5.5rem;
}

.gd-testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.gd-testimonials-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a4fd6;
  margin: 0 0 1rem;
}

.gd-testimonials-h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.gd-testimonials-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #5a5a6a;
  margin: 0;
}

/* Masonry — CSS columns */
.gd-testimonials-masonry {
  column-count: 2;
  column-gap: 1.5rem;
}

.gd-testimonial-card {
  background: #ffffff;
  border: 1px solid #e8e9ed;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gd-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-color: #d8d9dd;
}

.gd-testimonial-card-featured {
  background: #1a3fe3;
  border-color: #1a3fe3;
  padding: 2.25rem;
}

.gd-testimonial-card-featured:hover {
  border-color: #1a3fe3;
  box-shadow: 0 8px 28px rgba(26, 63, 227, 0.3);
}

.gd-testimonial-card-compact {
  padding: 1.5rem;
}

.gd-testimonial-mark {
  display: flex;
  align-items: flex-start;
}

.gd-testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  quotes: none;
}

.gd-testimonial-card-featured .gd-testimonial-quote {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.55;
}

.gd-testimonial-card-compact .gd-testimonial-quote {
  font-size: 15px;
}

/* Stat block (only on featured cards with stats) */
.gd-testimonial-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #FBBF24;
  border-radius: 4px;
}

.gd-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #FBBF24;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.gd-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-weight: 500;
}

.gd-testimonial-rating {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #FBBF24;
  line-height: 1;
}

.gd-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e8e9ed;
}

.gd-testimonial-card-featured .gd-testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.gd-testimonial-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #f6f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}

.gd-testimonial-card-featured .gd-testimonial-logo {
  background: rgba(255, 255, 255, 0.95);
}

.gd-testimonial-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gd-testimonial-attribution {
  flex: 1;
  min-width: 0;
}

.gd-testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px;
  line-height: 1.3;
}

.gd-testimonial-card-featured .gd-testimonial-name {
  color: #ffffff;
}

.gd-testimonial-role {
  font-size: 13px;
  color: #6a6a7a;
  margin: 0;
  line-height: 1.4;
}

.gd-testimonial-card-featured .gd-testimonial-role {
  color: rgba(255, 255, 255, 0.75);
}

/* Stat block for standard (white) testimonial cards */
.gd-testimonial-stat-light {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: #f6f7f9;
  border-left: 3px solid #FBBF24;
  border-radius: 4px;
}

.gd-stat-value-light {
  font-size: 32px;
  font-weight: 700;
  color: #1a4fd6;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.gd-stat-label-light {
  font-size: 13px;
  color: #4a4a5a;
  line-height: 1.4;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .gd-testimonials-section {
    padding: 3.5rem 0 4rem;
  }

  .gd-testimonials-header {
    margin-bottom: 2.5rem;
  }

  .gd-testimonials-h2 {
    font-size: 26px;
  }

  .gd-testimonials-sub {
    font-size: 15px;
  }

  .gd-testimonials-masonry {
    column-count: 1;
  }

  .gd-testimonial-card {
    padding: 1.5rem;
  }

  .gd-testimonial-card-featured {
    padding: 1.75rem;
  }

  .gd-testimonial-card-featured .gd-testimonial-quote {
    font-size: 16px;
  }

  .gd-stat-value {
    font-size: 28px;
  }
}

/* ============ CASE STUDIES ============ */

.gd-cases-section {
  background: #f6f7f9;
  padding: 5rem 0;
}

.gd-cases-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gd-cases-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #1a4fd6;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
}

.gd-cases-h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.gd-cases-h2-accent {
  font-style: italic;
  font-weight: 600;
  color: #1a4fd6;
}

.gd-cases-sub {
  font-size: 17px;
  color: #5a5a6a;
  line-height: 1.65;
  margin: 0;
}

.gd-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gd-case-card {
  background: #ffffff;
  border: 1px solid #e8e9ed;
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gd-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Service-specific hover borders */
.gd-case-seo:hover {
  border-color: #1a4fd6;
  box-shadow: 0 16px 36px rgba(26, 79, 214, 0.15);
}

.gd-case-ppc:hover {
  border-color: #1d9e75;
  box-shadow: 0 16px 36px rgba(29, 158, 117, 0.15);
}

.gd-case-affiliate:hover {
  border-color: #6c5ce7;
  box-shadow: 0 16px 36px rgba(108, 92, 231, 0.15);
}

/* Featured card — gradient based on service colour */
.gd-case-featured {
  border: none;
  color: #ffffff;
}

.gd-case-featured.gd-case-ppc {
  background: linear-gradient(135deg, #1d9e75 0%, #167e5e 100%);
}

.gd-case-featured.gd-case-seo {
  background: linear-gradient(135deg, #1a4fd6 0%, #1340af 100%);
}

.gd-case-featured.gd-case-affiliate {
  background: linear-gradient(135deg, #6c5ce7 0%, #5848c2 100%);
}

.gd-case-featured.gd-case-ppc:hover {
  box-shadow: 0 20px 44px rgba(29, 158, 117, 0.35);
}

.gd-case-featured.gd-case-seo:hover {
  box-shadow: 0 20px 44px rgba(26, 79, 214, 0.35);
}

.gd-case-featured.gd-case-affiliate:hover {
  box-shadow: 0 20px 44px rgba(108, 92, 231, 0.35);
}

/* Top section — logo + service tag */
.gd-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  min-height: 48px;
}

.gd-case-logo {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 32px;
}

.gd-case-logo img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gd-case-featured .gd-case-logo {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  height: auto;
  align-self: flex-start;
}

.gd-case-featured .gd-case-logo img {
  max-height: 32px;
  max-width: 140px;
}

/* Service tags */
.gd-case-tag {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.gd-case-seo .gd-case-tag {
  background: #E6F1FB;
  color: #0C447C;
}

.gd-case-ppc .gd-case-tag {
  background: #DFF5E5;
  color: #0F6E2E;
}

.gd-case-affiliate .gd-case-tag {
  background: #EEEDFE;
  color: #3C3489;
}

.gd-case-featured .gd-case-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Hero stat block */
.gd-case-hero {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8e9ed;
}

.gd-case-featured .gd-case-hero {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.gd-case-hero-stat {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.gd-case-seo .gd-case-hero-stat {
  color: #1a4fd6;
}

.gd-case-ppc .gd-case-hero-stat {
  color: #1d9e75;
}

.gd-case-affiliate .gd-case-hero-stat {
  color: #6c5ce7;
}

.gd-case-featured .gd-case-hero-stat {
  color: #FBBF24;
}

.gd-case-hero-label {
  font-size: 13px;
  color: #6a6a7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.gd-case-featured .gd-case-hero-label {
  color: rgba(255, 255, 255, 0.75);
}

/* Supporting stats list */
.gd-case-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.gd-case-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gd-case-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.gd-case-featured .gd-case-stat-value {
  color: #ffffff;
}

.gd-case-stat-label {
  font-size: 13px;
  color: #4a4a5a;
  line-height: 1.5;
}

.gd-case-featured .gd-case-stat-label {
  color: rgba(255, 255, 255, 0.78);
}

/* Outcome line */
.gd-case-outcome {
  font-size: 14px;
  color: #4a4a5a;
  line-height: 1.55;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #e8e9ed;
  font-style: italic;
}

.gd-case-featured .gd-case-outcome {
  color: rgba(255, 255, 255, 0.85);
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Footnote */
.gd-cases-footnote {
  text-align: center;
  font-size: 14px;
  color: #5a5a6a;
  margin: 0;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .gd-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gd-cases-section {
    padding: 3.5rem 0;
  }

  .gd-cases-h2 {
    font-size: 26px;
  }

  .gd-cases-sub {
    font-size: 15px;
  }

  .gd-case-hero-stat {
    font-size: 36px;
  }
}

/* ============ HOW WE'RE DIFFERENT (PILLARS) ============ */

.gd-pillars-section {
  background: #ffffff;
  padding: 5rem 0;
}

.gd-pillars-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gd-pillars-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #1a4fd6;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
}

.gd-pillars-h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.gd-pillars-h2-accent {
  font-style: italic;
  font-weight: 600;
  color: #1a4fd6;
}

.gd-pillars-sub {
  font-size: 17px;
  color: #5a5a6a;
  line-height: 1.65;
  margin: 0;
}

/* 2x2 grid */
.gd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gd-pillar-card {
  background: #f6f7f9;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gd-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #1a4fd6;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease;
}

.gd-pillar-card:hover {
  transform: translateY(-3px);
  border-color: #d8d9dd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gd-pillar-card:hover::before {
  transform: scaleY(1);
}

.gd-pillar-number {
  font-size: 13px;
  font-weight: 600;
  color: #1a4fd6;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.gd-pillar-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.gd-pillar-body {
  font-size: 15px;
  line-height: 1.65;
  color: #4a4a5a;
  margin: 0;
}

.gd-pillar-body strong {
  color: #1a1a2e;
  font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .gd-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .gd-pillars-section {
    padding: 3.5rem 0;
  }

  .gd-pillars-h2 {
    font-size: 26px;
  }

  .gd-pillars-sub {
    font-size: 15px;
  }

  .gd-pillar-card {
    padding: 1.75rem 1.5rem;
  }

  .gd-pillar-title {
    font-size: 18px;
  }

  .gd-pillar-body {
    font-size: 14px;
  }
}

/* ============ DIAGNOSTIC TOOL CTA STRIP ============ */

section.gd-diagnostic-strip,
.gd-diagnostic-strip {
  background: linear-gradient(135deg, #1a3fe3 0%, #1340af 100%) !important;
  background-image: linear-gradient(135deg, #1a3fe3 0%, #1340af 100%) !important;
  padding: 4rem 0 !important;
  position: relative;
  overflow: hidden;
}

.gd-diagnostic-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gd-diagnostic-strip::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gd-diagnostic-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gd-diagnostic-strip .gd-diagnostic-strip-title,
.gd-diagnostic-strip h2.gd-diagnostic-strip-title {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1rem !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

.gd-diagnostic-strip .gd-diagnostic-strip-body,
.gd-diagnostic-strip p.gd-diagnostic-strip-body {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.gd-diagnostic-strip-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.gd-diagnostic-strip .gd-diagnostic-strip-cta {
  display: inline-block;
  background: #FBBF24;
  color: #1a1a2e !important;
  font-size: 15px;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}

.gd-diagnostic-strip .gd-diagnostic-strip-cta:hover {
  background: #F5A623;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
  color: #1a1a2e !important;
  text-decoration: none;
}

.gd-diagnostic-strip .gd-diagnostic-strip-microcopy {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
  font-style: italic !important;
}

/* Mobile */
@media (max-width: 768px) {
  .gd-diagnostic-strip {
    padding: 3rem 0;
  }

  .gd-diagnostic-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gd-diagnostic-strip .gd-diagnostic-strip-title,
  .gd-diagnostic-strip h2.gd-diagnostic-strip-title {
    font-size: 22px !important;
  }

  .gd-diagnostic-strip .gd-diagnostic-strip-body,
  .gd-diagnostic-strip p.gd-diagnostic-strip-body {
    font-size: 15px !important;
  }

  .gd-diagnostic-strip-action {
    align-items: stretch;
  }

  .gd-diagnostic-strip .gd-diagnostic-strip-cta {
    text-align: center;
  }
}

/* ============ FINAL CTA — hover states & mobile ============ */

.gd-final-cta-button:hover {
  background: #F5A623 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4) !important;
  color: #1a1a2e !important;
  text-decoration: none !important;
}

.gd-final-cta-phone:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  text-decoration: none !important;
}

.gd-final-cta-phone svg {
  color: #FBBF24;
}

@media (max-width: 768px) {
  .gd-final-cta {
    padding: 4rem 0 3.5rem !important;
  }

  .gd-final-cta-heading {
    font-size: 26px !important;
  }

  .gd-final-cta-sub {
    font-size: 15px !important;
    margin-bottom: 2rem !important;
  }

  .gd-final-cta-button {
    width: 100%;
    padding: 1rem 1.5rem !important;
    font-size: 15px !important;
  }

  .gd-final-cta-phone-wrap {
    margin-top: 1.25rem !important;
  }

  .gd-final-cta-phone {
    font-size: 14px !important;
    flex-wrap: nowrap !important;
  }
}