:root {
  --ink: #17202a;
  --muted: #65717f;
  --line: #dfe6ee;
  --paper: #ffffff;
  --wash: #f5f8fc;
  --navy: #050b33;
  --blue: #006dff;
  --sky: #00a7ff;
  --orange: #ff6b00;
  --amber: #ffb000;
  --red: #d9482f;
  --shadow: 0 18px 50px rgba(5, 11, 51, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 230px;
  height: 58px;
  background-image: url("../images/think-it-digital-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #40515f;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--navy);
  background: #eef5ff;
}

.header-cta, .btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 11px 16px;
  color: #fff;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  background: #eef4f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 62px);
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.74), rgba(255, 107, 0, 0.36)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero-home {
  align-items: center;
}

.compact-hero {
  align-items: start;
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { color: #9fd4ff; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 20px;
  max-width: 860px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.compact-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}

.btn.primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--amber)); }
.btn.secondary { color: var(--navy); background: #eaf3ff; }
.btn.light { color: var(--navy); background: #fff; }
.btn.wide { width: 100%; }

.lead-panel, .modal-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-panel {
  padding: 22px;
}

.form-heading span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 6px 0 16px;
  color: var(--navy);
  font-size: 24px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #40515f;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  outline: 0;
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.13);
}

.lead-form .is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(217, 72, 47, 0.12);
}

.field-error {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-back {
  justify-self: center;
  padding: 8px 10px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.form-back:hover {
  color: var(--blue);
}

.aeo-tool-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 780px;
  margin-top: 26px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.aeo-tool-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.aeo-tool-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  outline: 0;
}

.aeo-tool-form .form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics-band div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--wash);
}

.metrics-band strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
}

.metrics-band span {
  color: var(--muted);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.service-grid, .tool-grid, .contact-grid, .outcome-grid, .service-page-grid, .sprint-grid, .strategy-grid, .trust-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card, .tool-grid article, .contact-grid button, .outcome-panel, .service-page-grid article, .sprint-grid button, .strategy-grid article, .trust-grid article, .testimonial-grid figure {
  min-height: 250px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(24, 40, 50, 0.07);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px;
  font-weight: 800;
}

.service-card h3, .tool-grid h3 {
  color: var(--navy);
  font-size: 20px;
}

.service-card p, .tool-grid p, .split-section p, .detail-copy p, .outcome-panel p, .service-page-grid p, .sprint-grid span, .strategy-grid p, .trust-grid p, .channel-section p, .proof-section p, .testimonial-grid blockquote, .faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card a, .text-link {
  color: var(--blue);
  font-weight: 800;
}

.tool-card-active {
  border-color: rgba(0, 109, 255, 0.28) !important;
  background: linear-gradient(180deg, #fff, #f3f8ff) !important;
}

.outcome-section {
  background: linear-gradient(180deg, #fff, var(--wash));
}

.outcome-panel {
  display: grid;
  align-content: start;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.outcome-panel span, .service-page-grid .section-head, .sprint-grid span {
  display: block;
}

.outcome-panel > span {
  margin-bottom: 26px;
  color: var(--orange);
  font-weight: 800;
}

.outcome-panel h3, .service-page-grid h3, .sprint-grid strong {
  color: var(--navy);
  font-size: 22px;
}

.outcome-panel:hover {
  border-color: rgba(0, 109, 255, 0.35);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.image-banner-section {
  background: var(--wash);
}

.image-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wide-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.image-banner {
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 310px;
  padding: 24px;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

a.image-banner {
  text-decoration: none;
}

.image-banner span {
  color: #ffe0c2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-banner strong {
  max-width: 280px;
  font-size: 26px;
  line-height: 1.08;
}

.image-banner small {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.45;
}

.wide-image-banner {
  min-height: 340px;
}

.wide-image-banner strong {
  max-width: 560px;
  font-size: clamp(28px, 4vw, 44px);
}

.marketing-banner {
  background:
    linear-gradient(180deg, rgba(5, 11, 51, 0.18), rgba(5, 11, 51, 0.94)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80") center/cover;
}

.brand-image-banner {
  background:
    linear-gradient(180deg, rgba(5, 11, 51, 0.18), rgba(5, 11, 51, 0.94)),
    url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=900&q=80") center/cover;
}

.web-image-banner {
  background:
    linear-gradient(180deg, rgba(5, 11, 51, 0.18), rgba(5, 11, 51, 0.94)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80") center/cover;
}

.app-image-banner {
  background:
    linear-gradient(180deg, rgba(5, 11, 51, 0.18), rgba(5, 11, 51, 0.94)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center/cover;
}

.ad-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.74), rgba(255, 107, 0, 0.68)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.ad-strip p {
  margin-bottom: 6px;
  color: #ffe0c2;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-strip h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(24px, 4vw, 42px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.phase-grid div {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phase-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.phase-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.compact-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: var(--wash);
}

.sprint-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sprint-grid button {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  text-align: left;
  border: 1px solid var(--line);
  cursor: pointer;
}

.sprint-grid button:hover {
  border-color: rgba(255, 107, 0, 0.45);
}

.service-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page-grid .section-head {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.service-page-grid article {
  min-height: 220px;
}

.strategy-section, .trust-section, .faq-section {
  background: var(--wash);
}

.strategy-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.strategy-grid article > span {
  color: var(--orange);
  font-weight: 800;
}

.strategy-grid h3, .trust-grid strong {
  color: var(--navy);
  font-size: 21px;
}

.strategy-grid ul, .proof-aside ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: #40515f;
  line-height: 1.5;
}

.channel-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.channel-list div {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(5, 11, 51, 0.06);
}

.channel-list strong {
  color: var(--navy);
}

.channel-list span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 180px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: stretch;
}

.proof-card, .proof-aside {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card h2 {
  max-width: 760px;
}

.proof-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.proof-steps div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-steps strong, .proof-aside strong {
  color: var(--navy);
}

.proof-steps span {
  color: var(--muted);
  line-height: 1.5;
}

.proof-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid figure {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 260px;
  margin: 0;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 4px;
}

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.service-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.72), rgba(255, 107, 0, 0.34)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.marketing-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.72), rgba(255, 107, 0, 0.34)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.brand-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.72), rgba(255, 107, 0, 0.34)),
    url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.web-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.72), rgba(255, 107, 0, 0.34)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.app-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.72), rgba(255, 107, 0, 0.34)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.tool-preview, .process-list {
  display: grid;
  gap: 12px;
}

.tool-preview div, .process-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tool-preview span, .process-list span {
  color: var(--navy);
  font-weight: 800;
}

.tool-preview small {
  color: var(--orange);
  font-weight: 800;
}

.geo-entry-section,
.geo-country-layout,
.geo-proof-grid {
  display: grid;
  gap: 24px;
}

.geo-entry-section,
.geo-country-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.geo-entry-panel,
.geo-country-map-card,
.geo-region-panel,
.geo-proof-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.geo-country-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(5, 11, 51, 0.96), rgba(0, 109, 255, 0.9));
  border-radius: 8px;
}

.geo-country-card span,
.geo-country-label,
.geo-region-panel-head span {
  color: #9fd4ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.geo-country-card strong {
  font-size: 26px;
  line-height: 1.15;
}

.geo-country-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.geo-region-chip-grid,
.geo-region-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.geo-region-chip-grid {
  margin-top: 18px;
}

.geo-region-chip-grid a,
.geo-region-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--navy);
  background: #f4f8fc;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.geo-region-button {
  cursor: pointer;
}

.geo-region-button.is-active,
.geo-region-button:hover,
.geo-region-chip-grid a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: transparent;
}

.geo-hero {
  background:
    linear-gradient(110deg, rgba(5, 11, 51, 0.94), rgba(0, 109, 255, 0.78), rgba(255, 107, 0, 0.28)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.geo-summary-list {
  display: grid;
  gap: 14px;
}

.geo-summary-list div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: #f5f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.geo-summary-list strong,
.geo-country-map-card h3,
.geo-region-panel h3,
.geo-proof-grid h3 {
  color: var(--navy);
}

.geo-summary-list strong {
  font-size: 18px;
}

.geo-country-map-card p,
.geo-region-panel p,
.geo-proof-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.geo-region-panels {
  position: relative;
}

.geo-region-panel {
  display: none;
}

.geo-region-panel.is-active {
  display: block;
}

.geo-region-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.geo-detail-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.75;
}

.geo-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 20px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--navy);
  background: #e8f4f2;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.mini-banner {
  display: grid;
  align-content: end;
  gap: 4px;
  min-height: 170px;
  padding: 22px;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.mini-banner strong { font-size: 22px; }
.mini-banner span { font-weight: 700; }
.banner-green { background: linear-gradient(145deg, #050b33, #006dff); }
.banner-gold { background: linear-gradient(145deg, #050b33, #ffb000); }
.banner-blue { background: linear-gradient(145deg, #0040a8, #00a7ff); }
.banner-red { background: linear-gradient(145deg, #7e1f14, #ff6b00); }

.tool-grid article {
  display: grid;
  align-content: start;
}

.tool-grid article span {
  color: var(--orange);
  font-weight: 800;
}

.tool-grid button, .contact-grid button {
  width: fit-content;
  margin-top: auto;
  padding: 10px 13px;
  color: var(--navy);
  background: #eaf3ff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid > div {
  grid-column: 1 / -1;
}

.contact-grid button {
  display: grid;
  width: 100%;
  min-height: 120px;
  text-align: left;
}

.contact-grid strong {
  color: var(--navy);
  font-size: 24px;
}

.contact-grid span {
  color: var(--muted);
}

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

.insight-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(24, 40, 50, 0.07);
}

.insight-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.insight-card h3 {
  color: var(--navy);
  font-size: 22px;
}

.insight-card p {
  color: var(--muted);
  line-height: 1.65;
}

.insight-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.empty-insights {
  padding: 28px;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 330px;
  padding: 28px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(5, 11, 51, 0.84), rgba(0, 109, 255, 0.78)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-score-panel {
  background:
    linear-gradient(145deg, rgba(5, 11, 51, 0.82), rgba(255, 102, 0, 0.72)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80") center/cover;
}

.campaign-score-panel {
  background:
    linear-gradient(145deg, rgba(5, 11, 51, 0.82), rgba(0, 109, 255, 0.68)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80") center/cover;
}

.score-panel span {
  color: #ffe0c2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.score-panel strong {
  font-size: clamp(76px, 10vw, 126px);
  line-height: 0.9;
}

.score-panel p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  background: #fff;
}

.report-summary-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.report-summary-cards, .blueprint-grid, .roadmap-grid, .metric-grid, .check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blueprint-grid, .roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-summary-cards article, .blueprint-grid article, .roadmap-grid article, .metric-grid div, .check-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(24, 40, 50, 0.07);
}

.report-summary-cards strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
}

.report-summary-cards span, .blueprint-grid span, .roadmap-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blueprint-grid h3, .roadmap-grid h3 {
  color: var(--navy);
}

.blueprint-grid p, .roadmap-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.metric-grid strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
}

.metric-grid span, .check-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.check-grid article span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.check-grid article.needs-work span {
  background: var(--orange);
}

.check-grid h3 {
  color: var(--navy);
}

.article-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 32px);
}

.article-page h1 {
  color: var(--navy);
  font-size: clamp(36px, 6vw, 66px);
}

.article-meta {
  color: var(--muted);
  font-weight: 700;
}

.article-content {
  color: #344452;
  font-size: 18px;
  line-height: 1.78;
}

.article-content h2 {
  margin-top: 34px;
  color: var(--navy);
}

.article-content a {
  color: var(--blue);
  font-weight: 800;
}

.help-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px) 34px;
  text-align: center;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.help-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: conic-gradient(from 30deg, var(--blue), var(--sky), var(--orange), var(--blue));
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 109, 255, 0.18);
  font-size: 26px;
  font-weight: 800;
}

.help-hero h1 {
  margin: 0;
  color: var(--navy);
}

.help-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.help-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 640px);
  min-height: 58px;
  margin-top: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(24, 40, 50, 0.09);
}

.help-search span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.help-search input {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.help-browser {
  padding-top: 44px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 178px;
  padding: 20px 14px;
  color: var(--ink);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(24, 40, 50, 0.06);
}

.platform-card:hover, .platform-card.is-active {
  border-color: rgba(0, 109, 255, 0.34);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.platform-card strong {
  color: var(--navy);
  font-size: 17px;
}

.platform-card small {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.platform-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(5, 11, 51, 0.14);
}

.platform-icon.google { background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); }
.platform-icon.meta { background: linear-gradient(135deg, #0064e0, #8a3ffc); }
.platform-icon.linkedin { background: #0a66c2; }
.platform-icon.youtube { background: #ff0033; }
.platform-icon.ai { background: linear-gradient(135deg, var(--navy), var(--sky)); }
.platform-icon.landing { background: linear-gradient(135deg, var(--orange), var(--amber)); }

.help-query-shell {
  margin-top: 24px;
}

.query-panel {
  display: none;
  padding: 24px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.query-panel.is-active {
  display: block;
}

.query-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.query-panel-head h2 {
  margin-bottom: 0;
}

.query-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.query-list a, .related-query-grid a {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 20px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(24, 40, 50, 0.06);
}

.query-list a:hover, .related-query-grid a:hover {
  border-color: rgba(255, 107, 0, 0.42);
}

.query-list a.is-hidden {
  display: none;
}

.query-list span, .related-query-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.query-list strong, .related-query-grid strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
}

.query-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.help-topic-hero {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.topic-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin-top: 24px;
}

.topic-hero-grid h1 {
  color: var(--navy);
}

.topic-hero-grid p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.keyword-chip {
  display: inline-flex;
  margin-top: 8px;
  padding: 9px 12px;
  color: var(--navy);
  background: #eaf3ff;
  border: 1px solid #d2e5ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.topic-help-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.topic-help-card h2 {
  margin: 0;
  color: var(--navy);
}

.topic-help-card p {
  color: var(--muted);
  line-height: 1.6;
}

.help-answer-section {
  padding-top: 24px;
}

.cluster-answer {
  max-width: 1050px;
  margin: 0 auto;
}

.cluster-answer > h2 {
  color: var(--navy);
}

.cluster-answer > p {
  color: #344452;
  font-size: 18px;
  line-height: 1.78;
}

.answer-checklist {
  margin-top: 36px;
}

.answer-checklist > h3 {
  color: var(--navy);
  font-size: 28px;
}

.related-help-section {
  background: #fff;
}

.related-query-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #d9e7eb;
  background: #102331;
}

.site-footer strong {
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin: 8px 0 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(10, 22, 32, 0.68);
}

.modal.is-open { display: flex; }

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 26px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: #eef4f5;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 330px;
  padding: 14px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero, .compact-hero, .split-section, .service-detail, .topic-hero-grid, .geo-entry-section, .geo-country-layout {
    grid-template-columns: 1fr;
  }
  .service-grid, .tool-grid, .outcome-grid, .service-page-grid, .sprint-grid, .strategy-grid, .trust-grid, .testimonial-grid, .channel-section, .proof-section, .image-banner-grid, .wide-banner-grid, .metric-grid, .check-grid, .report-summary-grid, .blueprint-grid, .roadmap-grid, .platform-grid, .related-query-grid, .geo-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .query-list {
    grid-template-columns: 1fr;
  }
  .report-summary-grid {
    grid-template-columns: 1fr;
  }
  .lead-panel { max-width: 560px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 66px; }
  .brand-logo {
    width: min(210px, 58vw);
    height: 46px;
  }
  .site-nav { top: 66px; }
  .hero {
    min-height: auto;
    padding-top: 42px;
  }
  h1 { font-size: 36px; }
  .hero-actions, .ad-strip, .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .metrics-band, .service-grid, .tool-grid, .contact-grid, .outcome-grid, .service-page-grid, .sprint-grid, .phase-grid, .compact-band, .strategy-grid, .trust-grid, .testimonial-grid, .channel-section, .channel-list, .proof-section, .proof-steps, .insight-grid, .image-banner-grid, .wide-banner-grid, .metric-grid, .check-grid, .aeo-tool-form, .report-summary-grid, .report-summary-cards, .blueprint-grid, .roadmap-grid, .platform-grid, .related-query-grid, .geo-region-chip-grid, .geo-region-button-grid, .geo-proof-grid {
    grid-template-columns: 1fr;
  }
  .geo-region-panel-head {
    align-items: stretch;
    flex-direction: column;
  }
  .query-panel {
    padding: 18px;
  }
  .query-panel-head {
    align-items: stretch;
    flex-direction: column;
  }
  .help-search {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .service-card, .tool-grid article, .outcome-panel, .service-page-grid article, .sprint-grid button, .strategy-grid article, .trust-grid article, .testimonial-grid figure {
    min-height: auto;
  }
  .image-banner {
    min-height: 240px;
  }
  .ad-strip .btn, .site-footer .btn { width: 100%; }
  .lead-panel, .modal-card { padding: 20px; }
}
