:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --card: #ffffff;
  --ink: #002a54;
  --line: rgba(0, 42, 84, 0.12);
  --coral: #ffa106;
  --ember: #1db7d1;
  --gold: #ffa106;
  --mint: #1aa87a;
  --mist: #3c5d84;
  --blue: #1db7d1;
  --navy: #002a54;
  --display: "Poppins", sans-serif;
  --body: "Nunito", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: clip;
}

::selection {
  background: var(--coral);
  color: #fff;
}

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

img {
  max-width: 100%;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
}

h1.display,
h2.display,
h2 {
  max-width: none;
}

.btn-coral,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-coral {
  background: linear-gradient(45deg, #03355e, #189bb8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 42, 84, 0.28);
}

.btn-coral:hover {
  background: linear-gradient(45deg, #002a54, #1db7d1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(23, 21, 28, 0.28);
  background: var(--bg-soft);
  color: var(--ink);
}

.section {
  padding: 88px 0;
}

.muted {
  color: var(--mist);
}

/* Header */
.site-header {
  --header-h: 83px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow-anchor: none;
  transition: box-shadow 0.25s ease;
}

.site-header.is-compact {
  --header-h: 64px;
  box-shadow: 0 10px 28px rgba(0, 42, 84, 0.08);
}

.header-inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
  position: relative;
  min-height: var(--header-h);
  transition: min-height 0.25s ease;
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  color: var(--ink);
  margin-right: auto;
  padding: 4px 0;
}

.brand-logo {
  display: block;
  height: 75px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transition: height 0.25s ease;
}

.site-header.is-compact .brand-logo {
  height: 52px;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  align-self: center;
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.menu {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.menu > a,
.menu .menu-link {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu > a:hover,
.menu .menu-link:hover {
  color: var(--mist);
}

.header-cta {
  align-self: center;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(255, 161, 6, 0.28);
}

.menu-cta,
.nav-scrim {
  display: none;
}

.menu > a.menu-cta {
  display: none;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.has-mega {
  position: static;
  display: flex;
  align-items: stretch;
}

.menu-link {
  gap: 6px;
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  margin-top: -1px;
  padding-top: 1px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease 0.16s, visibility 0s linear 0.28s;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.12s ease, visibility 0s;
}

.mega-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(23, 21, 28, 0.12);
  overflow: hidden;
}

.mega-cols {
  display: contents;
}

.mega-col {
  padding: 22px 8px 18px 16px;
  border-right: 1px solid var(--line);
}

.mega-col:first-child {
  padding-left: 22px;
}

.mega-col-title {
  margin: 0 10px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.mega-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 10px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.15s ease;
}

.mega-item:hover {
  background: #f7f5f8;
  color: var(--ink);
}

.mega-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 161, 6, 0.08);
  color: var(--coral);
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-item:hover .mega-ico {
  background: var(--coral);
  color: #fff;
}

.mega-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.mega-copy span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--mist);
}

.mega-banner {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 161, 6, 0.35), transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(255, 161, 6, 0.28), transparent 40%),
    var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.mega-banner-copy {
  padding: 8px 22px 24px;
}

.mega-banner-copy .eyebrow {
  color: #ffa106;
}

.mega-banner-copy h3 {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.mega-banner-copy p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: #efe6d8;
}

.mega-banner-copy .btn-coral {
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  box-shadow: none;
}

[id^="svc-"],
#process,
#about,
#why-organic,
#testimonials,
#contact,
#talk,
#contact-form,
#services,
#results,
#engage,
#catalog,
#compare,
#blogs,
#faq {
  scroll-margin-top: 88px;
}

@media (max-width: 991.98px) {
  .has-mega .mega {
    display: none;
  }

  .has-mega.is-open .mega {
    display: block;
  }

  .site-header {
    --header-h: 88px;
  }

  .site-header.is-compact {
    --header-h: 72px;
  }

  .header-inner {
    align-items: center;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .nav-burger {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #f4f7fb;
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-scrim {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 70;
    background: rgba(0, 42, 84, 0.42);
  }

  #nav-toggle:checked ~ .nav-scrim {
    display: block;
  }

  .menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 80;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 42, 84, 0.12);
  }

  #nav-toggle:checked ~ .menu {
    display: flex;
  }

  .menu > a,
  .menu .menu-link {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
  }

  .has-mega {
    width: 100%;
    display: block;
  }

  .menu .menu-link {
    justify-content: space-between;
  }

  .caret {
    display: block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .has-mega.is-open .caret {
    transform: rotate(180deg);
  }

  .menu > a.menu-cta,
  .menu-cta {
    display: flex;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 14px;
    border-bottom: 0;
    padding: 12px 22px;
  }

  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0 4px;
  }

  .mega-panel {
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: none;
  }

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

  .mega-col {
    display: contents;
    padding: 0;
    border-right: 0;
  }

  .mega-col:first-child {
    padding-left: 0;
  }

  .mega-col-title {
    display: none;
  }

  .mega-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 92px;
    padding: 10px 6px;
    border-radius: 12px;
    background: #f4f7fb;
    min-width: 0;
  }

  .mega-copy {
    min-width: 0;
    width: 100%;
  }

  .mega-copy strong {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
  }

  .mega-copy span {
    display: none;
  }

  .mega-item:hover {
    background: #eef3f8;
  }

  .mega-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .mega-banner {
    display: none;
  }

  body:has(#nav-toggle:checked) {
    overflow: hidden;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 12%, rgba(29, 183, 209, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 6%, rgba(255, 161, 6, 0.22), transparent 52%),
    radial-gradient(ellipse 40% 35% at 78% 88%, rgba(29, 183, 209, 0.14), transparent 50%),
    #002a54;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.55) 50%, transparent 64%);
  background-size: 220% 100%;
  animation: shine-run 9s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes shine-run {
  0% { background-position: 120% 0; }
  100% { background-position: -40% 0; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 35% 40%, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 35% 40%, #000 18%, transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orb-a {
  width: 460px;
  height: 460px;
  left: -18%;
  top: 8%;
  background: radial-gradient(circle, rgba(29, 183, 209, 0.45) 0%, rgba(255, 161, 6, 0.2) 42%, transparent 70%);
  animation: orb-run 16s linear infinite;
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  left: -10%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(255, 161, 6, 0.32) 0%, transparent 70%);
  animation: orb-run 22s linear infinite;
  animation-delay: -7s;
}

.hero-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(29, 183, 209, 0.28);
  border-radius: 50%;
}

.hero-ring::after {
  inset: 96px;
  border-color: rgba(255, 161, 6, 0.28);
  animation: ring-spin 28s linear infinite;
}

@keyframes orb-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(130vw); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.hero-compact {
  padding: 72px 0 56px;
}

.hero-compact .display {
  font-size: clamp(36px, 5vw, 56px);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}

.blog-filters button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.blog-filters button.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

a.blog-feature:hover {
  color: inherit;
  box-shadow: 0 18px 40px rgba(23, 21, 28, 0.08);
}

.blog-feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.blog-feature-copy {
  padding: 36px 32px;
}

@media (max-width: 767.98px) {
  .blog-feature-copy {
    padding: 24px 20px;
  }
}

.studio-map {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(0, 42, 84, 0.04), rgba(0, 42, 84, 0.1)),
    #e8eef3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--mist);
}

.studio-map strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 6px;
}

@media (max-width: 991.98px) {
  .blog-feature {
    grid-template-columns: 1fr;
  }
}

.hero .display {
  color: #fff;
}

.hero .eyebrow {
  color: #ffa106;
}

.hero .muted {
  color: #b7c9dc;
}

.hero .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .hero-line {
    white-space: nowrap;
  }
}

.grad {
  background: linear-gradient(90deg, #ffa106, #ffd900, #1db7d1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metric {
  padding: 22px 22px 4px 0;
}

.hero-metric + .hero-metric {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-metric .hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 0;
  max-width: none;
  color: #ffa106;
  line-height: 0;
}

.hero-metric .hero-stars svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.hero-metric span {
  display: block;
  margin-top: 10px;
  color: #b7c9dc;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.stat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 161, 6, 0.18);
  color: #1db7d1;
}

.stat-chip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-chip small {
  display: block;
  margin-top: 4px;
  color: var(--mist);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.form-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 28px 70px rgba(28, 25, 23, 0.1);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 161, 6, 0.35), transparent 40%, rgba(224, 161, 38, 0.28));
  z-index: -1;
}

.form-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
}

.form-card .form-control,
.form-card .form-select {
  background: #f7f4ee;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
}

.form-card .form-control::placeholder {
  color: #8a8590;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  background: #fff;
  border-color: rgba(255, 161, 6, 0.55);
  box-shadow: none;
  color: var(--ink);
}

.form-card .form-select option {
  color: #111;
}

.form-card textarea {
  min-height: 90px;
}

/* Proof */
.proof {
  background: #fff;
  padding: 40px 0 72px;
  border-bottom: 1px solid var(--line);
}

.proof-brands {
  padding-bottom: 72px;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 36px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.proof-logos h2 {
  margin: 0;
  flex: 0 0 auto;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--ink);
}

.logo-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 8px 6px;
}

.logo-item img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-item img:hover {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.proof-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px 64px;
  align-items: start;
  margin-bottom: 0;
}

.proof-split h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
}

.proof-copy {
  padding-top: 6px;
}

.proof-lead {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.proof-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mist);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.proof-stats > div {
  padding: 28px 20px 8px;
  text-align: center;
}

.proof-stats > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.proof-stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.proof-stats span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 991.98px) {
  .proof-logos {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .proof-logos h2 {
    white-space: normal;
    text-align: center;
  }

  .logo-item,
  .logo-item img {
    height: 56px;
  }

  .proof-split {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .proof-split h2 {
    max-width: none;
  }

  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .proof-stats > div {
    padding: 20px 12px 16px;
    text-align: center;
  }

  .proof-stats > div:nth-child(odd) {
    padding-left: 12px;
    border-left: 0;
  }

  .proof-stats > div:nth-child(even) {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 575.98px) {
  .logo-item,
  .logo-item img {
    height: 48px;
  }

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

  .mega-item {
    min-height: 84px;
    padding: 8px 6px;
  }
}

/* Results */
.case-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.case-card {
  flex: 0 0 min(100%, 860px);
  scroll-snap-align: start;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 21, 28, 0.05);
  overflow: hidden;
}

.case-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tag {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--mist);
  background: #fff;
}

.metric {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #fff;
}

.metric:nth-child(4n) {
  border-right: 0;
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  color: var(--coral);
}

/* Services */
.bg-navy {
  background: var(--bg-soft);
}

.service-card,
.reason,
.quote,
.step-card,
.channel-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  padding: 28px;
  height: 100%;
  transition: 0.25s ease;
  box-shadow: 0 10px 28px rgba(23, 21, 28, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 161, 6, 0.35);
}

.service-card .num {
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.service-head h3 {
  font-size: 1.4rem !important;
  line-height: 1.2;
}

.service-card .ico {
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--coral);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 0;
  flex: 1;
}

.service-card li {
  margin-bottom: 6px;
}

.service-card li::before {
  content: "▸ ";
  color: var(--coral);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 18px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(45deg, #03355e, #189bb8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 42, 84, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.service-cta:hover {
  color: #fff;
  background: linear-gradient(45deg, #002a54, #1db7d1);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 42, 84, 0.28);
}

.service-cta:hover svg {
  transform: translateX(3px);
}

/* Engagement */
.engage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 24px 20px;
}

.engage-engine {
  min-width: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.engage-col {
  display: grid;
  gap: 16px;
}

.engage-col .channel-card {
  height: auto;
}

.engine {
  position: relative;
  max-width: none;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
}

.engine-spin {
  position: absolute;
  inset: 0;
}

.engine-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.orbit-item {
  position: absolute;
  left: calc(50% + (var(--x) * 37.5%));
  top: calc(50% + (var(--y) * 37.5%));
  width: 0;
  height: 0;
}

.node {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #03355e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.node.is-on {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.engine-core {
  position: absolute;
  inset: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--ember));
  box-shadow: 0 0 40px rgba(255, 161, 6, 0.25);
  font-family: var(--display);
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  color: #fff;
  z-index: 2;
}

.engine-core::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--coral);
  animation: pulse 2.8s ease-out infinite;
}

@keyframes pulse {
  to {
    transform: scale(1.35);
    opacity: 0;
  }
}

.channel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.channel-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 161, 6, 0.16);
  color: #1db7d1;
}

.channel-card.is-on {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.channel-card.is-on .muted {
  color: rgba(255, 255, 255, 0.85);
}

.channel-card.is-on .channel-ico {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.node:hover,
.channel-card:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.channel-card:hover .muted {
  color: rgba(255, 255, 255, 0.85);
}

.channel-card:hover .channel-ico {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* How we work */
.process-section {
  background: #fff;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px 72px;
  align-items: start;
}

.work-intro {
  position: sticky;
  top: 104px;
}

.work-intro .btn-coral {
  margin-top: 28px;
}

.work-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.work-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--coral), rgba(255, 161, 6, 0.12));
}

.work-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 36px;
  position: relative;
}

.work-item:last-child {
  padding-bottom: 0;
}

.work-marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px #fff;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.work-item.is-on .work-marker,
.work-item:hover .work-marker {
  background: var(--coral);
  color: #fff;
  transform: scale(1.06);
}

.work-copy {
  min-width: 0;
  padding: 6px 8px 10px 4px;
  border-radius: 20px;
  transition: background 0.35s ease;
}

.work-item.is-on .work-copy {
  background: linear-gradient(90deg, rgba(255, 161, 6, 0.06), transparent 70%);
}

.work-copy h3 {
  margin: 6px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.work-copy p {
  margin: 0;
  color: var(--mist);
  line-height: 1.65;
}

.work-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.work-copy li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .work-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .work-intro {
    position: static;
  }
}

/* About */
.about-split {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 161, 6, 0.08), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(196, 122, 18, 0.1), transparent 26%),
    var(--bg-soft);
}

.about-copy p {
  max-width: none;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.search-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 28px;
  background: #002a54;
  color: #fff;
  box-shadow: 0 28px 60px rgba(23, 21, 28, 0.18);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #03355e;
  color: #efe6d8;
  font-size: 14px;
}

.search-result {
  position: relative;
  margin-top: 14px;
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-result.is-top {
  background: rgba(255, 161, 6, 0.12);
  border-color: rgba(255, 161, 6, 0.4);
}

.search-rank {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.search-url {
  margin: 0 0 4px;
  font-size: 12px;
  color: #8ee0b0;
}

.search-result h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.3;
  color: #9ec3ff;
}

.search-result.is-top h3 {
  padding-right: 48px;
}

.search-result p:last-child {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #b8b1c2;
}

.search-result:not(.is-top) {
  opacity: 0.55;
}

.about-float {
  position: absolute;
  z-index: 2;
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(23, 21, 28, 0.1);
}

.about-float strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-float span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--mist);
}

.about-float-a {
  top: -8px;
  right: -8px;
  animation: float-y 5s ease-in-out infinite;
}

.about-float-b {
  left: -12px;
  bottom: 18px;
  animation: float-y 6.5s ease-in-out infinite reverse;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
  .about-visual {
    padding: 0;
  }

  .about-float-a,
  .about-float-b {
    position: static;
    display: inline-flex;
    flex-direction: column;
    margin: 14px 10px 0 0;
    animation: none;
  }
}

/* Reviews */
.say-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.say-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding-bottom: 4px;
}

.say-score .say-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.say-score strong {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.say-score span {
  max-width: 190px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--mist);
  text-align: right;
}

.say-board {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.say-stage {
  position: relative;
  min-height: 340px;
  padding: 44px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 161, 6, 0.34), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(255, 161, 6, 0.22), transparent 32%),
    var(--navy);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(23, 21, 28, 0.12);
}

.say-stage::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 28px;
  font-family: var(--display);
  font-size: 120px;
  line-height: 1;
  color: var(--coral);
  opacity: 0.28;
}

.say-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 48px 40px 52px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.say-quote.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.say-quote .say-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #ffa106;
}

.say-quote p {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.say-quote footer {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.say-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.say-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--coral), #ffa106);
  animation: say-fill 6s linear;
}

@keyframes say-fill {
  from { width: 0; }
  to { width: 100%; }
}

.say-people {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.say-person {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.say-person strong {
  display: block;
  font-size: 15px;
}

.say-person small {
  display: block;
  margin-top: 2px;
  color: var(--mist);
}

.say-person.is-on {
  border-color: rgba(255, 161, 6, 0.28);
  border-left-color: var(--coral);
  background: rgba(255, 161, 6, 0.06);
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(255, 161, 6, 0.08);
}

.say-person:hover {
  border-color: var(--coral);
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
  background: #efe6d8;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.say-person.is-on .review-avatar {
  box-shadow: 0 0 0 2px var(--coral);
}

@media (max-width: 991.98px) {
  .say-head {
    align-items: flex-start;
  }

  .say-score {
    align-items: flex-start;
  }

  .say-score span {
    text-align: left;
  }

  .say-board {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .say-person.is-on {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .say-board,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .say-stage {
    min-height: 0;
    height: auto;
    padding: 20px 16px 28px;
    overflow: visible;
  }

  .say-quote {
    position: relative;
    inset: auto;
    display: none;
    padding: 8px 4px 16px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .say-quote.is-on {
    display: flex;
  }

  .say-quote p {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* Why */
.reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  background: #fff;
}

.badge-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 161, 6, 0.1), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(224, 161, 38, 0.1), transparent 28%),
    var(--bg);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 183, 209, 0.18), transparent 32%),
    radial-gradient(circle at 92% 100%, rgba(255, 161, 6, 0.12), transparent 30%),
    var(--navy);
  color: #b7c9dc;
  padding: 0;
  border-top: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-band h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 48px 64px;
  padding: 48px 0 40px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
}

.footer-wordmark img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-identity p {
  margin: 18px 0 0;
  max-width: none;
  font-size: 16px;
  line-height: 1.65;
  color: #b7c9dc;
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}

.site-footer h4 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.footer-navs a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: #b7c9dc;
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-navs a:hover {
  color: var(--coral);
}

.footer-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.footer-facts > div {
  padding: 20px 22px;
}

.footer-facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-facts small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-facts a,
.footer-facts span {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.footer-facts a:hover {
  color: var(--coral);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 0 28px;
  font-size: 13px;
  color: rgba(183, 201, 220, 0.7);
}

.footer-bar p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-facts {
    grid-template-columns: 1fr 1fr;
  }

  .footer-facts > div:nth-child(3),
  .footer-facts > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-facts > div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .footer-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 0;
  }

  .footer-navs {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bar {
    flex-direction: column;
    padding-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .footer-navs,
  .footer-facts {
    grid-template-columns: 1fr;
  }

  .footer-facts > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.h-display {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
}

.work-intro h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  font-weight: 700;
}

.rank-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(23, 21, 28, 0.04);
}

.rank-card h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0;
}

.rank-card .rank-head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.rank-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.rank-table th,
.rank-table td {
  padding: 11px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.rank-table th {
  color: var(--mist);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rank-table td:last-child,
.rank-table th:last-child {
  text-align: right;
  font-family: var(--display);
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}

.rank-table tr:last-child td {
  border-bottom: 0;
}

.chip {
  display: inline-block;
  margin: 0 8px 10px 0;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
}

.chip:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.prose h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 36px 0 12px;
}

.prose p,
.prose li {
  color: var(--mist);
  line-height: 1.75;
}

.prose strong {
  color: var(--ink);
}

.faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

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

.faq-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-arrow svg {
  width: 16px;
  height: 16px;
}

.faq details[open] .faq-arrow {
  transform: rotate(180deg);
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.faq details p {
  margin: 0;
  padding: 0 48px 22px 4px;
  color: var(--mist);
  line-height: 1.7;
}

.touch {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 161, 6, 0.07), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(196, 122, 18, 0.1), transparent 28%),
    var(--bg-soft);
}

.touch-call {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.touch-call a {
  color: var(--coral);
}

.touch-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.touch-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.touch-fact:hover {
  border-color: rgba(255, 161, 6, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 21, 28, 0.06);
  color: var(--ink);
}

.touch-fact-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 161, 6, 0.1);
  color: var(--coral);
}

.touch-fact small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.touch-fact strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.touch-next-title {
  margin: 36px 0 18px;
  font-family: var(--display);
  font-size: 20px;
}

.next-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 500;
}

.next-steps li:last-child {
  margin-bottom: 0;
}

.next-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}


.gallery-card {
  min-height: 180px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 161, 6, 0.12), rgba(224, 161, 38, 0.1)),
    #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.country {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--mist);
}

.feature-logo {
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  color: rgba(23, 21, 28, 0.45);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 161, 6, 0.18), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(255, 161, 6, 0.18), transparent 26%),
    var(--navy);
  color: #f6f0e6;
  overflow: hidden;
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark .display,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .rank-card h3,
.section-dark .prose strong {
  color: #fff;
}

.section-dark .muted,
.section-dark .prose p,
.section-dark .prose li,
.section-dark .rank-table th {
  color: #b8b1c2;
}

.section-dark .rank-card,
.section-dark .service-card,
.section-dark .channel-card,
.section-dark .step-card,
.section-dark .quote,
.section-dark .reason,
.section-dark .faq details,
.section-dark .feature-logo,
.section-dark .mini-stat {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #f6f0e6;
}

.section-dark .rank-card .rank-head {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .rank-table th,
.section-dark .rank-table td {
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .node {
  background: #03355e;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .node.is-on,
.section-dark .node:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.section-dark .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.section-dark .form-card {
  background: #03355e;
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .form-card h3 {
  color: #fff;
}

.section-dark .form-card .form-control,
.section-dark .form-card .form-select {
  background: #03355e;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-dark .step-card .ghost {
  color: rgba(255, 255, 255, 0.08);
}

.section-highlight {
  box-shadow: inset 0 0 0 1px rgba(255, 161, 6, 0.18);
}

.hl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 161, 6, 0.1);
  margin-bottom: 14px;
}

.section-dark .ico {
  background: rgba(255, 161, 6, 0.2);
}

.cta-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.gfx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.cta.section-dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 161, 6, 0.28), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 161, 6, 0.18), transparent 28%),
    var(--navy);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .work-intro.reveal,
.js .work-intro.reveal.is-in,
.js .say-stage.reveal,
.js .say-stage.reveal.is-in {
  transform: none;
}

.btn-coral,
.btn-ghost,
.service-card,
.rank-card,
.channel-card,
.form-card,
.touch-fact,
.say-person {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.rank-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rank-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(23, 21, 28, 0.08);
}

@media (hover: none) {
  .service-card:hover,
  .rank-card:hover,
  .say-person.is-on,
  .seo-levers article:hover,
  .seo-run li:hover {
    transform: none;
  }
}

.form-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 991.98px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metric {
    padding: 16px 10px 4px 0;
  }

  .hero-metric + .hero-metric {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
    padding-top: 16px;
  }

  .hero-compact {
    padding: 40px 0 28px;
  }

  .hero-orb-a,
  .hero-orb-b,
  .hero-shine,
  .engine-core::after {
    animation: none;
  }

  .section {
    padding: 52px 0;
  }

  .engage-layout {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }

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

  .engine {
    max-width: none;
  }

  .node {
    font-size: 12px;
    padding: 7px 12px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 28px 0 32px;
  }

  .hero-ring {
    display: none;
  }

  .stat-chip {
    min-width: 0;
    width: 100%;
  }

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

  .hero-metric {
    padding: 12px 6px 4px 0;
  }

  .hero-metric + .hero-metric {
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
    padding-top: 12px;
  }

  .form-card {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .node {
    font-size: 10px;
    padding: 5px 8px;
  }

  .orbit-item {
    left: calc(50% + (var(--x) * 32%));
    top: calc(50% + (var(--y) * 32%));
  }

  .engine {
    max-width: none;
  }

  .search-result h3 {
    padding-right: 42px;
  }

  .proof-stats > div {
    padding: 16px 10px 12px 0;
  }

  .proof-stats > div:nth-child(even) {
    padding-left: 12px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 36px 0 40px;
  }

  .hero-compact {
    padding: 26px 0 20px;
  }

  .alt-hero {
    padding: 28px 0 36px;
  }

  .section {
    padding: 36px 0;
  }

  .engine {
    max-width: none;
  }

  .metric {
    border-right: 0;
  }

  .work-timeline::before {
    left: 21px;
  }

  .work-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 18px;
  }

  .work-marker {
    width: 44px;
    height: 44px;
    font-size: 12px;
    box-shadow: 0 0 0 5px #fff;
  }

  .work-copy h3 {
    font-size: 22px;
  }

  .search-panel {
    padding: 18px;
  }

  .row > .col-md-6:has(.service-card),
  .row > .col-md-6:has(.rank-card) {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .engine {
    max-width: none;
  }

  .engage-col {
    grid-template-columns: 1fr;
  }

  .touch-facts,
  .compare-grid,
  .catalog-board {
    display: grid;
    grid-template-columns: 1fr;
  }

  .touch-fact,
  .compare-card,
  .catalog-col {
    width: 100%;
    max-width: none;
  }

  .catalog-col + .catalog-col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .catalog-col:nth-child(odd) {
    border-left: 0;
  }

  .row > .col-md-6:has(.service-card) {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 319.98px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metric + .hero-metric {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb-a,
  .hero-orb-b,
  .hero-shine,
  .hero-ring::after,
  .engine-core::after,
  .about-float-a,
  .about-float-b,
  .say-progress i,
  .logo-track,
  .post-aside,
  .seo-form-pin {
    animation: none;
  }
}

/* Comparison */
.compare {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 161, 6, 0.16), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(255, 161, 6, 0.22), transparent 30%),
    var(--navy);
  color: #fff;
}

.compare-title {
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 auto 40px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.compare-card {
  border-radius: 24px;
  padding: 32px 28px;
}

.compare-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
}

.compare-card.us {
  background: #f7f3ee;
  color: var(--ink);
}

.compare-card.them {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-check {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0;
}

.compare-check svg {
  display: none;
}

.compare-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  margin: -1px 0 0 -1px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.compare-card.us .compare-check {
  background: #1aa87a;
  color: #fff;
}

.compare-card.them .compare-check {
  background: #c4a574;
  color: #fff;
}

.compare-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.compare-list span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.75;
}

.compare .btn-coral {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
}

/* Blogs */
.blogs {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 161, 6, 0.08), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(196, 122, 18, 0.1), transparent 26%),
    var(--bg-soft);
}

.blogs-head {
  margin-bottom: 40px;
}

.blogs-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(28, 25, 23, 0.1);
}

.blog-visual {
  display: block;
  height: 200px;
  overflow: hidden;
  background: #ece6dc;
}

.blog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-visual img {
  transform: scale(1.06);
}

.blog-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

.blog-meta span {
  color: var(--coral);
}

.blog-body p {
  margin: 0;
  color: var(--mist);
  line-height: 1.6;
  flex: 1;
}

.blog-more {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.blog-more:hover {
  color: var(--coral);
}

.blog-load {
  display: flex;
  margin: 28px auto 0;
  min-width: 180px;
}

.blog-load.is-hide {
  display: none;
}

/* Service catalog */
.catalog {
  background: var(--bg-soft);
}

.catalog-head {
  margin-bottom: 36px;
}

.catalog-head h2 {
  margin: 0;
}

.catalog-head .muted {
  max-width: none;
}

.catalog-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.catalog-col {
  padding: 28px 24px;
}

.catalog-col + .catalog-col {
  border-left: 1px solid var(--line);
}

.catalog-col-title {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.catalog-link:last-child {
  border-bottom: 0;
}

.catalog-link i {
  color: var(--mist);
  font-style: normal;
  transition: transform 0.2s ease, color 0.2s ease;
}

.catalog-link:hover {
  color: var(--coral);
  padding-left: 4px;
}

.catalog-link:hover i {
  color: var(--coral);
  transform: translateX(4px);
}

.faq-section {
  background: #fff;
}

.faq-section h2 {
  text-align: center;
  margin: 0 0 28px;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.page-seo .about-copy {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.page-seo .about-copy .display,
.page-seo .about-copy p {
  max-width: none;
}

@media (max-width: 1199.98px) and (min-width: 576px) {
  .catalog-board {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-col + .catalog-col {
    border-left: 1px solid var(--line);
  }

  .catalog-col:nth-child(odd) {
    border-left: 0;
  }

  .catalog-col:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .blog-grid,
  .sp-block .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .compare-grid,
  .touch-facts,
  .catalog-board {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-col + .catalog-col {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .catalog-col:nth-child(odd) {
    border-left: 0;
  }

  .catalog-col:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 575.98px) {
  .touch-facts,
  .compare-grid,
  .catalog-board {
    display: grid;
    grid-template-columns: 1fr;
  }

  .touch-fact,
  .compare-card,
  .catalog-col {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .catalog-col + .catalog-col,
  .catalog-col:nth-child(odd),
  .catalog-col:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .catalog-col:first-child {
    border-top: 0;
  }
}

/* Inner service page */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
}

.crumbs i {
  opacity: 0.45;
  font-style: normal;
}

.crumbs-light {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 18px;
}

.crumbs-light a {
  color: #fff;
}

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

.svc-include article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.svc-include h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.svc-include p {
  margin: 0;
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.55;
}

.svc-shot {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 12px;
}

.svc-shot strong {
  display: block;
  font-size: 15px;
}

.svc-shot small {
  color: var(--mist);
  font-weight: 600;
}

.svc-shot table {
  width: 100%;
  font-size: 14px;
}

.svc-shot td {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.svc-shot td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}

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

.svc-flow article {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.svc-flow b {
  display: block;
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.svc-flow h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.svc-flow p {
  margin: 0;
  color: var(--mist);
  font-size: 14.5px;
  line-height: 1.55;
}

.svc-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-areas span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6f8;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

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

.svc-quotes blockquote {
  margin: 0;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.svc-quotes p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

.svc-quotes cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--mist);
}

@media (max-width: 991.98px) {
  .svc-include,
  .svc-flow,
  .svc-quotes,
  .svc-shot {
    grid-template-columns: 1fr;
  }
}

.sp-mast {
  background: linear-gradient(180deg, #f3f7fb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 72px;
}

.sp-mast .crumbs {
  color: var(--mist);
}

.sp-mast .crumbs a {
  color: var(--navy);
}

.sp-mast h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(34px, 4.8vw, 56px);
}

.sp-mast-lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--mist);
}

.sp-checks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
}

.sp-checks i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #1aa87a;
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 12px;
}

.sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.sp-shell {
  padding: 64px 0 104px;
  background: #f7f9fb;
}

.sp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 56px;
  align-items: start;
}

.sp-side {
  position: sticky;
  top: 96px;
}

.sp-form {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 42, 84, 0.08);
}

.sp-form .eyebrow {
  margin-bottom: 6px;
}

.sp-form h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.25;
}

.sp-form .form-control,
.sp-form .form-select {
  min-height: 46px;
  border-radius: 10px;
}

.sp-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 10px;
}

.sp-block {
  margin-bottom: 48px;
  padding: 40px 42px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.sp-block h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.sp-block p {
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--mist);
}

.sp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sp-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6f8;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

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

.sp-step {
  padding: 18px 16px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
}

.sp-step b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #ffa106;
  margin-bottom: 8px;
}

.sp-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

.sp-step p {
  margin: 0;
  color: #c5d4e4;
  font-size: 14px;
  line-height: 1.5;
}

.sp-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.sp-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.sp-list article:first-child {
  border-top: 0;
}

.sp-list em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--coral);
}

.sp-list h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.sp-list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--mist);
}

.sp-sheets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-sheet {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  background: #fff;
}

.sp-sheet header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #f4f8fb;
}

.sp-sheet header strong {
  font-size: 16px;
}

.sp-sheet header span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

.sp-sheet table {
  width: 100%;
  margin: 0;
}

.sp-sheet th,
.sp-sheet td {
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.sp-sheet th {
  background: #fff;
  color: var(--mist);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-sheet td:last-child,
.sp-sheet th:last-child {
  text-align: right;
  font-weight: 700;
  width: 72px;
}

.sp-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-vs div {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sp-vs h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.sp-vs ul {
  margin: 0;
  padding-left: 18px;
  color: var(--mist);
}

.sp-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  margin-bottom: 10px;
  background: #fff;
}

.sp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
}

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

.sp-faq p {
  margin: 0 0 14px;
}

.sp-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px 36px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
}

.sp-call h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #fff;
}

.sp-call p {
  margin: 0;
  color: #c5d4e4;
  font-size: 16px;
  line-height: 1.6;
}

.sp-call .btn-coral {
  flex-shrink: 0;
}

.quote-sheet {
  display: none;
}

.slide-cta {
  display: none;
}

@media (max-width: 991.98px) {
  .sp-grid,
  .sp-steps,
  .sp-vs,
  .sp-sheets,
  .sp-call {
    grid-template-columns: 1fr;
  }

  .page-seo {
    padding-bottom: 84px;
  }

  .sp-side {
    display: none;
  }

  .sp-block {
    padding: 28px 22px;
  }

  .sp-call {
    display: block;
    padding: 28px 22px;
  }

  .sp-call .btn-coral {
    margin-top: 18px;
  }

  .page-seo .wa-float {
    bottom: 92px;
  }

  .slide-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: var(--navy);
    box-shadow: 0 16px 40px rgba(0, 42, 84, 0.35);
    transform: translateY(140%);
    transition: transform 0.35s ease;
  }

  .slide-cta.is-show {
    transform: translateY(0);
  }

  .slide-cta a {
    flex: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(45deg, #03355e, #189bb8);
    color: #fff;
  }

  .quote-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    visibility: hidden;
  }

  .quote-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .quote-sheet-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 42, 84, 0.46);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .quote-sheet.is-open .quote-sheet-bg {
    opacity: 1;
  }

  .quote-sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 88vh;
    overflow: auto;
    padding: 12px 16px 24px;
    border-radius: 22px 22px 0 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.35s ease;
  }

  .quote-sheet.is-open .quote-sheet-panel {
    transform: translateY(0);
  }

  .quote-sheet-handle {
    width: 42px;
    height: 4px;
    margin: 6px auto 14px;
    border-radius: 999px;
    background: var(--line);
  }

  .quote-sheet .sp-form {
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .quote-sheet .sp-form-visual {
    display: none;
  }

  .quote-sheet-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--navy);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }

  body.sheet-open {
    overflow: hidden;
  }
}

/* PPC / paid service page */
.alt-hero {
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 183, 209, 0.22), transparent 34%),
    radial-gradient(circle at 8% 80%, rgba(255, 161, 6, 0.12), transparent 28%),
    var(--navy);
  color: #fff;
}

.alt-hero .crumbs {
  color: rgba(255, 255, 255, 0.62);
}

.alt-hero .crumbs a {
  color: #fff;
}

.alt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: center;
}

.alt-hero .display,
.alt-band .display {
  color: #fff;
}

.alt-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 16ch;
}

.alt-hero .lead {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #c5d4e4;
}

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

.alt-hero .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.alt-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.alt-panel {
  background: rgba(11, 58, 102, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
}

.alt-panel .bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--mist);
  font-size: 14px;
  font-weight: 600;
}

.alt-hit {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.alt-hit.is-ad {
  border: 1px solid rgba(255, 161, 6, 0.35);
}

.alt-hit small {
  display: block;
  color: #7dcea0;
  font-size: 12px;
  font-weight: 700;
}

.alt-hit.is-ad small {
  color: #ffa106;
}

.alt-hit strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.alt-hit span {
  display: block;
  color: #b7c9dc;
  font-size: 13px;
  line-height: 1.45;
}

.alt-stats-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.alt-stats div {
  padding: 22px 8px 22px 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.alt-stats div:first-child {
  border-left: 0;
  padding-left: 0;
}

.alt-stats b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
}

.alt-stats span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--mist);
}

.alt-wrap {
  padding: 72px 0;
}

.alt-center {
  text-align: center;
  max-width: none;
  margin: 0 auto 36px;
}

.alt-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.alt-tile {
  min-width: 0;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.alt-tile.wide {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: var(--navy);
  color: #fff;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.alt-tile.wide h3,
.alt-tile.wide p {
  color: inherit;
}

.alt-tile h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.alt-tile p {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.55;
}

.alt-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
}

.alt-path li {
  list-style: none;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.alt-path b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.alt-path h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.alt-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alt-quotes blockquote {
  margin: 0;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.alt-quotes p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
}

.alt-quotes cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--mist);
}

.alt-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
  margin-bottom: 10px;
  background: #fff;
}

.alt-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
}

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

.alt-faq p {
  margin: 0 0 16px;
  color: var(--mist);
}

.alt-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}

.alt-band h2 {
  color: #fff;
  margin: 0 0 12px;
}

.alt-band .muted {
  color: #b7c9dc;
}

.alt-form {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
}

.alt-form .form-control,
.alt-form .form-select {
  min-height: 48px;
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .alt-hero-inner,
  .alt-bento,
  .alt-path,
  .alt-quotes,
  .alt-stats {
    grid-template-columns: 1fr;
  }

  .alt-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .alt-stats div {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .alt-stats div:first-child {
    border-top: 0;
    padding-top: 22px;
  }
}

@media (max-width: 767.98px) {
  .sp-sheets {
    grid-template-columns: 1fr;
  }
}

/* Service page visuals */
.sp-mast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.sp-visual {
  position: relative;
  min-height: 280px;
}

.sp-visual-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 42, 84, 0.18);
}

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

.sp-block .blog-card:last-child {
  grid-column: 1 / -1;
}

.sp-block .say-board {
  margin-top: 8px;
}

.sp-visual-float {
  position: absolute;
  right: -12px;
  bottom: -28px;
  width: 46%;
  max-width: 220px;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 16px 36px rgba(0, 42, 84, 0.2);
  object-fit: cover;
  height: 180px;
}

.sp-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.sp-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  margin-top: 18px;
}

.sp-brands img {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

.sp-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 161, 6, 0.14);
  color: var(--coral);
  flex-shrink: 0;
}

.sp-step .sp-ico {
  background: rgba(255, 255, 255, 0.12);
  color: #ffa106;
  margin-bottom: 12px;
}

.sp-list article {
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
}

.sp-list .sp-ico {
  width: 36px;
  height: 36px;
}

.sp-sheet header {
  align-items: center;
}

.sp-sheet header strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.sp-sheet header img {
  height: 22px;
  width: auto;
}

.sp-form-visual {
  height: 88px;
  margin: -22px -22px 16px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.sp-form-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alt-hero-media {
  position: relative;
}

.alt-hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.alt-hero-media .alt-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -36px;
  z-index: 2;
}

.alt-stats .sp-ico {
  margin-bottom: 10px;
}

.alt-tile .sp-ico {
  margin-bottom: 14px;
}

.alt-tile.wide .sp-ico {
  background: rgba(255, 255, 255, 0.12);
  color: #ffa106;
}

.alt-path .sp-ico {
  margin-bottom: 12px;
}

.alt-quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.alt-quote-head img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.alt-band-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  .sp-mast-grid,
  .alt-hero-inner {
    grid-template-columns: 1fr;
  }

  .sp-visual-float {
    width: 42%;
    bottom: -16px;
    right: 12px;
    height: 140px;
  }

  .alt-hero-media .alt-panel {
    position: static;
    margin-top: 16px;
  }

  .alt-hero {
    padding-bottom: 40px;
  }
}


/* SEO service page — compact hero like blog/contact, graphic sections, no card chrome */
.page-seo {
  background: #fff;
}

.page-seo .hero-compact .display {
  max-width: 16ch;
}

.page-seo .hero-compact .muted,
.page-seo .hero .muted {
  max-width: 46ch;
}

.page-seo .hero .muted {
  color: rgba(255, 255, 255, 0.78);
}

.seo-intro {
  background:
    radial-gradient(circle at 92% 12%, rgba(29, 183, 209, 0.08), transparent 28%),
    #fff;
}

.seo-form-wrap {
  position: relative;
}

.seo-form-pin {
  position: absolute;
  top: -16px;
  right: 28px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 42, 84, 0.18);
  display: grid;
  place-items: center;
  animation: seo-pin 2.8s ease-in-out infinite;
}

@keyframes seo-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.seo-form {
  position: relative;
  overflow: hidden;
  margin-top: -320px;
  padding: 36px 32px 28px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(29, 183, 209, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 161, 6, 0.16), transparent 50%),
    #002a54;
  box-shadow: 0 32px 64px rgba(0, 42, 84, 0.28);
}

.seo-form::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.seo-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #ffa106, #1db7d1);
}

.seo-form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-form .eyebrow {
  color: #ffa106;
  margin-bottom: 0;
}

.seo-form-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fe4f0;
}

.seo-form h3 {
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.15;
  color: #fff;
}

.seo-form-lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.seo-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.seo-form .form-control,
.seo-form .form-select {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 12px 14px;
}

.seo-form .form-control:focus,
.seo-form .form-select:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 183, 209, 0.35);
}

.seo-form textarea.form-control {
  min-height: 88px;
}

.seo-form .btn-coral {
  min-height: 50px;
  font-size: 15px;
}

.seo-form-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.seo-form-note a {
  color: #ffa106;
  font-weight: 700;
}

.seo-ticks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.seo-ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--navy);
}

.seo-tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1aa87a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.seo-scope {
  background:
    radial-gradient(circle at 8% 0%, rgba(29, 183, 209, 0.12), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(255, 161, 6, 0.12), transparent 32%),
    #f4f7fb;
}

.seo-head {
  max-width: none;
  margin-bottom: 44px;
}

.seo-head-center {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.seo-levers article {
  position: relative;
  padding: 32px 28px 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), #fff),
    radial-gradient(circle at 100% 0%, rgba(29, 183, 209, 0.08), transparent 42%);
  box-shadow: 0 18px 40px rgba(0, 42, 84, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seo-levers article:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), #fff),
    radial-gradient(circle at 100% 0%, rgba(255, 161, 6, 0.1), transparent 42%);
}

.seo-levers article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1db7d1, #ffa106);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.seo-levers article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 42, 84, 0.12);
}

.seo-levers article:hover::after {
  opacity: 1;
}

.seo-levers em {
  position: absolute;
  top: 14px;
  right: 18px;
  font-style: normal;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #1db7d1;
  opacity: 0.22;
}

.seo-levers article:nth-child(even) em {
  color: #ffa106;
}

.seo-levers h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.seo-levers p {
  margin: 0 0 16px;
  color: var(--mist);
  line-height: 1.6;
}

.seo-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f6f9;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.seo-ico {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.seo-ico-cyan {
  background: rgba(29, 183, 209, 0.16);
  color: #0e8aa3;
}

.seo-ico-gold {
  background: rgba(255, 161, 6, 0.18);
  color: #c67a00;
}

.seo-ico-navy {
  background: rgba(0, 42, 84, 0.1);
  color: var(--navy);
}

.seo-cta-strip {
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 161, 6, 0.22), transparent 36%),
    #002a54;
  color: #fff;
  padding: 48px 0;
}

.seo-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.seo-cta-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
}

.seo-cta-copy p {
  margin: 0;
  color: #c5d4e4;
}

.seo-proof {
  background: #fff;
}

.seo-map-art img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0, 42, 84, 0.18));
}

.seo-ranks-label {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.seo-ranks-label:first-child {
  margin-top: 0;
}

.seo-rank {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 42, 84, 0.16);
  font-size: 15px;
}

.seo-rank b {
  color: #1aa87a;
  white-space: nowrap;
  font-family: var(--display);
}

.seo-process {
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 183, 209, 0.22), transparent 36%),
    radial-gradient(circle at 88% 100%, rgba(255, 161, 6, 0.16), transparent 32%),
    #002a54;
  color: #fff;
}

.seo-process .seo-head .display,
.seo-process .seo-head h2 {
  color: #fff;
}

.seo-process .muted {
  color: rgba(255, 255, 255, 0.68);
}

.seo-run {
  list-style: none;
  counter-reset: seo-step;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.seo-run::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #1db7d1, #ffa106);
  opacity: 0.45;
}

.seo-run li {
  counter-increment: seo-step;
  position: relative;
  z-index: 1;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.seo-run li::after {
  content: counter(seo-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
}

.seo-run li:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.seo-run-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #1db7d1, #0e8aa3);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 183, 209, 0.28);
}

.seo-run li:nth-child(even) .seo-run-ico {
  background: linear-gradient(135deg, #ffa106, #e08900);
  box-shadow: 0 10px 24px rgba(255, 161, 6, 0.28);
}

.seo-run b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffa106;
  margin-bottom: 8px;
}

.seo-run h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.seo-run p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.seo-run-copy {
  margin: 40px auto 0;
  max-width: 760px;
  text-align: center;
}

.seo-run-copy p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.seo-run-copy p:last-child {
  margin-bottom: 0;
}

.seo-areas {
  background: #fff;
}

.seo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-chips span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #e8f6f9;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.seo-voices {
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 183, 209, 0.1), transparent 34%),
    #f4f7fb;
}

.seo-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.seo-quotes blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}

.seo-qmark {
  display: block;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.7;
  color: #1db7d1;
  margin-bottom: 12px;
}

.seo-quotes p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
}

.seo-quotes cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--mist);
}

.seo-quotes cite i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffa106;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.page-seo .faq-section {
  background: #fff;
}

.page-seo .faq-section .faq {
  max-width: 760px;
}

@media (max-width: 991.98px) {
  .seo-levers {
    grid-template-columns: 1fr 1fr;
  }

  .seo-run {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .seo-quotes,
  .seo-cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .seo-run::before {
    display: none;
  }

  .seo-cta-inner {
    gap: 18px;
  }

  .seo-form-pin {
    width: 44px;
    height: 44px;
    top: -12px;
    right: 16px;
  }

  .seo-form {
    margin-top: 0;
    padding: 28px 20px 22px;
  }

  .seo-run-copy {
    margin-top: 28px;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .seo-levers,
  .seo-run {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .seo-levers article:hover,
  .seo-run li:hover,
  .blog-card:hover {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .h-display,
  .blogs-head h2,
  .faq-section h2,
  .compare-title {
    font-size: clamp(26px, 7.4vw, 34px);
  }

  .hero-compact .display {
    font-size: clamp(28px, 8vw, 36px);
  }

  .muted.fs-5 {
    font-size: 15px !important;
    line-height: 1.55;
  }

  .proof {
    padding: 28px 0 40px;
  }

  .proof-brands {
    padding-bottom: 36px;
  }

  .proof-logos {
    padding-bottom: 20px;
    margin-bottom: 28px;
  }

  .blogs-head {
    margin-bottom: 24px;
  }

  .blog-card {
    border-radius: 16px;
  }

  .faq summary {
    padding: 14px 0;
    font-size: 16px;
    gap: 10px;
  }

  .faq-arrow {
    width: 30px;
    height: 30px;
  }

  .faq details p {
    padding: 0 36px 14px 0;
    font-size: 14.5px;
  }

  .touch-facts {
    margin-top: 18px;
    gap: 8px;
  }

  .touch-fact {
    padding: 12px 12px;
  }

  .next-steps li {
    padding: 8px 0;
  }

  .seo-head,
  .seo-head-center {
    margin-bottom: 24px;
  }

  .seo-levers {
    gap: 12px;
  }

  .seo-levers article {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .seo-levers em {
    font-size: 28px;
    top: 10px;
    right: 12px;
  }

  .seo-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .seo-levers h3 {
    margin: 12px 0 6px;
    font-size: 17px;
  }

  .seo-run {
    margin-top: 24px;
    gap: 10px;
  }

  .seo-run li {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .seo-run-ico {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .seo-run h3 {
    font-size: 18px;
  }

  .seo-cta-strip {
    padding: 28px 0;
  }

  .seo-cta-copy h2 {
    font-size: 22px;
  }

  .seo-form h3 {
    font-size: 22px;
  }

  .seo-ticks {
    margin-top: 18px;
    gap: 10px;
  }

  .alt-wrap {
    padding: 44px 0;
  }

  .alt-band {
    padding: 40px 0;
  }

  .alt-center {
    margin-bottom: 24px;
  }

  .alt-tile {
    padding: 18px;
  }

  .footer-cta-band {
    padding: 28px 0;
  }

  .footer-cta-band h2 {
    font-size: 24px;
  }

  .footer-main {
    padding: 32px 0 28px;
    gap: 28px;
  }

  .rank-card {
    border-radius: 16px;
  }

  .service-card {
    padding: 20px 18px;
  }

  .work-item {
    padding-bottom: 20px;
  }

  .say-person {
    padding: 12px 12px 12px 14px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
  }

  .form-card h3 {
    font-size: 22px;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .hero-metric {
    padding: 12px 6px 4px 0;
  }

  .page-seo {
    padding-bottom: 76px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 28px 0;
  }

  .hero-compact {
    padding: 20px 0 16px;
  }

  .hero h1 {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  .hero-compact .display {
    font-size: clamp(24px, 8vw, 30px);
  }

  .crumbs {
    margin-bottom: 8px;
    font-size: 12px;
    gap: 6px;
  }

  .compare-title {
    margin-bottom: 20px;
  }

  .compare-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .compare-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .compare-list {
    gap: 12px;
  }

  .catalog-head {
    margin-bottom: 16px;
  }

  .catalog-col {
    padding: 16px 14px;
  }

  .catalog-link {
    padding: 10px 0;
  }

  .blog-feature img {
    min-height: 180px;
  }

  .blog-feature-copy {
    padding: 16px 16px 18px;
  }

  .form-card,
  .seo-form {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .seo-form-pin {
    display: none;
  }

  .seo-cta-strip {
    padding: 22px 0;
  }

  .seo-cta-copy h2 {
    font-size: 20px;
  }

  .alt-hero {
    padding: 22px 0 28px;
  }

  .alt-wrap,
  .alt-band,
  .sp-shell {
    padding: 28px 0;
  }

  .alt-tile {
    padding: 14px;
  }

  .sp-visual-img {
    height: 200px;
  }

  .sp-visual {
    min-height: 0;
  }

  .studio-map {
    min-height: 160px;
    padding: 20px 16px;
  }

  .footer-cta-band {
    padding: 22px 0;
  }

  .footer-cta-band h2 {
    font-size: 22px;
  }

  .work-copy h3 {
    font-size: 18px;
  }

  .service-card {
    padding: 16px 14px;
  }

  .page-seo {
    padding-bottom: 72px;
  }
}

.snap-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
}

.snap-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 42, 84, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.snap-dots button.is-on {
  width: 22px;
  border-radius: 999px;
  background: var(--navy);
}

#results .snap-dots button {
  background: rgba(255, 255, 255, 0.28);
}

#results .snap-dots button.is-on {
  background: #ffa106;
}

@media (max-width: 767.98px) {
  #results .container,
  #blogs .container,
  .post-more {
    overflow: hidden;
  }

  #results .row,
  #blogs .blog-grid,
  .post-more .blog-grid {
    display: flex !important;
    flex-wrap: nowrap;
    grid-template-columns: none !important;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8px;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 2px 4px 6px;
  }

  #results .row::-webkit-scrollbar,
  #blogs .blog-grid::-webkit-scrollbar,
  .post-more .blog-grid::-webkit-scrollbar {
    display: none;
  }

  #results .row > [class*="col"] {
    flex: 0 0 86%;
    width: 86%;
    max-width: 86%;
    padding-left: 0;
    padding-right: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  #blogs .blog-grid .blog-card,
  .post-more .blog-grid .blog-card {
    flex: 0 0 86%;
    width: 86%;
    max-width: 86%;
    height: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  #blogs .snap-dots,
  #results .snap-dots,
  .post-more .snap-dots {
    display: flex;
  }

  .blogs:not(#blogs) .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.page-post .hero-compact .display,
.page-post .hero-compact .muted,
.page-post .post-body,
.page-post .prose p {
  max-width: none;
}

.page-post .hero-compact .display {
  white-space: nowrap;
}

.post-figure {
  margin: 0 0 32px;
  border-radius: 20px;
  overflow: hidden;
}

.post-figure img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.post-body p,
.post-body li {
  font-size: 17px;
}

.post-body a {
  color: var(--coral);
  font-weight: 700;
}

.post-body ul,
.post-body ol {
  margin: 0 0 20px;
  padding-left: 20px;
}

.post-aside {
  position: sticky;
  top: 88px;
  animation: post-sticky 4.5s ease-in-out infinite;
}

@keyframes post-sticky {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.post-cta {
  padding: 24px 22px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 16px 36px rgba(0, 42, 84, 0.18);
  transition: box-shadow 0.4s ease;
}

.post-aside:hover {
  animation-play-state: paused;
}

.post-aside:hover .post-cta {
  box-shadow: 0 22px 44px rgba(0, 42, 84, 0.28);
}

.post-cta h3 {
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px;
}

.post-cta p {
  color: #c5d4e4;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.post-aside-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.post-svc {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 161, 6, 0.35);
  background: linear-gradient(180deg, rgba(255, 161, 6, 0.08), #fff 42%);
}

.post-svc a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.post-svc a:hover {
  border-color: rgba(255, 161, 6, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 42, 84, 0.08);
  color: var(--ink);
}

.post-svc strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.post-svc span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--mist);
}

.post-more {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.post-more .h-display {
  margin: 8px 0 28px;
}

.post-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.post-byline img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.post-byline strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.post-byline em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.post-byline:hover strong {
  color: var(--coral);
}

.author-box {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 40px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 12%, rgba(29, 183, 209, 0.1), transparent 42%),
    var(--bg-soft);
}

.author-box img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
}

.author-box .eyebrow {
  margin-bottom: 6px;
}

.author-box h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
}

.author-box h3 a {
  color: var(--navy);
}

.author-box h3 a:hover {
  color: var(--coral);
}

.author-box p {
  margin: 0 0 12px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.6;
}

.author-box-link {
  font-weight: 800;
  font-size: 14px;
  color: var(--coral);
}

.author-profile {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 161, 6, 0.1), transparent 36%),
    #fff;
}

.author-profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
}

.author-profile h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
}

.author-profile p {
  margin: 0;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.65;
}

.page-author .blogs-head {
  margin-bottom: 24px;
}

@media (max-width: 575.98px) {
  .author-box,
  .author-profile {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 991.98px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .post-aside {
    position: static;
    animation: none;
  }

  .page-post .hero-compact .display {
    white-space: normal;
  }

  .post-figure img {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .post-more .h-display {
    font-size: clamp(24px, 7vw, 32px);
  }
}
