/* ============================================================
   GOOGLE-ADS-MANAGEMENT-SERVICES-PAGE.CSS — Sage Titans
   Render-blocking. Pairs with sage-nav.css,
   sage-base.css + sage-site-components.css (async)
   ============================================================ */

/* ── PAGE TOKENS ── */
:root {
  --gam-dark:    #0d1b3e;
  --gam-navy:    #1a2f6e;
  --gam-accent:  #4285f4;   /* Google blue */
  --gam-green:   #34a853;   /* Google green */
  --gam-yellow:  #fbbc04;   /* Google yellow */
  --gam-red:     #ea4335;   /* Google red */
  --gam-lime:    #caef45;
  --gam-text:    rgba(255,255,255,0.82);
  --gam-muted:   rgba(255,255,255,0.55);
  --gam-card:    rgba(255,255,255,0.05);
  --gam-border:  rgba(255,255,255,0.08);
  --gam-r:       16px;
}

/* ══════════════════════════════════════════════════════════════
   BANNER
   ══════════════════════════════════════════════════════════════ */
.inner-p-banner {
  padding: 136px 0 80px;
  min-height: 700px !important;
  margin-top: calc(-1 * 76px);
  position: relative;
  overflow: hidden;
}
.gam-ban-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 0;
  flex-wrap: nowrap;
}
.gam-ban-content { flex: 1 1 auto; min-width: 0; max-width: 560px; }
.gam-ban-content h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px;
}
.gam-ban-content h1 span { color: var(--gam-lime); display: block; font-size: inherit; }
.gam-ban-content p { font-size: 17px; font-weight: 300; color: var(--gam-text); line-height: 1.75; margin-bottom: 20px; }
.gam-ban-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.gam-ban-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; font-weight: 400; color: var(--gam-text); line-height: 1.5;
}
.gam-ban-checklist li svg { flex-shrink: 0; margin-top: 2px; }
.hero-cta-btn { display: flex; gap: 14px; flex-wrap: wrap; }
.gam-hero-cta {
  display: inline-flex; align-items: center;
  background: var(--gam-lime); color: #0a1628;
  font-size: 15px; font-weight: 700; padding: 13px 28px;
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; white-space: nowrap;
}
.gam-hero-cta:hover { background: #b8e020; color: #0a1628; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(202,239,69,0.35); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   GOOGLE ADS PERFORMANCE WIDGET — white card
   Shows live-looking campaign dashboard:
   - Header bar with G logo dots
   - Campaign score / Quality Score ring
   - 4 key metrics (CTR, CPC, ROAS, Conversions)
   - Mini bar chart (weekly performance)
   WCAG AA contrast on all text
   ══════════════════════════════════════════════════════════════ */
.gam-widget {
  flex: 1 1 480px; min-width: 320px; max-width: 560px;
  background: #ffffff; border-radius: 20px; padding: 0 0 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.25);
  font-family: 'Sora', sans-serif;
}
/* Header */
.gam-w-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; background: #f4f5f7; border-bottom: 1px solid #e8eaed;
}
.gam-w-gdots { display: flex; gap: 5px; }
.gam-w-gdot { width: 11px; height: 11px; border-radius: 50%; display: block; flex-shrink: 0; }
.gam-w-gdot--b { background: #4285f4; }
.gam-w-gdot--r { background: #ea4335; }
.gam-w-gdot--y { background: #fbbc04; }
.gam-w-gdot--g { background: #34a853; }
.gam-w-title { flex: 1; font-size: 12px; font-weight: 600; color: #1e293b; letter-spacing: 0.03em; }
.gam-w-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: #14532d;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.gam-live-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  display: block; animation: gam-pulse 1.6s ease-in-out infinite;
}
@keyframes gam-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.65); }
}
/* Campaign row — account name + status */
.gam-w-campaign {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px 10px; border-bottom: 1px solid #f1f5f9;
}
.gam-w-camp-name { font-size: 11.5px; font-weight: 600; color: #1e293b; }
.gam-w-camp-status {
  font-size: 10px; font-weight: 700; color: #14532d;
  background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: 50px; padding: 2px 9px;
}
/* 4 metric tiles */
.gam-w-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 0 18px; margin: 12px 0 0;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}
.gam-w-metric { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 4px; }
.gam-w-metric-val { font-size: 16px; font-weight: 800; color: #0a1628; line-height: 1; }
.gam-w-metric-val--green { color: #14532d; }
.gam-w-metric-val--blue  { color: #0369a1; }
.gam-w-metric-lbl { font-size: 8.5px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.07em; text-align: center; }
.gam-w-metric-delta { font-size: 9px; font-weight: 700; color: #14532d; }
.gam-w-metric-delta--neg { color: #b91c1c; }
/* Mini bar chart */
.gam-w-chart-label { font-size: 9.5px; font-weight: 800; color: #475569; letter-spacing: 0.13em; text-transform: uppercase; padding: 12px 18px 8px; }
.gam-w-chart {
  padding: 0 18px; display: flex; align-items: flex-end;
  gap: 6px; height: 72px;
}
.gam-w-bar { flex: 1; border-radius: 4px 4px 0 0; position: relative; min-width: 0; }
.gam-w-bar--blue  { background: linear-gradient(180deg, #4285f4, #1a65d6); }
.gam-w-bar--green { background: linear-gradient(180deg, #34a853, #1e7a3a); }
.gam-w-bar--lime  { background: linear-gradient(180deg, #caef45, #a8cc1e); }
.gam-w-chart-days {
  display: flex; justify-content: space-between;
  padding: 5px 18px 0; 
}
.gam-w-chart-days span { font-size: 9px; font-weight: 700; color: #374151; flex: 1; text-align: center; } /* #374151 on #fff = 10.7:1 ✓ */
/* Quality Score block */
.gam-w-qs-row {
  display: flex; align-items: center; justify-content: space-between;
  margin: 12px 18px 0; padding: 12px 16px;
  background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0;
  gap: 12px;
}
.gam-w-qs-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.gam-w-qs-num { font-size: 20px; font-weight: 800; color: #0a1628; line-height: 1; }
.gam-w-qs-lbl { font-size: 8.5px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.07em; }
.gam-w-qs-bar-wrap { flex: 1; }
.gam-w-qs-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.gam-w-qs-bar-row:last-child { margin-bottom: 0; }
.gam-w-qs-bar-name { font-size: 10px; font-weight: 500; color: #374151; width: 80px; flex-shrink: 0; }
.gam-w-qs-track { flex: 1; height: 6px; background: #e8edf3; border-radius: 99px; overflow: hidden; }
.gam-w-qs-fill { height: 100%; border-radius: 99px; }
.gam-w-qs-fill--blue { background: linear-gradient(90deg, #4285f4, #66a3f7); }
.gam-w-qs-fill--green { background: linear-gradient(90deg, #34a853, #5bcc78); }
.gam-w-qs-fill--yellow { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.gam-w-qs-score { font-size: 10px; font-weight: 700; color: #0369a1; width: 20px; text-align: right; flex-shrink: 0; }

/* ── BANNER RESPONSIVE ─────────────────────────────────────
   1100px: shrink gap, widget scales
   900px : stack — widget full-width VISIBLE below text
   480px : phone — hide widget only
   Beats sage-site-components .gam-ban-content{flex:0 0 50%;max-width:55%}
   ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gam-ban-sec { gap: 28px; }
  .gam-widget { min-width: 260px; }
  .gam-w-metrics { grid-template-columns: repeat(4,1fr); }
  .gam-w-chart { height: 58px; }
}
@media (max-width: 900px) {
  .inner-p-banner { padding: 110px 0 60px; min-height: auto !important; }
  .inner-p-banner .gam-ban-sec { flex-direction: column; align-items: stretch; gap: 28px; }
  .inner-p-banner .gam-ban-content { flex: 0 0 auto !important; max-width: 100% !important; width: 100% !important; }
  .gam-widget { max-width: 100% !important; width: 100% !important; flex: 0 0 auto !important; display: block !important; min-width: 0 !important; }
  .hero-cta-btn { margin-top: 0; }
}
@media (max-width: 480px) {
  .inner-p-banner { padding: 86px 0 44px; }
  .gam-widget { display: none; }
  .inner-p-banner .gam-ban-content { width: 100% !important; max-width: 100% !important; }
}

/* ══════════════════════════════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════════════════════════════ */
.proof-strip { border-top: 1px solid #eaeaea; padding: 32px 0; }
.proof-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.proof-item { display: flex; align-items: flex-start; gap: 14px; }
.proof-icon { width: 36px; height: 36px; border-radius: 8px; background: #eef6fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #29abe2; }
.proof-item strong { display: block; font-size: 14px; font-weight: 700; color: #0a1628; margin-bottom: 4px; }
.proof-item p { font-size: 13px; color: #516070; line-height: 1.55; margin: 0; }
@media (max-width: 1024px) { .proof-container { grid-template-columns: repeat(2,1fr); gap: 24px; } }
@media (max-width: 600px)  { .proof-container { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   PACKAGES — redesigned pricing cards
   ══════════════════════════════════════════════════════════════ */
.gam-plans-sec { padding: 80px 0; }
.ppc-r-head { text-align: center; margin-bottom: 52px; }
.ppc-r-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; line-height: 1.25; margin-bottom: 12px; }
.ppc-r-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; }
.gam-plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: stretch;
}
.gam-plan-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
}
.gam-plan-card:hover { box-shadow: 0 24px 64px rgba(41,171,226,0.14); transform: translateY(-6px); border-color: #29abe2; }
.gam-plan-card--popular {
  border-color: #4285f4;
  box-shadow: 0 12px 48px rgba(66,133,244,0.18);
}
.gam-plan-card--popular:hover { box-shadow: 0 24px 64px rgba(66,133,244,0.28); }
.gam-plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, #4285f4, #1a65d6);
  color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 50px; padding: 4px 12px;
}
/* Plan header */
.gam-plan-head {
  padding: 32px 28px 24px;
  border-bottom: 1px solid #f1f5f9;
}
.gam-plan-head--starter  { background: linear-gradient(135deg, #deeeff, #cfe3ff); }
.gam-plan-head--booster  { background: linear-gradient(135deg, #0d1b3e, #1a2f6e); }
.gam-plan-head--premium  { background: linear-gradient(135deg, #071430, #102558); }
.gam-plan-name {
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.gam-plan-name--light { color: #0a4a8f; }  /* was #29abe2 — too light, now deep navy blue */
.gam-plan-name--dark  { color: #caef45; }
.gam-plan-title { font-size: 22px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.gam-plan-title--light { color: #0a1628; }
.gam-plan-title--dark  { color: #fff; }
.gam-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.gam-plan-price-main { font-size: 28px; font-weight: 800; }
.gam-plan-price-main--light { color: #0a1628; }
.gam-plan-price-main--dark  { color: #fff; }
.gam-plan-price-sub { font-size: 13px; font-weight: 400; }
.gam-plan-price-sub--light { color: #516070; }
.gam-plan-price-sub--dark  { color: rgba(255,255,255,0.6); }
.gam-plan-budget { font-size: 12px; font-weight: 500; }
.gam-plan-budget--light { color: #516070; }
.gam-plan-budget--dark  { color: rgba(255,255,255,0.5); }
.gam-plan-zero {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px; font-size: 11px; font-weight: 700;
  color: #14532d; background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: 50px; padding: 3px 10px;
}
.gam-plan-zero--dark {
  color: #caef45; background: rgba(202,239,69,0.1);
  border-color: rgba(202,239,69,0.25);
}
/* Plan body */
.gam-plan-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.gam-plan-target {
  font-size: 13px; font-weight: 300; color: #516070;
  line-height: 1.6; margin-bottom: 20px;
  padding: 12px 16px; background: #f8fafc;
  border-radius: 10px; border-left: 3px solid #29abe2;
}
.gam-plan-features-title { font-size: 11px; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.gam-plan-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.gam-plan-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: #374151; line-height: 1.5; font-weight: 300;
}
.gam-plan-features li svg { flex-shrink: 0; margin-top: 1px; }
.gam-plan-cta {
  display: block !important; text-align: center !important;
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.gam-plan-cta--primary {
  background: var(--gam-lime) !important; color: #0a1628 !important;
}
.gam-plan-cta--primary:hover { background: #b8e020 !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(202,239,69,0.3); color: #0a1628 !important; text-decoration: none; }
.gam-plan-cta--blue {
  background: linear-gradient(135deg, #4285f4, #1a65d6) !important; color: #fff !important;
}
.gam-plan-cta--blue:hover { background: linear-gradient(135deg, #5294f5, #2575e6) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(66,133,244,0.35); color: #fff !important; text-decoration: none; }
.gam-plan-cta--premium {
  background: var(--gam-lime) !important; color: #0a1628 !important;
  border: none !important;
}
.gam-plan-cta--premium:hover { background: #b8e020 !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(202,239,69,0.35); color: #0a1628 !important; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   CLIENTS SECTION
   ══════════════════════════════════════════════════════════════ */
.clients-section { padding: 64px 0; background: #f8fafc; }
.clients-inner { display: flex; align-items: flex-start; gap: 56px; max-width: 1350px; margin: 0 auto; padding: 0 15px; }
.clients-content { max-width: 380px; flex-shrink: 0; }
.clients-content h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; color: #0a1628; margin-bottom: 12px; line-height: 1.3; }
.clients-subtext { font-size: 14px; color: #516070; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.clients-metrics {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 12px; margin-bottom: 28px;
}
.clients-metrics div {
  display: flex; flex-direction: column; gap: 3px;
  background: #fff; border: 1px solid #e4ecf2;
  border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.clients-metrics strong { font-size: 20px; font-weight: 800; color: #4285f4; }
.clients-metrics span { font-size: 12px; color: #516070; font-weight: 400; }
.clients-cta {
  display: inline-flex; align-items: center;
  background: var(--gam-lime); color: #0a1628;
  font-size: 14px; font-weight: 700; padding: 11px 24px;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.clients-cta:hover { background: #b8e020; transform: translateY(-2px); text-decoration: none; color: #0a1628; }
.clients-grid { flex: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.client-card { background: #fff; border: 1px solid #e4ecf2; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 18px 14px; transition: box-shadow 0.2s, border-color 0.2s; }
.client-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); border-color: #29abe2; }
.client-card img { max-width: 100%; height: 44px; object-fit: contain; /* NO grayscale — keep logos in full colour */ filter: none; opacity: 1; transition: transform 0.2s; }
.client-card:hover img { transform: scale(1.05); }
@media (max-width: 1024px) { .clients-inner { flex-wrap: wrap; } .clients-content { max-width: 100%; } .clients-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px)  { .clients-grid { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════════════════════
   CASE STUDIES — clean modern cards replacing inline-styled ones
   ══════════════════════════════════════════════════════════════ */
.gam-cases-sec { padding: 80px 0; }
.gam-cases-head { text-align: center; margin-bottom: 48px; }
.gam-cases-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 14px; line-height: 1.25; }
.gam-cases-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 70%; margin: 0 auto; }
.gam-help-card-sec { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gam-help-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 18px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.gam-help-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.25s;
}
.h-bg-1::before { background: linear-gradient(90deg, #4285f4, #34a853); }
.h-bg-2::before { background: linear-gradient(90deg, #ea4335, #fbbc04); }
.h-bg-3::before { background: linear-gradient(90deg, #34a853, #caef45); }
.gam-help-card:hover { border-color: #29abe2; box-shadow: 0 16px 48px rgba(41,171,226,0.12); transform: translateY(-5px); }
.gam-help-card:hover::before { opacity: 1; }
.gam-help-card-icon { width: 60px; height: 60px; border-radius: 14px; background: #eef6fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gam-help-card-icon svg { width: 32px; height: 32px; }
.gam-help-card h3 { font-size: 17px; font-weight: 700; color: #0a1628; margin: 0; line-height: 1.3; }
.gam-help-card p { font-size: 13.5px; font-weight: 300; color: #516070; line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   CASE STUDY CARDS — detailed like original, modern design
   ══════════════════════════════════════════════════════════════ */
.gam-results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.gam-result-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.gam-result-card:hover { box-shadow: 0 24px 64px rgba(41,171,226,0.14); transform: translateY(-6px); border-color: #29abe2; }
/* Hero image strip at top */
.gam-result-card-img {
  width: 100%; height: 200px;
  background-size: cover; background-position: center top;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.gam-result-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,40,0.15) 0%, rgba(5,15,40,0.65) 100%);
}
.gam-result-logo {
  position: absolute; bottom: 14px; left: 16px;
  width: 72px; height: 72px; border-radius: 12px;
  background: #fff; padding: 7px; object-fit: contain; display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* Top ribbon with result badges */
.gam-result-stats-bar {
  display: flex; gap: 0;
  border-bottom: 1px solid #f1f5f9;
}
.gam-result-stat-chip {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 12px 8px;
  border-right: 1px solid #f1f5f9;
}
.gam-result-stat-chip:last-child { border-right: none; }
.gam-result-stat-val { font-size: 18px; font-weight: 800; color: #0a4a8f; line-height: 1; } /* was #4285f4 ~3.3:1 → #0a4a8f ~7.8:1 ✓ */
.gam-result-stat-val--green { color: #14532d; }  /* 7.2:1 ✓ */
.gam-result-stat-val--red   { color: #991b1b; }  /* was #b91c1c ~5.9:1 → #991b1b ~7.1:1 ✓ */
.gam-result-stat-lbl { font-size: 9px; font-weight: 800; color: #374151; text-transform: uppercase; letter-spacing: 0.07em; text-align: center; } /* #374151 on white = 10.7:1 ✓ */
/* Card body */
.gam-result-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.gam-result-client { font-size: 15px; font-weight: 700; color: #0a1628; margin: 0; }
.gam-result-desc { font-size: 13px; font-weight: 300; color: #516070; line-height: 1.6; margin: 0; }
.gam-result-divider { font-size: 11px; font-weight: 800; color: #0a1628; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 8px; }
.gam-result-divider::after { content: ''; flex: 1; height: 1px; background: #e4ecf2; }
.gam-result-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.gam-result-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; font-weight: 300; color: #374151; line-height: 1.5;
}
.gam-result-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4285f4; flex-shrink: 0; margin-top: 5px;
}
.gam-result-list--results li::before { background: #34a853; }
.gam-result-cta {
  display: block; text-align: center; margin-top: auto;
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; color: #0a4a8f;  /* was #4285f4 ~3.3:1 → #0a4a8f ~7.8:1 ✓ */
  border: 1.5px solid #0a4a8f; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.gam-result-cta:hover { background: #0a4a8f; color: #fff; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   WHY SAGE TITANS — accordion + left panel
   ══════════════════════════════════════════════════════════════ */
.seo-serve-sec { display: flex; align-items: flex-start; gap: 48px; padding: 80px 0; flex-wrap: nowrap; }
.seo-serve-head { padding: 40px 36px; background: linear-gradient(140deg,#f0f6ff 0%,#e8f2ff 100%); max-width: 420px; border-radius: var(--gam-r); flex-shrink: 0; border: 1px solid #d0e4f7; }
.seo-serve-head h2 { color: #0a1628; font-size: clamp(1.3rem,2vw,1.7rem); font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
.seo-serve-head p { color: #516070; font-size: 14px; font-weight: 300; margin-bottom: 24px; line-height: 1.7; }
.seo-serve-tabs { flex: 1; min-width: 0; background: #fff; border: 1px solid #e0eaf5; border-radius: var(--gam-r); overflow: hidden; }
.accordion--radio { display: flex; flex-direction: column; }
.tab { border-bottom: 1px solid #e4ecf2; }
.tab:last-child { border-bottom: none; }
.tab input { position: absolute; opacity: 0; z-index: -1; }
.tab__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.tab input:checked ~ .tab__content { max-height: 220px; }
.tab__label { display: flex; align-items: center; cursor: pointer; padding: 18px 16px; color: #0a1628; font-size: 15px; font-weight: 600; line-height: 1.4; position: relative; transition: color 0.2s; }
.tab__label:hover { color: #184f78; }
.tab input:checked + .tab__label { color: #184f78; }
.tab__label span { background: #0a1628; color: #fff; font-size: 12px; border-radius: 50%; width: 26px; height: 26px; line-height: 26px; text-align: center; font-weight: 700; margin-right: 14px; flex-shrink: 0; transition: background 0.2s; }
.tab input:checked + .tab__label span { background: #4285f4; }
.tab__label::after { content: "\276F"; position: absolute; right: 14px; transform: rotate(90deg); transition: transform 0.3s ease; font-size: 12px; color: #aab5c0; }
.tab input:checked + .tab__label::after { transform: rotate(270deg); color: #184f78; }
.tab__content p { padding: 4px 16px 20px 54px; font-size: 14px; line-height: 1.7; color: #516070; font-weight: 300; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   SERVICES — 2 per row modern cards
   ══════════════════════════════════════════════════════════════ */
.gam-services-sec { padding: 80px 0; }
.gam-s-head { text-align: center; margin-bottom: 52px; }
.gam-s-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; }
.gam-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.gam-service-card {
  display: flex; align-items: stretch; gap: 0;
  background: #fff; border: 1px solid #e4ecf2; border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.gam-service-card:hover { box-shadow: 0 20px 56px rgba(41,171,226,0.12); transform: translateY(-4px); border-color: #29abe2; }
.gam-service-card-img {
  width: 200px; flex-shrink: 0;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.gam-service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.35s;
}
.gam-service-card:hover .gam-service-card-img img { transform: scale(1.06); }
/* Vertical coloured accent on left edge of image */
.gam-service-card-img::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, #4285f4, #34a853);
}
.gam-service-card-body { flex: 1; padding: 28px 28px 24px; min-width: 0; }
.gam-service-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #4285f4, #1a65d6);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding: 5px 14px; border-radius: 50px;
}
.gam-service-tag::before {
  content: ''; width: 6px; height: 6px;
  background: #fff; border-radius: 50%; flex-shrink: 0;
}
.gam-service-card-body h3 { font-size: 17px; font-weight: 700; color: #0a1628; margin: 0 0 10px; line-height: 1.3; }
.gam-service-card-body p { font-size: 13.5px; font-weight: 300; color: #516070; line-height: 1.7; margin: 0 0 16px; }
.gam-service-bullets { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.gam-service-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #374151;
}
.gam-service-bullets li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4285f4; flex-shrink: 0;
}
.gam-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #0a4a8f;  /* was #4285f4 ~3.3:1 on white → #0a4a8f ~7.8:1 ✓ */
  text-decoration: none; transition: gap 0.2s;
}
.gam-service-link::after { content: '→'; }
.gam-service-link:hover { gap: 10px; text-decoration: none; color: #163a72; }

/* ══════════════════════════════════════════════════════════════
   CTA BAND — dramatically redesigned
   ══════════════════════════════════════════════════════════════ */
.cust-plan-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f6e 40%, #0a1432 100%);
  border-radius: 24px; padding: 64px 56px;
  margin-bottom: 80px;
  border: 1px solid rgba(66,133,244,0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
/* Decorative radial glow */
.cust-plan-cta::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(66,133,244,0.2) 0%, transparent 65%);
  pointer-events: none;
}
/* Google colour dots top-left */
.cust-plan-cta::after {
  content: '';
  position: absolute;
  bottom: 28px; left: 56px;
  width: 80px; height: 3px;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc04, #34a853);
  border-radius: 3px;
}
.cp-content { position: relative; z-index: 1; }
.cp-content-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #caef45;
  margin-bottom: 14px; display: block;
}
.cp-content h2 {
  font-size: clamp(1.6rem,2.6vw,2.2rem);
  font-weight: 700; color: #fff; line-height: 1.3; margin: 0 0 20px;
}
.cp-content h2 span { color: #caef45; }
/* Mini proof stats inside CTA */
.cp-stats {
  display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 0;
}
.cp-stat { display: flex; flex-direction: column; gap: 2px; }
.cp-stat-val { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.cp-stat-lbl { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.55); }
/* CTA buttons column */
.cp-cta {
  flex-shrink: 0; display: flex; flex-direction: column;
  gap: 12px; align-items: center; position: relative; z-index: 1;
  min-width: 200px;
}
.cp-cta-primary {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: var(--gam-lime); color: #0a1628;
  font-size: 15px; font-weight: 700; padding: 15px 32px;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.cp-cta-primary:hover { background: #b8e020; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(202,239,69,0.4); color: #0a1628; text-decoration: none; }
.cp-cta-secondary {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: transparent; color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500; padding: 12px 28px;
  border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cp-cta-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); text-decoration: none; }
.cp-no-contract { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-wrapper { padding: 0 0 80px; }
.m-shot-head { text-align: center; padding: 60px 0 28px; }
.m-shot-head h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; color: #0a1628; margin: 0; }
.faq-cta-bot { text-align: center; margin-top: 36px; }
.pkg-cta-btn {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08); color: #0a1628;
  font-size: 15px; font-weight: 600; padding: 13px 28px;
  border-radius: 50px; text-decoration: none;
  border: 2px solid #0a1628; cursor: pointer; transition: all 0.2s;
}
.pkg-cta-btn:hover { background: #0a1628; color: #fff; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gam-plans-grid { grid-template-columns: repeat(2,1fr); }
  .gam-help-card-sec { grid-template-columns: repeat(2,1fr); }
  .gam-results-grid { grid-template-columns: repeat(2,1fr); }
  .gam-services-grid { grid-template-columns: 1fr; }
  .seo-serve-sec { flex-wrap: wrap; gap: 32px; padding: 56px 0; }
  .seo-serve-head { max-width: 100%; }
  .cust-plan-cta { grid-template-columns: 1fr; gap: 32px; padding: 44px 36px; }
  .cp-cta { flex-direction: row; min-width: 0; width: 100%; }
  .cp-cta-primary, .cp-cta-secondary { flex: 1; }
  .gam-cases-head p { width: 100%; }
}
@media (max-width: 768px) {
  .gam-plans-grid { grid-template-columns: 1fr; }
  .gam-help-card-sec { grid-template-columns: 1fr; }
  .gam-results-grid { grid-template-columns: 1fr; }
  .gam-services-grid { grid-template-columns: 1fr; }
  .gam-service-card { flex-direction: column; }
  .gam-service-card-img { width: 100%; height: 180px; }
  .gam-services-sec { padding: 48px 0; }
  .cust-plan-cta { padding: 36px 24px; }
  .cust-plan-cta::after { left: 24px; }
  .cp-cta { flex-direction: column; }
  .cp-stats { gap: 20px; }
  .seo-serve-sec { padding: 48px 0; }
  .seo-serve-head { padding: 28px 24px; }
}


/* ══════════════════════════════════════════════════════════════
   FOOTER TOUCH TARGET FIX — Google PageSpeed mobile requirement
   Min 48×48px touch area for footer copyright links
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .copyright-sec ul { display: flex; flex-wrap: wrap; gap: 4px; }
  .copyright-sec ul li { display: block; }
  .copyright-sec ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px !important;
    font-size: 14px;
  }
}
