/* Epic Service Ads — Google Ads–inspired marketing layout (scoped under .ga-site) */

.ga-site {
  --ga-blue: #2563eb;
  --ga-blue-hover: #1d4ed8;
  --ga-blue-soft: #eff6ff;
  --ga-bg: #ffffff;
  --ga-bg-muted: #f8f9fa;
  --ga-text: #202124;
  --ga-text-secondary: #5f6368;
  --ga-border: #dadce0;
  --ga-ph: #e8eaed;
  --ga-ph-border: #bdc1c6;
  --ga-max: 1200px;
  --ga-radius-pill: 999px;
  --ga-radius-lg: 28px;
  --ga-radius-xl: 48px;
  --ga-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ga-font-heading: "DM Sans", "Roboto", system-ui, -apple-system, Arial, sans-serif;
  /* Wordmark (header): restrained slate + single accent — avoid saturated multi-color chunks */
  --ga-wordmark-core: #0f172a;
  --ga-wordmark-core-hover: #334155;
  --ga-wordmark-accent-mid: #2563eb;
  --ga-wordmark-accent-end: #0891b2;
  margin: 0;
  font-family: var(--ga-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ga-text);
  background: var(--ga-bg);
}

.ga-site *,
.ga-site *::before,
.ga-site *::after {
  box-sizing: border-box;
}

.ga-shell {
  width: 100%;
  max-width: var(--ga-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ga-site a {
  color: var(--ga-blue);
}

.ga-site a:hover {
  text-decoration: underline;
}

/* ----- Header ----- */
.ga-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ga-bg);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.ga-util-bar {
  border-bottom: 1px solid var(--ga-border);
  font-size: 13px;
}

.ga-util-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}

.ga-util-mark {
  font-family: var(--ga-font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  text-decoration: none;
  padding: 5px 9px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.ga-util-mark:hover {
  text-decoration: none;
  color: #475569;
  border-color: #cbd5e1;
  background: #fff;
}

.ga-util-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  flex: 1;
}

.ga-util-nav a {
  color: var(--ga-text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.ga-util-nav a:hover {
  color: var(--ga-text);
  text-decoration: underline;
}

.ga-util-profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ga-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ga-util-profile:hover {
  text-decoration: none;
  border-color: var(--ga-blue);
}

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

.ga-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  position: relative;
}

.ga-brand {
  font-family: var(--ga-font-heading);
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
}

/* Modern wordmark: typographic lockup, not colored blocks */
.ga-brand-logo {
  color: inherit;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.ga-brand-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(260px, 58vw);
}

.ga-brand-logo:hover,
.ga-brand-logo:focus-visible {
  text-decoration: none !important;
}

.ga-brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-feature-settings: "kern" 1, "liga" 1;
  white-space: nowrap;
}

.ga-brand-core {
  font-family: var(--ga-font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.035em;
  color: var(--ga-wordmark-core);
  line-height: 1;
}

.ga-brand-accent {
  font-family: var(--ga-font-heading);
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: -0.042em;
  line-height: 1;
  position: relative;
  /* Gradient fill */
  background-image: linear-gradient(
    118deg,
    var(--ga-wordmark-accent-mid) 0%,
    #3b82f6 42%,
    var(--ga-wordmark-accent-end) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Browsers without background-clip:text */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .ga-brand-accent {
    color: var(--ga-wordmark-accent-mid);
    background: none;
  }
}

.ga-brand-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--ga-wordmark-accent-mid),
    var(--ga-wordmark-accent-end)
  );
  opacity: 0.35;
  pointer-events: none;
}

.ga-brand-logo:hover .ga-brand-core {
  color: var(--ga-wordmark-core-hover);
}

.ga-brand-logo:hover .ga-brand-accent {
  filter: brightness(1.06);
}

.ga-brand-logo:hover .ga-brand-accent::after {
  opacity: 0.55;
}

.ga-brand-logo:active .ga-brand-core {
  color: var(--ga-wordmark-core);
}

.ga-brand-logo:active .ga-brand-accent {
  filter: brightness(0.98);
}

.ga-primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
}

.ga-primary-nav > a {
  font-family: var(--ga-font-heading);
  color: var(--ga-text-secondary);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.ga-primary-nav > a:hover {
  color: var(--ga-text);
}

.ga-nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-left: 8px;
}

.ga-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-blue) !important;
  text-decoration: none !important;
}

.ga-link:hover {
  text-decoration: underline !important;
}

.ga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--ga-radius-pill);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ga-btn:hover {
  text-decoration: none !important;
}

.ga-btn-solid {
  background: var(--ga-blue);
  color: #fff !important;
}

.ga-btn-solid:hover {
  background: var(--ga-blue-hover);
  color: #fff !important;
}

.ga-btn-outline {
  background: #fff;
  color: var(--ga-blue) !important;
  border-color: var(--ga-border);
}

.ga-btn-outline:hover {
  border-color: var(--ga-blue);
  background: var(--ga-blue-soft);
}

.ga-btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.ga-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ga-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.ga-nav-toggle::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 15px;
  height: 2px;
  background: var(--ga-text);
  border-radius: 1px;
  box-shadow: 0 7px 0 var(--ga-text), 0 14px 0 var(--ga-text);
}

@media (max-width: 960px) {
  .ga-util-nav {
    display: none;
  }

  .ga-nav-toggle {
    display: block;
  }

  .ga-primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--ga-border);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .ga-primary-nav.is-open {
    display: flex;
  }

  .ga-primary-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--ga-border);
  }

  .ga-nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-top: 16px;
    gap: 12px;
  }

  .ga-main-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .ga-brand {
    flex: 1;
  }
}

/* ----- Hero ----- */
.ga-hero {
  padding: 48px 0 56px;
}

.ga-hero-inner {
  text-align: center;
}

.ga-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  padding: 10px 22px;
  background: var(--ga-blue-soft);
  border-radius: var(--ga-radius-pill);
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-text);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

@media (min-width: 960px) {
  .ga-promo-pill {
    font-size: 13px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 10px 26px;
  }
}

.ga-promo-icon {
  font-size: 18px;
  line-height: 1;
}

.ga-hero-title {
  margin: 0 auto 20px;
  max-width: 900px;
  font-family: var(--ga-font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.ga-hero-lead {
  margin: 0 auto 28px;
  max-width: 720px;
  font-size: 18px;
  color: var(--ga-text-secondary);
  line-height: 1.65;
}

.ga-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.ga-hero-foot {
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--ga-text-secondary);
}

.ga-hero-media {
  max-width: 1080px;
  margin: 0 auto;
  min-height: min(52vw, 420px);
  border-radius: var(--ga-radius-xl);
  background: var(--ga-ph);
  border: 1px dashed var(--ga-ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ----- Placeholders ----- */
.ga-ph-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-text-secondary);
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
}

.ga-ph-panel,
.ga-ph-diagram,
.ga-ph-montage,
.ga-ph-video {
  background: var(--ga-ph);
  border: 1px dashed var(--ga-ph-border);
  border-radius: var(--ga-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 240px;
}

.ga-ph-roi {
  background: #fff;
  border: 1px dashed var(--ga-ph-border);
  border-radius: var(--ga-radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-top: 12px;
}

.ga-ph-pill {
  flex: 0 0 auto;
  width: 88px;
  height: 220px;
  border-radius: var(--ga-radius-pill);
  background: var(--ga-ph);
  border: 1px dashed var(--ga-ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-ph-pill span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ga-text-secondary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ga-ph-round {
  flex: 1 1 58%;
  min-height: 280px;
  border-radius: var(--ga-radius-xl);
}

.ga-ph-logo {
  width: 72px;
  height: 48px;
  border-radius: 10px;
  background: var(--ga-ph);
  border: 1px dashed var(--ga-ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-ph-logo span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ga-text-secondary);
}

/* ----- Bands / sections ----- */
.ga-band {
  padding: 36px 0;
}

.ga-band-muted {
  background: var(--ga-bg-muted);
  border-top: 1px solid var(--ga-border);
  border-bottom: 1px solid var(--ga-border);
}

.ga-center-narrow {
  text-align: center;
}

.ga-muted-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ga-muted-lead {
  margin: 0 0 24px;
  font-family: var(--ga-font-heading);
  font-weight: 700;
  font-size: 17px;
}

.ga-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

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

.ga-section-alt {
  background: var(--ga-bg-muted);
}

.ga-section-title {
  margin: 0 auto 16px;
  text-align: center;
  font-family: var(--ga-font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 840px;
}

.ga-section-lead {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 720px;
  font-size: 18px;
  color: var(--ga-text-secondary);
}

.ga-center-narrow-text {
  display: block;
}

.ga-left-title {
  margin: 0 0 16px;
  font-family: var(--ga-font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Tabs */
.ga-tabs-wrap {
  margin-top: 36px;
}

.ga-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 6px;
  background: #eceff1;
  border-radius: var(--ga-radius-pill);
  max-width: 720px;
  margin: 0 auto 40px;
}

.ga-tab {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 12px 16px;
  border: none;
  border-radius: var(--ga-radius-pill);
  background: transparent;
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-text-secondary);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
}

.ga-tab:hover {
  color: var(--ga-text);
}

.ga-tab[aria-selected="true"] {
  background: #fff;
  color: var(--ga-text);
  box-shadow: 0 1px 4px rgba(60, 64, 67, 0.25);
  font-weight: 600;
}

.ga-tab-panel {
  animation: ga-fade 0.25s ease;
}

@keyframes ga-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ga-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ga-split-reverse .ga-split-visual {
  order: -1;
}

@media (max-width: 860px) {
  .ga-split {
    grid-template-columns: 1fr;
  }

  .ga-split-reverse .ga-split-visual {
    order: 0;
  }
}

.ga-split-copy {
  text-align: left;
}

.ga-split-copy h3 {
  margin: 0 0 16px;
  font-family: var(--ga-font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ga-split-copy p {
  margin: 0 0 24px;
  color: var(--ga-text-secondary);
  font-size: 17px;
}

.ga-split-visual {
  background: var(--ga-blue-soft);
  border-radius: var(--ga-radius-xl);
  padding: 28px;
}

.ga-split-pad {
  padding-top: 8px;
  padding-bottom: 8px;
}

.ga-split-visual.ga-split-pad {
  background: transparent;
  padding: 0;
}

.ga-roi-badge {
  display: inline-block;
  padding: 8px 14px;
  background: #e6f4ea;
  color: #137333;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--ga-radius-pill);
  margin-bottom: 8px;
}

.ga-inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.ga-text-link {
  font-weight: 500;
  text-decoration: none !important;
}

.ga-text-link:hover {
  text-decoration: underline !important;
}

.ga-steps {
  margin: 32px auto 0;
  padding-left: 20px;
  max-width: 560px;
  text-align: left;
  color: var(--ga-text-secondary);
}

.ga-steps li {
  margin-bottom: 12px;
}

.ga-steps strong {
  color: var(--ga-text);
}

/* Gallery */
.ga-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 36px;
}

.ga-gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-gallery-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .ga-gallery {
    flex-direction: column;
  }

  .ga-gallery-pills {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ga-ph-pill {
    width: 72px;
    height: 140px;
  }
}

.ga-quote {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  border: none;
  padding: 0;
}

.ga-quote p {
  margin: 0 0 12px;
  font-family: var(--ga-font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.ga-quote cite {
  font-size: 15px;
  font-style: normal;
  color: var(--ga-text-secondary);
}

/* Card grid */
.ga-ph-montage {
  margin: 0 auto 36px;
  max-width: 960px;
  min-height: 200px;
}

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

@media (max-width: 900px) {
  .ga-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ga-card-grid {
    grid-template-columns: 1fr;
  }
}

.ga-card {
  padding: 24px;
  border-radius: var(--ga-radius-lg);
  border: 1px solid var(--ga-border);
  background: #fff;
}

.ga-section-alt .ga-card {
  background: #fff;
}

.ga-card h3 {
  margin: 0 0 10px;
  font-family: var(--ga-font-heading);
  font-size: 17px;
  font-weight: 600;
}

.ga-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ga-text-secondary);
}

/* Process */
.ga-ph-video {
  margin: 0 auto 32px;
  max-width: 900px;
  min-height: 200px;
}

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

@media (max-width: 960px) {
  .ga-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ga-process-grid {
    grid-template-columns: 1fr;
  }
}

.ga-process-card {
  padding: 22px;
  border-radius: var(--ga-radius-lg);
  border: 1px solid var(--ga-border);
  background: #fff;
}

.ga-process-card h3 {
  margin: 0 0 8px;
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 600;
}

.ga-process-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ga-text-secondary);
}

/* Blue band + help card */
.ga-band-blue {
  background: var(--ga-blue);
  padding: 56px 24px;
}

.ga-help-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--ga-radius-xl);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ga-help-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ga-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ga-help-title {
  margin: 0 0 8px;
  font-family: var(--ga-font-heading);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ga-help-sub {
  margin: 0 0 16px;
  font-family: var(--ga-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--ga-text-secondary);
}

.ga-help-sub strong {
  color: var(--ga-blue);
}

.ga-help-body {
  margin: 0 0 28px;
  color: var(--ga-text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.ga-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ga-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--ga-radius-pill);
  background: var(--ga-blue-soft);
  color: var(--ga-blue) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border: 1px solid transparent;
}

.ga-chip:hover {
  border-color: var(--ga-blue);
  text-decoration: none !important;
}

/* FAQ */
.ga-faq-shell {
  max-width: 800px;
}

.ga-faq-list {
  margin-top: 32px;
}

.ga-faq-item {
  border: 1px solid var(--ga-border);
  border-radius: var(--ga-radius-lg);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}

.ga-faq-item summary {
  padding: 20px 52px 20px 22px;
  font-family: var(--ga-font-heading);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 17px;
}

.ga-faq-item summary::-webkit-details-marker {
  display: none;
}

.ga-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--ga-text-secondary);
}

.ga-faq-item[open] summary::after {
  content: "\2212";
}

.ga-faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ga-text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Final CTA */
.ga-cta-final {
  padding-bottom: 96px;
}

.ga-cta-pill {
  text-align: center;
  max-width: 800px;
}

.ga-cta-pill h2 {
  margin: 0 0 16px;
  font-family: var(--ga-font-heading);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ga-cta-pill > p {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--ga-text-secondary);
}

/* Footer */
.ga-footer {
  border-top: 1px solid var(--ga-border);
  background: var(--ga-bg-muted);
  padding-top: 48px;
}

.ga-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .ga-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ga-footer-heading {
  margin: 0 0 12px;
  font-family: var(--ga-font-heading);
  font-size: 14px;
  font-weight: 700;
}

.ga-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ga-footer-list a {
  color: var(--ga-text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.ga-footer-list li {
  margin-bottom: 10px;
}

.ga-footer-list a:hover {
  color: var(--ga-blue);
  text-decoration: underline;
}

.ga-footer-note {
  margin: 0;
  font-size: 14px;
  color: var(--ga-text-secondary);
}

.ga-footer-bar {
  border-top: 1px solid var(--ga-border);
  padding: 20px 0 32px;
}

.ga-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ga-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ga-footer-logo {
  font-family: var(--ga-font-heading);
  font-weight: 700;
  font-size: 15px;
}

.ga-footer-meta {
  display: flex;
  gap: 24px;
}

.ga-footer-meta a {
  font-size: 13px;
  color: var(--ga-text-secondary);
  text-decoration: none;
}

.ga-footer-meta a:hover {
  text-decoration: underline;
}

.ga-footer-disclaimer {
  margin: 0;
  font-size: 12px;
  color: var(--ga-text-secondary);
  text-align: left;
}

/* ----- Contact modal ----- */
.ga-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.ga-modal-open {
  overflow: hidden;
}

.ga-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.ga-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-width: min(100%, 320px);
  margin: 0;
  padding: 28px 32px 32px;
  background: var(--ga-bg);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.ga-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ga-text-secondary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ga-modal-close:hover {
  background: var(--ga-bg-muted);
  color: var(--ga-text);
}

.ga-modal-title {
  margin: 0 0 12px;
  font-family: var(--ga-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ga-text);
}

.ga-modal-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ga-text-secondary);
}

.ga-modal-text a {
  display: inline-block;
  font-weight: 500;
  white-space: nowrap;
}

.ga-contact-trigger {
  cursor: pointer;
}

/* ----- Legal pages ----- */
.ga-legal {
  max-width: 720px;
  padding: 48px 24px 80px;
}

.ga-legal-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ga-border);
}

.ga-legal h1 {
  font-family: var(--ga-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ga-text);
}

.ga-legal-meta {
  margin: 0;
  font-size: 14px;
  color: var(--ga-text-secondary);
}

.ga-legal h2 {
  font-family: var(--ga-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--ga-text);
}

.ga-legal p,
.ga-legal li {
  color: var(--ga-text-secondary);
  line-height: 1.7;
}

.ga-legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.ga-legal li {
  margin-bottom: 8px;
}

.ga-legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ga-border);
}

.ga-ph-diagram {
  margin: 0 auto 8px;
  max-width: 720px;
}

/* ----- Simplified layout (3 images) ----- */
.ga-media {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #f1f5f9;
  width: 100%;
}

.ga-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-media--16x9 {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.ga-media--43 {
  aspect-ratio: 4 / 3;
}

.ga-media--32 {
  aspect-ratio: 3 / 2;
}

.ga-media-ph {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.ga-media-ph-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.ga-channels {
  text-align: center;
  padding: 8px 0;
}

.ga-channels-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ga-text-secondary);
}

.ga-channels-list {
  margin: 0;
  font-family: var(--ga-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--ga-text);
}

.ga-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .ga-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ga-pillars {
    grid-template-columns: 1fr;
  }
}

.ga-pillar {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--ga-border);
  background: #fff;
}

.ga-pillar h3 {
  margin: 0 0 8px;
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 600;
}

.ga-pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--ga-text-secondary);
  line-height: 1.55;
}

.ga-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ga-blue);
}

.ga-checks {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.ga-checks li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ga-text-secondary);
  font-size: 15px;
}

.ga-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ga-wordmark-accent-mid), var(--ga-wordmark-accent-end));
}

.ga-split-media {
  border-radius: 20px;
}

.ga-split-visual.ga-split-pad {
  background: transparent;
  padding: 0;
}

.ga-steps-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.ga-steps-cards li {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--ga-border);
  background: #fff;
  margin: 0;
}

.ga-steps-cards strong {
  display: block;
  font-family: var(--ga-font-heading);
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--ga-text);
}

.ga-steps-cards span {
  display: block;
  font-size: 14px;
  color: var(--ga-text-secondary);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .ga-steps-cards {
    grid-template-columns: 1fr;
  }
}

.ga-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .ga-story {
    grid-template-columns: 1fr;
  }
}

.ga-story-media {
  border-radius: 20px;
}

.ga-story-copy .ga-left-title {
  text-align: left;
  margin-bottom: 20px;
}

.ga-story-note {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--ga-text-secondary);
}

.ga-story .ga-quote {
  text-align: left;
  margin: 0;
}

.ga-story .ga-quote p {
  font-size: 20px;
}

.ga-section-muted {
  background: var(--ga-bg-muted);
}

.ga-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ga-blue-soft);
  color: var(--ga-blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ga-cta-band {
  padding-top: 48px;
  padding-bottom: 80px;
}

.ga-cta-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--ga-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.ga-cta-card-title {
  margin: 0 0 12px;
  font-family: var(--ga-font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ga-cta-card p {
  margin: 0 0 24px;
  color: var(--ga-text-secondary);
  font-size: 17px;
}

html {
  scroll-behavior: smooth;
}
