/* Verbatim <style> block from AI SEO.dc.html — do NOT edit.
   px → rem fluid conversions applied (÷16 BASE, lossless at 1440; see scale.css).
   Shared nav (.fr-nav-item) + button (.fr-btn*) rules are omitted here because
   the global component sheets (sitenav.css / hero.css) already provide them
   verbatim — exactly as the Home / Google Ads ports did. Everything else from
   the page's own <style> is reproduced below (including rules the final markup
   doesn't use — e.g. the objection-handler .vs-* and logo-marquee helpers — so
   the design CSS stays byte-faithful and un-deduplicated). */

body { margin: 0; background: var(--paper); font-family: var(--font-sans), system-ui, sans-serif; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
@property --fr-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes fr-border-flow { to { --fr-angle: 360deg; } }

/* Service / benefit cards */
.fr-svc-card {
  position: relative; display: flex; border-radius: var(--radius-lg);
  border: 0.09375rem solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), linear-gradient(var(--border-subtle), var(--border-subtle));
  background-origin: border-box; background-clip: padding-box, border-box;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.fr-svc-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  background-image: linear-gradient(var(--surface), var(--surface)), conic-gradient(from var(--fr-angle), var(--cyan), var(--blue-action), var(--blue), var(--cyan));
  animation: fr-border-flow 3.5s linear infinite;
}
.fr-grid-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.fr-btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }

/* Hero stat cells */
.fr-stat { padding-left: 1.75rem; background: linear-gradient(180deg, var(--blue) 0%, var(--cyan) 100%) left / 2px 100% no-repeat; }
.fr-stat-num { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: clamp(2.75rem, 4vw, 4rem); line-height: 1.05; margin: 0 0 0.4rem; color: var(--on-dark); }
.fr-stat-label { font-family: var(--font-sans); font-weight: var(--fw-bold); font-size: var(--fs-h4); line-height: 1.4; margin: 0; color: var(--on-dark); }

/* Hero graph panel: drop the component's own cube motif so it doesn't clash with the section motif behind it */
.ai-graph-panel .fr-motif-grid { display: none !important; }

/* CTA process steps */
.cta-step { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: 2rem 1.75rem; border: 0.09375rem solid transparent; border-radius: 1rem; box-shadow: var(--shadow-sm); background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(var(--border), var(--border)) border-box; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.cta-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: linear-gradient(var(--surface), var(--surface)) padding-box, conic-gradient(from var(--fr-angle), var(--cyan), var(--blue-action), var(--blue), var(--cyan)) border-box; animation: fr-border-flow 3.2s linear infinite; }
.cta-step--row { flex-direction: row; align-items: flex-start; gap: 1.25rem; padding: 1.625rem 1.75rem; }
.cta-step--row .cta-step__body { display: flex; flex-direction: column; gap: 0.5rem; }
@media (max-width: 560px) { .cta-step--row { flex-direction: column; } }
.cta-step__num { font: 600 0.75rem/1 ui-monospace, Menlo, monospace; letter-spacing: .17em; color: var(--cyan); }

/* Objection handler (us vs them) */
.vs-mark { flex: none; width: 1.75rem; height: 1.75rem; border-radius: 50%; display: grid; place-items: center; margin-top: 0.0625rem; }
.vs-mark svg { width: 0.9375rem; height: 0.9375rem; display: block; }
.vs-mark--bad { background: rgba(214,69,61,.12); color: var(--error); }
.vs-mark--good { background: rgba(22,184,243,.16); color: var(--cyan); }
.vs-plabel { display: inline-flex; align-items: center; gap: 0.5625rem; font: var(--fw-medium) 0.8125rem/1 var(--font-sans); letter-spacing: .02em; }
.vs-plabel img { width: 1.125rem; height: 1.125rem; object-fit: contain; }
.vs-t { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1.06rem; line-height: 1.25; }
.vs-d { margin: 0.3125rem 0 0; font-size: .95rem; line-height: 1.5; }
.vs-item { display: flex; gap: 0.875rem; align-items: flex-start; padding: 1.25rem 0; }
.vs-item + .vs-item { border-top: 0.0625rem solid var(--sep); }
@property --cmp-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes cmp-flow { to { --cmp-angle: 360deg; } }
.vs-fr-frame { border: 0.09375rem solid transparent; border-radius: 1rem; background: linear-gradient(var(--navy), var(--navy)) padding-box, conic-gradient(from var(--cmp-angle), var(--cyan), var(--blue-action), var(--blue), var(--cyan)) border-box; animation: cmp-flow 3.6s linear infinite; }

/* Logo marquee */
@keyframes frLogoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.fr-logobar-track { animation: frLogoMarquee linear infinite; }
.fr-logobar-viewport:hover .fr-logobar-track--pause { animation-play-state: paused; }

/* Case study grid */
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 5vw, 5rem); }
.cs-grid > * { min-width: 0; }

@media (prefers-reduced-motion: reduce) {
  .fr-nav-item:hover, .fr-nav-item[data-open="true"], .fr-svc-card:hover, .cta-step:hover, .vs-fr-frame, .fr-logobar-track, .fr-btn--flow:hover { animation: none !important; }
  .fr-btn:hover .fr-btn-arrow { transform: none; }
}
@media (max-width: 1100px) { .fr-grid-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .home-cta-grid, .cmp-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 860px) { .home-split, .cs-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 760px) { .home-faq-cols { flex-direction: column; } }
@media (max-width: 640px) { .fr-grid-row { grid-template-columns: 1fr; } .hero-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) {
  .home-testi-card { margin-inline: calc(-1 * var(--container-pad-x)) !important; border-radius: 0 !important; padding: var(--space-8) var(--container-pad-x) !important; }
  .home-testi-arrow { display: none !important; }
  .home-testi-row { gap: 0 !important; }
  .home-testi-quote { max-width: none !important; padding: var(--space-6) var(--space-5) !important; touch-action: pan-y; }
}
@media (max-width: 760px) { .home-faq-intro { margin-bottom: var(--space-6) !important; } .home-faq-tail { margin-top: var(--space-6) !important; } }
@media (max-width: 560px) { .cs-stats { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) { .hero-lead { display: none !important; } }
@media (min-width: 1280px) { .hero-chips { flex-wrap: nowrap !important; column-gap: var(--space-2); } .hero-chips .fr-chip { font-size: 0.75rem; padding-top: 0.375rem; padding-bottom: 0.375rem; } }
@media (max-width: 640px) { .ga-testi-sec { padding-bottom: 0 !important; } .ga-testi-sec .home-testi-card canvas { display: none !important; } }
