:root {
  --paper: #ffffff;
  --ink: #0b0b0d;
  --accent: #ab8fff;
  --heading: "Arial Black", "Arial Narrow", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --border-ink: rgba(11, 11, 13, 0.16);
  --border-paper: rgba(255, 255, 255, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 116px 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, .section-heading {
  margin: 0;
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -0.057em;
  line-height: .99;
}
p { color: rgba(11, 11, 13, .68); line-height: 1.72; }
.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--accent); }

.pill {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 760;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.pill:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,11,13,.16); }
.pill-dark { color: var(--paper); background: var(--ink); }
.pill-dark:hover { background: var(--accent); color: var(--ink); }
.pill-accent { color: var(--ink); background: var(--accent); }
.pill-accent:hover { background: var(--ink); color: var(--paper); }

/* Header */
.site-header {
  height: 88px;
  background: rgba(255, 255, 255, .92);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border-ink); box-shadow: 0 12px 35px rgba(11,11,13,.06); }
.header-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand, .footer-brand { font-family: var(--heading); font-weight: 900; font-size: 26px; letter-spacing: -1.9px; justify-self: start; }
.brand span, .footer-brand span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a, .footer-nav a { position: relative; color: rgba(11,11,13,.74); font-size: 14px; font-weight: 650; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { justify-self: end; min-height: 48px; padding-inline: 27px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 28px; height: 2px; display: block; background: var(--ink); margin: 6px 0; transition: .25s ease; }

/* Hero */
.hero { background: var(--paper); }
.hero-inner { height: 760px; position: relative; overflow: hidden; }
.hero-kicker {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .17em;
  white-space: nowrap;
}
.hero h1 {
  position: absolute;
  z-index: 1;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(68px, 7.35vw, 108px);
  white-space: nowrap;
}
.hero h1::selection { background: var(--accent); color: var(--ink); }
.hero-left, .hero-right { position: absolute; z-index: 6; top: 342px; width: 275px; }
.hero-left { left: 0; }
.hero-right { right: 0; width: 300px; }
.hero-left > strong { display: block; font-family: var(--heading); font-size: 45px; letter-spacing: -2.8px; margin-bottom: 16px; }
.hero-left > p, .hero-right > p { font-size: 15px; margin: 0 0 28px; }
.hero-visual {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 480px;
  height: 590px;
  transform: translateX(-50%);
}
.hero-orbit {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 470px;
  height: 470px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: .78;
}
.hero-orbit::before,
.hero-orbit::after {
  content: '';
  position: absolute;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.hero-orbit::before { inset: 30px; opacity: .62; }
.hero-orbit::after { inset: 60px; opacity: .42; }
.hero-image-shell {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 405px;
  height: 520px;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-bottom: 0;
  border-radius: 210px 210px 22px 22px;
  background: var(--ink);
  transform: translateX(-50%);
  box-shadow: 0 30px 70px rgba(11,11,13,.18);
}
.hero-image-shell picture,
.hero-image-shell img { width: 100%; height: 100%; }
.hero-image-shell img { object-fit: cover; object-position: 50% 50%; }
.hero-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 39px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 6px 7px 0 var(--ink);
}
.hero-badge-one { left: -9px; top: 220px; transform: rotate(-7deg); }
.hero-badge-two { right: -31px; bottom: 118px; transform: rotate(7deg); }
.hero-badge-three { left: 22px; bottom: 82px; transform: rotate(5deg); background: var(--paper); }
.process-play { border: 0; background: transparent; display: flex; align-items: center; gap: 17px; padding: 0; cursor: pointer; font-weight: 760; font-size: 16px; text-align: left; color: var(--ink); }
.play-circle { width: 90px; height: 90px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; transition: transform .25s ease, background .25s ease; }
.process-play:hover .play-circle { transform: scale(1.06); background: var(--accent); }
.play-circle svg { width: 30px; fill: var(--paper); }
.process-play:hover .play-circle svg { fill: var(--ink); }
.hero-right .pill { min-width: 207px; margin-bottom: 58px; }
.keep-scrolling { display: flex; align-items: center; gap: 13px; width: fit-content; font-weight: 760; font-size: 15px; }
.mouse-icon { width: 34px; height: 49px; border: 2px solid var(--ink); border-radius: 17px; display: grid; place-items: center; font-size: 21px; animation: bob 1.7s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* Moving tilted ribbons */
.ticker-wrap {
  position: relative;
  z-index: 8;
  padding: 50px 0 104px;
  overflow: hidden;
  background: var(--paper);
}
.ticker {
  position: relative;
  left: 50%;
  width: calc(100% + 130px);
  margin-left: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(11,11,13,.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform;
  box-shadow: 0 8px 22px rgba(11,11,13,.07);
}
.ticker-accent {
  background: var(--accent);
  color: var(--ink);
  transform: translateX(-50%) rotate(.85deg) translateZ(0);
}
.ticker-dark {
  margin-top: 28px;
  background: #050507;
  color: var(--paper);
  transform: translateX(-50%) rotate(-1.05deg) translateZ(0);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: max-content;
  padding: 20px 40px 20px 0;
  font-family: var(--heading);
  font-size: 27px;
  white-space: nowrap;
}
.ticker-group b {
  font-size: 27px;
  line-height: 1;
  opacity: .96;
}
.ticker-reverse {
  animation-name: marquee-reverse;
  animation-duration: 36s;
}
@keyframes marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@keyframes marquee-reverse {
  from { transform: translate3d(-50%,0,0); }
  to { transform: translate3d(0,0,0); }
}

/* About */
.about { padding-top: 126px; }
.about-inner { text-align: center; }
.about h2 { font-size: clamp(47px, 5vw, 72px); }
.section-copy { max-width: 820px; margin: 34px auto 24px; font-size: 17px; }
.ai-service-copy { max-width: 760px; margin: 0 auto 50px; padding: 18px 22px; border-left: 4px solid var(--accent); background: rgba(171,143,255,.10); text-align: left; }
.ai-service-copy strong { color: var(--ink); }
.stats { display: flex; justify-content: center; gap: 86px; margin: 0 auto 46px; }
.stats div { display: flex; flex-direction: column; min-width: 170px; }
.stats strong { font-family: var(--heading); font-size: 57px; letter-spacing: -3.5px; }
.stats span { color: rgba(11,11,13,.64); font-size: 14px; margin-top: 9px; }

/* Gapnotic agency spotlight */
.agency-spotlight {
  padding-top: 12px;
  padding-bottom: 96px;
}
.agency-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  min-height: 250px;
  padding: 34px 40px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 13px 14px 0 var(--accent);
  transition: transform .28s ease, box-shadow .28s ease;
}
.agency-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 19px 20px 0 var(--accent);
}
.agency-logo-shell {
  width: 190px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: #000;
}
.agency-logo-shell img { width: 100%; height: 100%; object-fit: cover; }
.agency-content .eyebrow { color: var(--accent); margin-bottom: 15px; }
.agency-content h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
}
.agency-content h2 span { color: var(--accent); }
.agency-content p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.agency-visit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}
.agency-visit b { font-size: 22px; }

/* Services */
.services { padding-top: 72px; }
.section-heading { font-size: clamp(50px, 5vw, 74px); margin-bottom: 58px; }
.service-list { border-top: 1px solid var(--border-ink); }
.service-row {
  min-height: 196px;
  display: grid;
  grid-template-columns: 128px 350px 1fr 72px;
  align-items: center;
  column-gap: 26px;
  border-bottom: 1px solid var(--border-ink);
  padding: 25px 0;
  transition: padding .25s ease, background .25s ease;
}
.service-row:hover { padding-inline: 18px; background: rgba(171,143,255,.11); }
.service-icon svg { width: 96px; height: 96px; fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.service-row h3 { margin: 0; font-size: 33px; line-height: 1.22; letter-spacing: -1.7px; }
.service-row p { font-size: 15px; max-width: 470px; }
.round-arrow { width: 64px; height: 64px; border: 1px solid var(--border-ink); border-radius: 50%; display: grid; place-items: center; font-size: 31px; font-weight: 400; transition: .25s ease; }
.round-arrow:hover, .service-row:hover .round-arrow { background: var(--accent); color: var(--ink); border-color: var(--ink); transform: rotate(8deg); }

/* Process */
.process { background: var(--accent); text-align: center; padding: 102px 0 112px; }
.process .eyebrow { color: var(--ink); }
.process h2 { font-size: clamp(55px, 5vw, 76px); }
.process-intro { color: rgba(11,11,13,.76); margin: 28px auto 64px; font-size: 16px; max-width: 720px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: left; }
.process-grid article { min-height: 252px; padding: 28px 24px; border: 1px solid var(--ink); border-radius: 18px; background: var(--paper); box-shadow: 8px 9px 0 var(--ink); transition: transform .25s ease, box-shadow .25s ease; }
.process-grid article:hover { transform: translate(-4px,-4px); box-shadow: 12px 13px 0 var(--ink); }
.process-grid article > span { font-family: var(--heading); color: var(--accent); font-size: 54px; line-height: .9; display: block; margin-bottom: 25px; -webkit-text-stroke: 1.5px var(--ink); }
.process-grid h3 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.8px; }
.process-grid p { color: rgba(11,11,13,.68); font-size: 14px; margin: 0; }

/* Reviews */
.reviews { background: var(--ink); color: var(--paper); text-align: center; padding-bottom: 96px; }
.reviews h2 { font-size: clamp(55px, 5vw, 76px); margin-bottom: 22px; }
.review-disclaimer { max-width: 720px; margin: 0 auto 55px; color: rgba(255,255,255,.62); font-size: 13px; }
.testimonial-shell { position: relative; display: grid; grid-template-columns: 50px minmax(0,1fr) 50px; align-items: center; gap: 18px; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; gap: 26px; transition: transform .58s cubic-bezier(.2,.75,.25,1); will-change: transform; }
.testimonial-card { flex: 0 0 calc((100% - 52px) / 3); background: var(--paper); color: var(--ink); border-radius: 14px; padding: 38px 30px 32px; text-align: left; min-height: 385px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.18); }
.rating { font-weight: 780; margin-bottom: 23px; }
.rating span { color: var(--accent); letter-spacing: 2px; margin-right: 5px; }
.testimonial-card > p { margin: 0 0 26px; color: rgba(11,11,13,.68); font-size: 15px; line-height: 1.74; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); background: var(--accent); }
.reviewer h3 { margin: 0 0 4px; font-size: 19px; }
.reviewer span { color: rgba(11,11,13,.56); font-size: 12px; }
.slider-arrow { width: 50px; height: 50px; border: 1px solid var(--accent); border-radius: 50%; background: transparent; color: var(--paper); cursor: pointer; font-size: 22px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.slider-arrow:hover { background: var(--accent); color: var(--ink); transform: scale(1.06); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 42px; }
.slider-dots button { width: 11px; height: 11px; border: 1px solid var(--accent); border-radius: 50%; background: transparent; cursor: pointer; padding: 0; }
.slider-dots button.active { background: var(--accent); }

/* Contact */
.connect { padding-top: 108px; text-align: center; }
.connect h2 { font-size: clamp(49px, 5vw, 72px); margin-bottom: 28px; }
.contact-intro { max-width: 760px; margin: 0 auto 54px; font-size: 16px; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 70px; text-align: left; }
.contact-card { min-height: 180px; border: 1px solid var(--ink); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); box-shadow: 7px 8px 0 var(--ink); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.contact-card:hover { transform: translate(-4px,-4px); box-shadow: 11px 12px 0 var(--ink); background: var(--accent); }
.contact-card span { text-transform: uppercase; font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.contact-card strong { font-family: var(--heading); font-size: clamp(20px, 2vw, 27px); letter-spacing: -1.2px; overflow-wrap: anywhere; }
.contact-card b { align-self: flex-end; font-size: 28px; font-weight: 400; }
.contact-location:hover { transform: none; box-shadow: 7px 8px 0 var(--ink); background: var(--paper); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
.social-grid a { min-height: 80px; border-bottom: 1px solid var(--border-ink); display: flex; align-items: center; justify-content: space-between; font-family: var(--heading); font-size: 18px; transition: padding .25s ease, color .25s ease, background .25s ease; }
.social-grid a:hover { padding-inline: 16px; color: var(--ink); background: var(--accent); }
.social-grid b { font-family: var(--body); font-size: 30px; font-weight: 400; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); padding: 68px 0 38px; }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 54px; }
.footer-brand { font-size: clamp(34px, 4vw, 54px); }
.footer-top p { max-width: 470px; margin: 0; text-align: right; color: rgba(255,255,255,.62); }
.footer-nav { display: flex; justify-content: center; gap: 38px; padding: 34px 0; border-block: 1px solid var(--border-paper); }
.footer-nav a { color: rgba(255,255,255,.64); }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.48); padding-top: 32px; font-size: 12px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .hero-inner { height: 730px; }
  .hero h1 { font-size: 68px; }
  .hero-left, .hero-right { width: 235px; top: 330px; }
  .hero-visual { width: 430px; height: 560px; }
  .hero-orbit { width: 420px; height: 420px; }
  .hero-image-shell { width: 365px; height: 490px; }
  .hero-badge-two { right: -12px; }
  .hero-badge-three { left: 8px; }
  .main-nav { gap: 28px; }
  .agency-card { grid-template-columns: 150px minmax(0,1fr); gap: 30px; }
  .agency-logo-shell { width: 150px; }
  .agency-visit { grid-column: 2; justify-self: start; }
  .service-row { grid-template-columns: 104px 300px 1fr 64px; column-gap: 20px; }
  .service-row h3 { font-size: 29px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; z-index: 60; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; background: var(--paper); display: flex; flex-direction: column; justify-content: center; gap: 28px; transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-family: var(--heading); font-size: 34px; }

  .hero-inner { height: auto; min-height: 1080px; padding-top: 36px; display: flex; flex-direction: column; }
  .hero-kicker { position: relative; top: auto; left: auto; transform: none; order: 1; text-align: center; white-space: normal; line-height: 1.5; }
  .hero h1 { position: relative; top: auto; left: auto; transform: none; font-size: clamp(47px, 10vw, 73px); white-space: normal; order: 2; margin-top: 18px; }
  .hero-visual { position: relative; left: auto; transform: none; order: 3; width: min(470px,100%); height: 560px; margin: 20px auto 0; }
  .hero-left, .hero-right { position: relative; inset: auto; width: 100%; }
  .hero-left { order: 4; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 40px 0 20px; }
  .hero-left > strong, .hero-left > p { grid-column: 1; }
  .process-play { grid-column: 2; grid-row: 1/3; justify-self: end; }
  .hero-right { order: 5; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 55px; }
  .hero-right > p { max-width: 470px; margin: 0; }
  .hero-right .pill { margin: 0; flex: 0 0 auto; }
  .keep-scrolling { display: none; }

  .stats { gap: 34px; }
  .stats strong { font-size: 48px; }
  .service-row { grid-template-columns: 88px 1fr 62px; }
  .service-row p { grid-column: 2; margin-top: 0; }
  .round-arrow { grid-column: 3; grid-row: 1/3; }
  .testimonial-card { flex-basis: calc((100% - 26px) / 2); }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { min-height: 155px; }
  .footer-top { align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, var(--container)); }
  .site-header { height: 76px; }
  .brand { font-size: 23px; }
  .hero-inner { min-height: 1130px; }
  .hero h1 { font-size: 43px; }
  .hero-visual { height: 490px; }
  .hero-orbit { width: 360px; height: 360px; bottom: 25px; }
  .hero-image-shell { width: 325px; height: 435px; border-width: 6px; }
  .hero-badge { font-size: 9px; min-height: 34px; padding: 8px 12px; box-shadow: 4px 5px 0 var(--ink); }
  .hero-badge-one { left: 1px; top: 200px; }
  .hero-badge-two { right: -1px; bottom: 92px; }
  .hero-badge-three { left: 8px; bottom: 53px; }
  .hero-left { display: block; text-align: center; }
  .hero-left > strong { font-size: 40px; }
  .process-play { justify-content: center; margin: 25px auto 0; }
  .play-circle { width: 75px; height: 75px; }
  .hero-right { flex-direction: column; text-align: center; }
  .ticker-wrap { padding: 38px 0 82px; }
  .ticker {
    width: calc(100% + 66px);
    border-radius: 9px;
  }
  .ticker-dark { margin-top: 19px; }
  .ticker-group {
    gap: 27px;
    padding: 15px 27px 15px 0;
    font-size: 21px;
  }
  .ticker-group b { font-size: 21px; }
  .agency-spotlight { padding-top: 0; padding-bottom: 78px; }
  .agency-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
    border-radius: 22px;
    box-shadow: 9px 10px 0 var(--accent);
  }
  .agency-card:hover { transform: none; box-shadow: 9px 10px 0 var(--accent); }
  .agency-logo-shell { width: 128px; border-radius: 18px; }
  .agency-content h2 { font-size: 39px; }
  .agency-content p:last-child { font-size: 14px; margin-top: 16px; }
  .agency-visit { grid-column: auto; justify-self: start; }
  .about h2, .section-heading, .reviews h2, .process h2, .connect h2 { font-size: 41px; }
  .section-copy { font-size: 15px; }
  .stats { flex-direction: column; gap: 24px; }
  .stats div { min-width: 0; }
  .stats strong { font-size: 51px; }
  .service-row { grid-template-columns: 68px 1fr 48px; padding: 32px 0; }
  .service-row:hover { padding-inline: 8px; }
  .service-icon svg { width: 61px; height: 61px; }
  .service-row h3 { font-size: 23px; }
  .service-row p { font-size: 13px; }
  .round-arrow { width: 46px; height: 46px; font-size: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .testimonial-shell { grid-template-columns: 1fr; }
  .slider-arrow { position: absolute; z-index: 3; bottom: -75px; }
  .slider-prev { left: calc(50% - 62px); }
  .slider-next { right: calc(50% - 62px); }
  .testimonial-card { flex-basis: 100%; padding: 33px 24px; min-height: 395px; }
  .slider-dots { margin-top: 92px; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-card strong { font-size: 22px; }
  .footer-top { flex-direction: column; }
  .footer-top p { text-align: left; }
  .footer-nav { flex-wrap: wrap; gap: 20px 27px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 38px; }
  .hero-visual { height: 440px; }
  .hero-orbit { width: 320px; height: 320px; }
  .hero-image-shell { width: 290px; height: 390px; }
  .hero-badge-one { top: 181px; }
  .hero-badge-three { left: 0; bottom: 48px; }
  .about h2, .section-heading, .reviews h2, .process h2, .connect h2 { font-size: 36px; }
}
