:root {
  --pink: #ff2d8e;
  --magenta: #b21fd6;
  --purple: #6a1fc8;
  --orange: #ff6a00;
  --amber: #ffce3a;
  --ink: #241c2b;
  --black: #0e0e12;
  --body: #6d6478;
  --muted: #958ca1;
  --line: #ece7f1;
  --paper: #fbf8fc;
  --white: #ffffff;
  --green: #23c45e;
  --gradient: linear-gradient(90deg, #ff2d8e 0%, #b21fd6 54%, #6a1fc8 100%);
  --warm-gradient: linear-gradient(135deg, #ff6a00 0%, #ffce3a 100%);
  --shadow: 0 24px 70px rgba(36, 28, 43, 0.14);
}

@property --led-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

main {
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  min-height: 74px;
  margin: 10px clamp(12px, 3vw, 42px) 0;
  padding: 13px clamp(18px, 2.6vw, 38px);
  border: 1px solid rgba(236, 231, 241, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(36, 28, 43, 0.1);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--led-angle, 0deg),
    #ff2d8e,
    #ff6a00,
    #ffce3a,
    #23c45e,
    #18c8ff,
    #6a1fc8,
    #ff2d8e
  );
  pointer-events: none;
  z-index: -1;
  animation: led-border-spin 7s linear infinite;
}

.site-header::before {
  padding: 3px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.site-header::after {
  inset: -9px;
  opacity: 0.44;
  filter: blur(16px);
}

@keyframes led-border-spin {
  to {
    --led-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .site-header::after,
  .mobile-action-nav::before,
  .mobile-action-nav::after,
  .ai-alert-flash,
  .ai-alert-flash span,
  .ai-urgency-note::before,
  .ai-urgency-note strong,
  .urgent-offer {
    animation: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 48px;
  height: 50px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  width: clamp(146px, 12vw, 190px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.1vw, 18px);
  margin-left: auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a,
.nav-dropdown-trigger {
  white-space: nowrap;
}

.mobile-nav-phone {
  display: none;
}

.main-nav a:hover {
  color: var(--magenta);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 24px;
}

.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-toggle {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 230px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.desktop-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  color: var(--ink);
  background: #fbf8fc;
}

.main-nav span {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 10px;
  font-weight: 900;
  vertical-align: middle;
}

.header-cta,
.primary-action,
.secondary-action,
.text-link,
.pricing-grid button,
.footer-links button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-cta,
.primary-action,
.pricing-grid button {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(178, 31, 214, 0.22);
}

.header-cta {
  flex: 0 0 auto;
  min-width: 124px;
  padding: 13px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  flex: 0 0 auto;
  min-width: 284px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 999px;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  background: #fff;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-phone span,
.header-phone small {
  display: block;
  line-height: 1.1;
}

.header-phone small {
  color: var(--body);
  font-size: 11px;
  font-weight: 850;
}

.header-phone.is-flipping {
  opacity: 0;
  transform: rotateX(84deg) translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(22px, 5vw, 58px);
  min-height: 780px;
  margin: 18px clamp(14px, 3vw, 38px) 0;
  padding: clamp(82px, 7vw, 104px) clamp(22px, 6vw, 82px) 58px;
  border-radius: 24px;
  overflow: hidden;
  background: #120035;
  box-shadow: 0 34px 90px rgba(20, 0, 64, 0.34);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 0, 30, 0.16) 0%, rgba(11, 0, 36, 0.3) 44%, rgba(7, 0, 25, 0.76) 100%),
    linear-gradient(180deg, rgba(12, 0, 40, 0.08) 0%, rgba(12, 0, 40, 0.58) 100%),
    url("/assets/atlantic-abstract-hero.png") left center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  right: 7%;
  bottom: 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 142, 0.28), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  grid-column: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 5.4vw, 76px);
}

.hero .eyebrow {
  color: #ffbf47;
  text-shadow: 0 3px 16px rgba(255, 106, 0, 0.5);
}

.hero h1 {
  color: #fff;
  text-shadow:
    0 1px 0 #dccbff,
    0 2px 0 #b89dff,
    0 3px 0 #7a42e8,
    0 10px 18px rgba(0, 0, 0, 0.45),
    0 24px 46px rgba(211, 27, 255, 0.34);
  transform: perspective(900px) rotateY(-4deg) translateZ(0);
  transform-origin: left center;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(300px, 42vw);
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2d8e, #ff9b2f, #6d5dfc);
  box-shadow: 0 12px 34px rgba(255, 45, 142, 0.42);
}

.hero p:not(.eyebrow),
.section-head p,
.service-grid p,
.studio-grid p,
.work-card p,
.pricing-grid p,
.ai-copy p,
.ai-panel li,
.final-cta p,
.footer-brand p {
  color: var(--body);
  line-height: 1.62;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  padding: 15px 22px;
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(11, 0, 32, 0.22);
  backdrop-filter: blur(14px);
}

.hero-showcase {
  display: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: end;
  grid-column: 2;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(18, 0, 53, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.showcase-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.showcase-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
}

.showcase-top span:nth-child(2) {
  background: var(--amber);
}

.showcase-top span:nth-child(3) {
  background: var(--green);
}

.showcase-top strong {
  margin-left: 6px;
  font-weight: 700;
}

.showcase-body {
  display: grid;
  gap: 30px;
  min-height: 260px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 45, 142, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(34, 0, 98, 0.84), rgba(6, 0, 28, 0.72));
}

.showcase-body small {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd5e9;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-body h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
}

.showcase-body p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-row span {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.metric-row b {
  color: #ffd5e9;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 70px);
  color: var(--ink);
  background: #fff;
  border-block: 1px solid var(--line);
}

.brand-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.numbers-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 92px);
  background: #f4f4f5;
}

.numbers-copy {
  max-width: 620px;
  justify-self: end;
}

.numbers-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.numbers-copy h2 span {
  display: block;
  color: #a45bf4;
}

.numbers-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--body);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.numbers-copy .primary-action {
  margin-top: 28px;
  min-width: 170px;
  background: linear-gradient(135deg, #a45bf4, #7f35e8);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}

.number-card {
  position: relative;
  min-height: 158px;
  overflow: hidden;
  padding: 34px 34px 28px;
  border: 1px solid rgba(236, 231, 241, 0.9);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(36, 28, 43, 0.08);
}

.number-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-bottom-left-radius: 28px;
  background: linear-gradient(135deg, #ff2d8e, #7f35e8);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.number-card strong {
  display: block;
  color: #1c2228;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.number-card span {
  display: block;
  max-width: 360px;
  margin-top: 9px;
  color: #1c2228;
  font-size: 18px;
  line-height: 1.3;
}

.number-card.featured {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 45, 142, 0.12), transparent 34%),
    #fff;
}

.number-card.wide {
  grid-column: span 2;
  min-height: 170px;
}

.platform-strip {
  padding: 42px clamp(18px, 5vw, 72px) 38px;
  background:
    radial-gradient(circle at 24% 0%, rgba(124, 92, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #0c0816 0%, #080812 100%);
}

.platform-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  gap: clamp(20px, 4.2vw, 58px);
  max-width: 1200px;
  min-height: 176px;
  margin: 0 auto;
  padding: 36px clamp(28px, 5.8vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.platform-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  color: #1a1a1a;
  min-width: 0;
  justify-self: center;
}

.platform-mark {
  grid-row: span 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.platform-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
}

.platform-badge small {
  color: #6a6a6a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.platform-badge.meta .platform-mark {
  background: linear-gradient(135deg, #1478ff, #00b2ff);
}

.platform-badge.semrush .platform-mark {
  background: linear-gradient(135deg, #ff642d, #ff9f1c);
}

.platform-badge.google .platform-mark {
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}

.platform-badge.blueprint .platform-mark {
  background: linear-gradient(135deg, #1769ff, #083b8a);
}

.platform-badge.microsoft .platform-mark {
  background: conic-gradient(from 90deg, #7fba00, #00a4ef, #ffb900, #f25022, #7fba00);
}

.tools-section {
  padding: 60px 0;
  background: #fff;
}

.tools-label {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.tools-marquee {
  overflow: hidden;
  overflow: clip;
  max-width: 100%;
  contain: paint;
  padding: 8px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tools-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marketing-tools-scroll 40s linear infinite;
}

.tools-track.reverse {
  animation-direction: reverse;
}

.tools-marquee:hover .tools-track {
  animation-play-state: paused;
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid #ececf1;
  border-radius: 16px;
  color: var(--ink);
  background: #fff;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
}

.tool-ic {
  display: block;
  width: 24px;
  height: 24px;
  flex: none;
  background: var(--tool-color);
  -webkit-mask: var(--tool-icon) center / contain no-repeat;
  mask: var(--tool-icon) center / contain no-repeat;
}

@keyframes marketing-tools-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tools-track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .seo-tools-track,
  .paid-media-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    animation: none;
    transform: none;
  }

  .seo-tools-track > *,
  .paid-media-track > * {
    max-width: 100%;
    min-width: 0;
  }

  .tools-section,
  .tools-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: layout paint;
  }

  .tools-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    overflow: visible;
    animation: marketing-tools-scroll 40s linear infinite;
    transform: translateZ(0);
  }

  .tools-track.reverse {
    animation-direction: reverse;
  }

  .tools-track > * {
    flex: 0 0 auto;
  }

  .tool-pill {
    white-space: nowrap;
  }

  .review-carousel,
  .review-track,
  .client-logo-scroller,
  .client-logo-grid {
    max-width: 100%;
    overflow-x: hidden;
  }

  .review-track {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-showcase-wall {
    max-width: 100%;
    overflow: hidden;
    overflow: clip;
    contain: layout paint;
  }

  .project-showcase-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    overflow: visible;
    transform: translateZ(0);
    pointer-events: none;
  }

  .project-showcase-track.top {
    left: 0;
    animation: project-drift-left 28s linear infinite;
  }

  .project-showcase-track.bottom {
    left: 0;
    animation: project-drift-right 30s linear infinite;
  }

  .project-showcase-track > * {
    flex: 0 0 auto;
    max-width: none;
    min-width: 0;
  }
}

.section {
  padding: 86px clamp(20px, 5vw, 70px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head.centered {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered p {
  max-width: 700px;
  margin-inline: auto;
}

.section h2,
.final-cta h2 {
  max-width: 800px;
  font-size: clamp(34px, 4.5vw, 60px);
}

.text-link {
  flex: 0 0 auto;
  color: var(--magenta);
  background: transparent;
}

.studio-section {
  background: #fff;
}

.studio-grid,
.service-grid,
.work-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.studio-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.studio-grid article,
.service-grid article,
.work-card,
.pricing-grid article,
.ai-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(36, 28, 43, 0.08);
}

.studio-grid article,
.service-grid article,
.pricing-grid article {
  padding: 28px;
}

.studio-grid span,
.service-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-grid h3,
.service-grid h3,
.work-card h3,
.pricing-grid h3,
.ai-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  min-height: 250px;
}

.service-grid article:nth-child(2n) {
  background: linear-gradient(180deg, #fff, #fff7fb);
}

.service-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--magenta);
  font-weight: 900;
}

.review-section {
  overflow: hidden;
  padding: clamp(66px, 8vw, 104px) 0;
  background: #f4f4f5;
}

.review-section-head {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto 52px;
  text-align: center;
}

.review-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 70px);
  letter-spacing: 0;
  line-height: 1.04;
}

.review-section-head h2 span {
  color: #a45bf4;
}

.review-section-head p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--body);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.review-carousel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(520px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  min-height: 280px;
  overflow: hidden;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(36, 28, 43, 0.08);
  scroll-snap-align: center;
}

.review-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  border-bottom-left-radius: 34px;
  background: linear-gradient(135deg, #ff2d8e, #7f35e8);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.review-avatar {
  display: grid;
  min-height: 244px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, #ff2d8e, #6a1fc8);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  object-fit: cover;
  object-position: top center;
}

.review-avatar.garden {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, #23c45e, #0f8f5d);
}

.review-avatar.air {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, #18c8ff, #6a1fc8);
}

.review-avatar.seo {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(135deg, #ff9b2f, #ff2d8e);
  font-size: 34px;
}

.review-card > div:last-child {
  display: grid;
  align-content: center;
  min-width: 0;
  padding-right: 18px;
}

.quote-mark {
  color: rgba(36, 28, 43, 0.08);
  font-family: Georgia, serif;
  font-size: 0;
  font-weight: 900;
  line-height: 0.7;
}

.quote-mark::before {
  content: "\201C";
  font-size: 92px;
}

.review-card p {
  margin: 8px 0 28px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.45;
}

.review-card strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.review-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 10px 0 4px;
  color: #ffb21f;
  font-size: 18px;
  line-height: 1;
}

.review-rating-pending {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 178, 31, 0.42);
  border-radius: 999px;
  background: rgba(255, 178, 31, 0.1);
}

.review-submit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(164, 91, 244, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 45, 142, 0.13), transparent 34%),
    #fff;
  box-shadow: 0 24px 60px rgba(36, 28, 43, 0.09);
}

.review-submit-copy h3 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.review-submit-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
}

.review-form {
  display: grid;
  gap: 18px;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-form label,
.review-rating-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.review-form label span,
.review-rating-field legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 28, 43, 0.14);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f9f8fb;
  font: inherit;
  font-size: 15px;
}

.review-form textarea {
  resize: vertical;
}

.review-rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.review-rating-options label {
  position: relative;
  display: block;
}

.review-rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-rating-options span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(164, 91, 244, 0.2);
  border-radius: 999px;
  color: #7a35e0;
  background: #fbf7ff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.review-rating-options input:checked + span,
.review-rating-options span:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff2d8e, #7f35e8);
}

.review-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.review-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.review-form-actions p,
.review-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-form-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.review-form-actions button:hover,
.review-form-actions button:focus-visible {
  transform: translateY(-1px);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.review-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #a45bf4;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 28, 43, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
}

.review-controls button::before {
  font-size: 36px;
}

.review-controls button[data-review-prev]::before {
  content: "<";
}

.review-controls button[data-review-next]::before {
  content: ">";
}

.review-controls button:hover,
.review-controls button:focus-visible {
  color: #fff;
  background: #a45bf4;
}

.review-proof-section {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 106, 0, 0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(164, 91, 244, 0.2), transparent 30%),
    #080e27;
}

.review-proof-top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto clamp(38px, 6vw, 70px);
}

.review-proof-section .eyebrow {
  color: #ff7a1a;
}

.review-proof-metrics h2,
.review-proof-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.review-proof-metrics h2 {
  max-width: 460px;
  font-size: clamp(36px, 4.8vw, 62px);
}

.review-proof-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.review-proof-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 600;
  line-height: 1.7;
}

.review-proof-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 24px;
  border-radius: 999px;
  padding: 0 22px;
  color: #111827;
  background: linear-gradient(135deg, #ffb21f, #ff7a1a);
  box-shadow: 0 18px 36px rgba(255, 122, 26, 0.22);
  font-weight: 900;
}

.proof-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.proof-metric-row article {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.proof-metric-row strong {
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 0.95;
}

.proof-metric-row span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.review-proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  width: min(1040px, 100%);
  margin: 0 auto;
}

.review-proof-cards article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 258px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(164, 91, 244, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.review-proof-card-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.review-proof-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ff2d8e, #7f35e8);
  font-size: 14px;
  font-weight: 900;
}

.review-proof-icon.green {
  background: linear-gradient(135deg, #22c55e, #0f8f5d);
}

.review-proof-icon.blue {
  background: linear-gradient(135deg, #18c8ff, #7f35e8);
}

.review-proof-card-head strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.review-proof-card-head small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.review-proof-stars {
  display: flex;
  gap: 4px;
  color: #ffb21f;
  font-size: 18px;
}

.review-proof-cards > article > span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ff7a1a;
  background: rgba(255, 122, 26, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-proof-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.client-wall {
  padding: clamp(70px, 8vw, 112px) 0;
  background: #f1f1f1;
}

.client-wall-head {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
}

.client-wall-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.client-logo-scroller {
  width: min(1680px, calc(100% - 32px));
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  contain: paint;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px) clamp(42px, 6vw, 92px);
  align-items: center;
}

.client-logo-grid figure {
  display: grid;
  place-items: center;
  min-height: 88px;
  margin: 0;
}

.client-logo-grid img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 88px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
}

.home-featured-project {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 45, 142, 0.08), rgba(255, 255, 255, 0) 46%),
    #fff;
}

.home-featured-project-copy {
  max-width: 520px;
}

.home-featured-project-copy h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 66px);
  letter-spacing: 0;
  line-height: 1;
}

.home-featured-project-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--body);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}

.home-featured-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-featured-project-actions .primary-action,
.home-featured-project-actions .secondary-action {
  min-height: 50px;
  text-align: center;
}

.home-featured-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.home-featured-project-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(270px, 1fr) auto;
  min-height: clamp(430px, 40vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(178, 31, 214, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(36, 28, 43, 0.14);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-featured-project-card:hover,
.home-featured-project-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(178, 31, 214, 0.38);
  box-shadow: 0 34px 90px rgba(36, 28, 43, 0.18);
}

.home-featured-project-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease, filter 260ms ease;
}

.home-featured-project-card:hover img,
.home-featured-project-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.home-featured-project-card-copy {
  padding: 20px;
  background: #fff;
}

.home-featured-project-card-copy span {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-featured-project-card-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.home-featured-project-card-copy p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.project-showcase-wall {
  position: relative;
  overflow: hidden;
  overflow: clip;
  max-width: 100%;
  contain: paint;
  min-height: clamp(520px, 62vw, 720px);
  padding: clamp(54px, 7vw, 92px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(164, 91, 244, 0.24), transparent 26%),
    linear-gradient(180deg, #171717, #111);
}

.project-showcase-wall::before,
.project-showcase-wall::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  z-index: 2;
  height: 120px;
  pointer-events: none;
}

.project-showcase-wall::before {
  top: 0;
  background: linear-gradient(180deg, #171717, transparent);
}

.project-showcase-wall::after {
  bottom: 0;
  background: linear-gradient(0deg, #111, transparent);
}

.project-showcase-track {
  position: absolute;
  left: 50%;
  display: flex;
  width: max-content;
  gap: 26px;
  will-change: transform;
}

.project-showcase-track.top {
  top: 32px;
  animation: project-drift-left 32s linear infinite;
}

.project-showcase-track.bottom {
  bottom: 32px;
  animation: project-drift-right 34s linear infinite;
}

.project-showcase-track article {
  display: grid;
  align-content: end;
  width: clamp(300px, 28vw, 460px);
  min-height: clamp(170px, 16vw, 230px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 18% 22%, rgba(164, 91, 244, 0.28), transparent 32%),
    #202020;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.project-showcase-track article:nth-child(2n) {
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.12), transparent 36%, rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 82% 20%, rgba(255, 45, 142, 0.2), transparent 30%),
    #202020;
}

.project-showcase-track span {
  color: #a45bf4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-showcase-track strong {
  max-width: 320px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.project-showcase-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: grid;
  width: clamp(260px, 34vw, 430px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(164, 91, 244, 0.18), transparent 26%),
    rgba(26, 26, 26, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 34px 80px rgba(0, 0, 0, 0.52);
  text-align: center;
  transform: translate(-50%, -50%);
}

.project-showcase-orb img {
  width: 58px;
  height: auto;
}

.project-showcase-orb strong {
  max-width: 260px;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.project-showcase-orb a {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  color: #fff;
  background: #a45bf4;
  padding: 13px 20px;
  font-weight: 900;
}

.project-booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) clamp(22px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(ellipse at 52% 100%, rgba(164, 91, 244, 0.84), transparent 30%),
    linear-gradient(180deg, #181818, #101010);
}

.project-booking-copy {
  max-width: 620px;
}

.project-booking-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.project-booking-copy h2 {
  margin: 22px 0 26px;
  color: #fff;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
}

.project-booking-copy .secondary-action {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.meeting-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(32, 32, 32, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.meeting-avatars {
  display: flex;
  gap: 10px;
}

.meeting-avatars span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff2d8e, #6a1fc8);
  font-size: 12px;
  font-weight: 900;
}

.meeting-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.meeting-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  font-weight: 700;
}

.meeting-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.meeting-options a,
.meeting-options button {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #a45bf4;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
}

@keyframes project-drift-left {
  from {
    transform: translateX(-18%);
  }

  to {
    transform: translateX(-58%);
  }
}

@keyframes project-drift-right {
  from {
    transform: translateX(-58%);
  }

  to {
    transform: translateX(-18%);
  }
}

.service-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(236, 231, 241, 0.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 142, 0.12), transparent 26%),
    linear-gradient(180deg, #fff, #fbf8fc);
}

.service-page:nth-of-type(2n) {
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 106, 0, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8fc, #fff);
}

.service-page-copy {
  display: grid;
  align-content: center;
  max-width: 850px;
}

.service-page-copy h1,
.service-page-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02;
}

.service-page-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.68;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.service-page-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(236, 231, 241, 0.9);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.92), rgba(36, 28, 43, 0.82)),
    var(--gradient);
  box-shadow: var(--shadow);
}

.service-page-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 206, 58, 0.26);
}

.service-page-panel h2,
.service-page-panel h3,
.service-page-panel strong,
.service-page-panel li {
  position: relative;
  z-index: 1;
}

.panel-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffd5e9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-page-panel h2,
.service-page-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
}

.service-page-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding-left: 18px;
  margin: 0;
}

.service-page-panel li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.service-page-panel strong {
  display: block;
  margin-top: 26px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.seo-page .service-page-panel {
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.9), rgba(35, 196, 94, 0.36)),
    var(--gradient);
}

.ads-page .service-page-panel {
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.92), rgba(255, 106, 0, 0.42)),
    var(--gradient);
}

.marketing-page .service-page-panel {
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.9), rgba(178, 31, 214, 0.52)),
    var(--gradient);
}

.support-page .service-page-panel {
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.92), rgba(106, 31, 200, 0.46)),
    var(--gradient);
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  min-height: calc(100vh - 78px);
}

.subpage-section {
  background: #fff;
}

.template-showcase {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 106, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(35, 196, 94, 0.1), transparent 24%),
    linear-gradient(180deg, #fff, #fff8fb);
}

.food-feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "copy profile"
    "features features";
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 45, 142, 0.16), transparent 28%),
    linear-gradient(180deg, #fff7fb, #fff);
}

.food-feature-copy {
  grid-area: copy;
  max-width: 620px;
}

.food-feature-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.food-feature-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.food-profile-mockup {
  grid-area: profile;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #202125;
  box-shadow: 0 28px 80px rgba(22, 17, 30, 0.22);
  color: #f8f9fb;
}

.food-profile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 14px;
}

.food-profile-top h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.food-profile-top p {
  margin: 0;
  color: #c7cbd7;
  font-size: 14px;
  font-weight: 800;
}

.food-profile-top span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: #4ff08a;
  background: rgba(79, 240, 138, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.food-profile-tabs,
.food-profile-actions {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scrollbar-width: thin;
}

.food-profile-tabs span,
.food-profile-actions span {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f8f9fb;
  background: #2b2e38;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.food-profile-tabs span {
  padding: 9px 18px;
}

.food-profile-tabs span:first-child {
  border-color: #dfe3ed;
  background: #343846;
}

.food-profile-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr 0.9fr;
  gap: 4px;
  height: clamp(190px, 24vw, 280px);
  overflow: hidden;
}

.food-profile-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-profile-actions {
  justify-content: center;
  padding-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.food-profile-actions span {
  padding: 12px 18px;
}

.food-profile-actions span:nth-child(-n + 2) {
  color: #bcd6ff;
}

.food-profile-info {
  display: grid;
}

.food-profile-info p {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #e9edf7;
  font-size: 15px;
  line-height: 1.5;
}

.food-profile-info p:last-child {
  border-bottom: 0;
}

.food-profile-info strong {
  color: #9ebdff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.food-feature-grid {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.food-feature-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.08);
}

.food-feature-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.food-feature-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.food-feature-card p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.62;
}

.template-showcase-head {
  max-width: 980px;
}

.template-showcase-head h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.template-showcase-head > p:not(.eyebrow) {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.template-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.template-example-card {
  display: flex;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.09);
  color: inherit;
  flex-direction: column;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.template-example-card:hover,
.template-example-card:focus-visible {
  border-color: rgba(178, 31, 214, 0.28);
  box-shadow: 0 22px 52px rgba(36, 28, 43, 0.14);
  transform: translateY(-2px);
}

.template-example-card:focus-visible {
  outline: 3px solid rgba(178, 31, 214, 0.24);
  outline-offset: 4px;
}

.template-example-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: #170922;
}

.template-example-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.template-example-card:hover .template-example-media img {
  transform: scale(1.025);
}

.template-example-copy {
  flex: 1;
  min-width: 0;
  padding: 24px;
}

.template-example-copy > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.template-example-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.08;
}

.template-example-copy p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.template-example-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 900;
}

.restaurant-example-body {
  background: #130f0d;
}

.restaurant-landing {
  --restaurant-bg: #17110f;
  --restaurant-panel: #120e0d;
  --restaurant-text: #f2eee7;
  --restaurant-muted: #c9c0b4;
  --restaurant-soft: #80766c;
  --restaurant-accent: #d48635;
  --restaurant-accent-2: #e2b05e;
  min-height: 100vh;
  overflow: hidden;
  color: var(--restaurant-text);
  background: var(--restaurant-bg);
  font-family: "Work Sans", system-ui, sans-serif;
}

.restaurant-landing--pizza {
  --restaurant-bg: #faf2e5;
  --restaurant-panel: #352621;
  --restaurant-text: #34251f;
  --restaurant-muted: #5f5149;
  --restaurant-soft: #c6b7a6;
  --restaurant-accent: #b6402e;
  --restaurant-accent-2: #dfa057;
}

.restaurant-landing--ember {
  --restaurant-bg: #181312;
  --restaurant-panel: #100d0c;
  --restaurant-text: #f2eee7;
  --restaurant-muted: #c4baad;
  --restaurant-soft: #786f65;
  --restaurant-accent: #d9892d;
  --restaurant-accent-2: #edab4f;
}

.restaurant-landing--jade {
  --restaurant-bg: #111513;
  --restaurant-panel: #0d100f;
  --restaurant-text: #f0eee7;
  --restaurant-muted: #c1beb2;
  --restaurant-soft: #727a70;
  --restaurant-accent: #58a87c;
  --restaurant-accent-2: #d5aa4f;
}

.restaurant-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(24px, 5vw, 64px);
  color: #fff;
}

.restaurant-logo {
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-style: italic;
}

.restaurant-landing--ember .restaurant-logo {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.restaurant-nav div {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.restaurant-hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
}

.restaurant-hero img,
.restaurant-story-image,
.restaurant-gallery-grid img,
.restaurant-visit-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-hero img {
  position: absolute;
  inset: 0;
}

.restaurant-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 6, 0.62) 0%, rgba(12, 8, 6, 0.28) 42%, rgba(12, 8, 6, 0.86) 100%);
}

.restaurant-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  max-width: 1040px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(24px, 5vw, 64px) 90px;
  color: #fff;
}

.restaurant-kicker {
  margin: 0 0 18px;
  color: var(--restaurant-accent-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.restaurant-hero-copy h1,
.restaurant-story-copy h2,
.restaurant-section-head h2,
.restaurant-visit-grid h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.restaurant-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(56px, 8vw, 92px);
  line-height: 1.02;
}

.restaurant-hero-copy > p:not(.restaurant-kicker) {
  max-width: 560px;
  margin: 0;
  color: #eee8df;
  font-size: 19px;
  line-height: 1.6;
}

.restaurant-story,
.restaurant-gallery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px clamp(24px, 5vw, 64px);
}

.restaurant-story {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
}

.restaurant-story-copy h2 {
  margin-bottom: 28px;
  color: var(--restaurant-text);
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.15;
}

.restaurant-story-copy p:not(.restaurant-kicker) {
  margin: 0 0 20px;
  color: var(--restaurant-muted);
  font-size: 17px;
  line-height: 1.85;
}

.restaurant-landing--pizza .restaurant-story-copy p:not(.restaurant-kicker) {
  color: var(--restaurant-muted);
}

.restaurant-story-image,
.restaurant-visit-grid img,
.restaurant-gallery-grid img {
  border-radius: 4px;
}

.restaurant-story-image {
  min-height: 520px;
}

.restaurant-menu-section,
.restaurant-visit-section {
  padding: 110px clamp(24px, 5vw, 64px);
  color: #fff;
  background: var(--restaurant-panel);
}

.restaurant-section-head {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.restaurant-section-head h2 {
  color: inherit;
  font-size: clamp(36px, 4vw, 46px);
}

.restaurant-menu-grid {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(36px, 6vw, 80px);
}

.restaurant-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.restaurant-menu-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
}

.restaurant-menu-item span {
  display: block;
  color: var(--restaurant-soft);
  font-size: 14px;
  line-height: 1.4;
}

.restaurant-menu-item em {
  flex: 0 0 auto;
  color: var(--restaurant-accent-2);
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
}

.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.restaurant-gallery-grid .featured {
  grid-row: span 2;
}

.restaurant-visit-grid {
  display: grid;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
}

.restaurant-visit-grid h2 {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(34px, 4vw, 42px);
}

.restaurant-visit-details {
  margin: 0 0 34px;
  color: var(--restaurant-muted);
  font-size: 17px;
  line-height: 2;
}

.restaurant-visit-grid img {
  min-height: 360px;
}

.restaurant-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: var(--restaurant-accent);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.restaurant-landing--ember .restaurant-cta {
  color: #15100e;
}

.restaurant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px clamp(24px, 5vw, 64px);
  color: var(--restaurant-soft);
  background: var(--restaurant-bg);
  font-size: 13px;
}

.restaurant-footer span:first-child {
  color: var(--restaurant-text);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}

.restaurant-landing--ember .restaurant-footer span:first-child {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .restaurant-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .restaurant-nav div {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .restaurant-hero {
    min-height: 680px;
  }

  .restaurant-hero-copy {
    padding: 0 24px 72px;
  }

  .restaurant-story,
  .restaurant-visit-grid,
  .restaurant-menu-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-story.image-first .restaurant-story-copy {
    order: -1;
  }

  .restaurant-story,
  .restaurant-gallery-section {
    padding: 88px 24px;
  }

  .restaurant-menu-section,
  .restaurant-visit-section {
    padding: 88px 24px;
  }

  .restaurant-story-image {
    min-height: 420px;
  }

  .restaurant-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .restaurant-gallery-grid .featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .restaurant-nav {
    padding: 18px;
  }

  .restaurant-logo {
    font-size: 23px;
  }

  .restaurant-nav div {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .restaurant-hero {
    min-height: 640px;
  }

  .restaurant-hero-copy {
    padding: 0 18px 56px;
  }

  .restaurant-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  .restaurant-hero-copy h1 {
    font-size: 48px;
  }

  .restaurant-hero-copy > p:not(.restaurant-kicker),
  .restaurant-story-copy p:not(.restaurant-kicker),
  .restaurant-visit-details {
    font-size: 16px;
  }

  .restaurant-story,
  .restaurant-gallery-section,
  .restaurant-menu-section,
  .restaurant-visit-section {
    padding: 68px 18px;
  }

  .restaurant-story-image {
    min-height: 320px;
  }

  .restaurant-section-head {
    margin-bottom: 42px;
  }

  .restaurant-menu-item {
    align-items: flex-start;
  }

  .restaurant-gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .restaurant-gallery-grid img {
    height: 260px;
  }

  .restaurant-visit-grid img {
    min-height: 300px;
  }

  .restaurant-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 45, 142, 0.1), transparent 24%),
    #fff;
  box-shadow: 0 14px 38px rgba(36, 28, 43, 0.08);
}

.route-card-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
}

.route-card-grid p {
  color: var(--body);
  line-height: 1.62;
}

.industry-deep-dive {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 70px);
  background:
    radial-gradient(circle at 8% 12%, rgba(164, 91, 244, 0.12), transparent 26%),
    linear-gradient(180deg, #fff, #fbf8fc);
}

.industry-research-copy {
  max-width: 980px;
}

.industry-research-copy h2,
.industry-page-plan h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.industry-research-copy > p:not(.eyebrow) {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.industry-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-insight-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(36, 28, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.07);
}

.industry-insight-card span,
.industry-page-plan-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #7c5cff);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-insight-card h3,
.industry-page-plan-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.industry-insight-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-insight-card li {
  position: relative;
  padding-left: 20px;
  color: var(--body);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.industry-insight-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 196, 94, 0.12);
}

.industry-page-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: start;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(236, 231, 241, 0.78);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 106, 0, 0.12), transparent 26%),
    #fff;
}

.industry-page-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.industry-page-plan-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(36, 28, 43, 0.08);
  border-radius: 8px;
  background: #fbf8fc;
}

.industry-page-plan-grid p {
  margin: 0;
  color: var(--body);
  font-weight: 650;
  line-height: 1.65;
}

.package-builder-page {
  background: var(--paper);
}

.package-builder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0 42px;
}

.package-builder-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
}

.package-builder-hero p:not(.eyebrow),
.builder-payment-note p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.package-builder-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
}

.builder-payment-note {
  padding: 26px;
  border: 1px solid rgba(236, 231, 241, 0.95);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 45, 142, 0.14), transparent 32%),
    #fff;
  box-shadow: 0 16px 40px rgba(36, 28, 43, 0.08);
}

.builder-payment-note span,
.builder-item span {
  display: inline-block;
  width: fit-content;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-payment-note strong {
  display: block;
  margin: 12px 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.builder-options {
  display: grid;
  gap: 24px;
}

.builder-cart-preview {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1.4fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(36, 28, 43, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.08);
}

.builder-cart-preview h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.cart-preview-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.cart-preview-items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(35, 196, 94, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(35, 196, 94, 0.08);
}

.cart-preview-items strong {
  color: var(--green);
  white-space: nowrap;
}

.cart-preview-totals {
  display: grid;
  gap: 6px;
  min-width: 150px;
  color: var(--body);
  font-weight: 800;
}

.cart-preview-totals span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-preview-totals strong {
  color: var(--ink);
}

.builder-cart-preview > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.builder-cart-preview.has-items {
  border-color: rgba(35, 196, 94, 0.42);
  box-shadow: 0 18px 42px rgba(35, 196, 94, 0.12);
}

.builder-section-head {
  margin-top: 18px;
}

.builder-section-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.builder-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.builder-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 28, 43, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.builder-item.selected {
  border-color: rgba(35, 196, 94, 0.6);
  box-shadow: 0 18px 42px rgba(35, 196, 94, 0.14);
  transform: translateY(-2px);
}

.builder-item h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.builder-item p {
  margin: 0;
  color: var(--body);
  line-height: 1.58;
}

.builder-item-footer {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.builder-item-footer strong {
  color: var(--ink);
  font-size: 26px;
}

.builder-item-footer small {
  color: var(--muted);
  font-weight: 700;
}

.builder-item button,
.builder-checkout,
.cart-list button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.builder-item button {
  min-height: 46px;
  color: #fff;
  background: var(--ink);
}

.builder-item.selected button {
  color: var(--ink);
  background: var(--amber);
}

.builder-cart {
  position: relative;
}

.builder-cart-card {
  position: sticky;
  top: 102px;
  padding: 26px;
  border: 1px solid rgba(236, 231, 241, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.builder-cart-card h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 18px;
  color: var(--ink);
  font-size: 34px;
}

.builder-cart-card h2 span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(35, 196, 94, 0.09);
  font-size: 13px;
  white-space: nowrap;
}

.cart-empty {
  padding: 18px;
  border-radius: 8px;
  color: var(--body);
  background: var(--paper);
  font-weight: 800;
}

.cart-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.cart-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-list span {
  font-weight: 900;
}

.cart-list strong {
  color: var(--magenta);
}

.cart-list button {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 7px 10px;
  color: var(--body);
  background: var(--paper);
  font-size: 12px;
}

.cart-totals {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--body);
  font-weight: 800;
}

.cart-totals strong {
  color: var(--ink);
}

.builder-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 20px;
  color: #fff;
  background: var(--green);
  text-align: center;
  box-shadow: 0 16px 32px rgba(35, 196, 94, 0.24);
}

.builder-checkout.disabled {
  color: var(--muted);
  background: var(--paper);
  box-shadow: none;
  pointer-events: none;
}

.builder-fineprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.service-template {
  color: #1a1a1a;
  background: var(--service-bg);
}

.service-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

.service-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 8px;
}

.service-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.service-brand img {
  display: block;
  height: 56px;
  width: auto;
}

.service-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 26px);
  margin-left: auto;
}

.service-nav-links a {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
}

.service-nav-links a:hover,
.service-nav-links a[aria-current="page"] {
  color: var(--service-accent);
}

.service-contact {
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #1a1a1a;
  cursor: pointer;
  padding: 12px 20px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.service-menu-toggle {
  display: none;
  border-color: #1a1a1a;
  background: #fff;
}

.service-redesign-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 48px 0 56px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 16px;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.service-hero-copy h1 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #1a1a1a;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.service-hero-copy h1 span {
  color: var(--service-accent);
  font-style: normal;
}

.service-hero-copy h1 em {
  color: #ff5c8a;
  font-style: normal;
}

.service-hero-copy p {
  max-width: 470px;
  margin: 0 0 28px;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.service-redesign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-redesign-actions button,
.service-redesign-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  cursor: pointer;
  padding: 14px 26px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.service-redesign-actions button {
  border: 2px solid #1a1a1a;
  color: #fff;
  background: #1a1a1a;
}

.service-redesign-actions a {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  background: #fff;
}

.service-mockup,
.example-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 26, 0.44);
  background: repeating-linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.035),
    rgba(26, 26, 26, 0.035) 10px,
    rgba(26, 26, 26, 0.06) 10px,
    rgba(26, 26, 26, 0.06) 20px
  );
  font: 700 11px ui-monospace, Menlo, Consolas, monospace;
  text-align: center;
}

.service-mockup {
  min-height: 340px;
  border: 2px solid #1a1a1a;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(10px, 1.5vw, 18px);
}

.service-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(26, 26, 26, 0.12);
}

.service-mockup--generated {
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: #fff;
}

.service-mockup img.generated-visual {
  max-height: none;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: none;
}

.service-mockup--google-ads {
  align-items: stretch;
  justify-content: stretch;
  min-height: 430px;
  padding: 0;
  background: #edf1f5;
}

.google-ads-dashboard-replica {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  color: #263238;
  background: #f6f8fb;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  text-align: left;
  grid-template-rows: auto auto auto 1fr;
}

.ads-dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #d8dee6;
  background: #fff;
}

.ads-dashboard-title {
  display: block;
  color: #202124;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.ads-dashboard-subtitle {
  display: block;
  margin-top: 7px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ads-dashboard-date {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid #c7ced8;
  border-radius: 6px;
  color: #3c4043;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ads-dashboard-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  color: #5f6368;
  background: #eef1f4;
  font-size: 12px;
  font-weight: 800;
}

.ads-dashboard-new {
  margin-right: auto;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: #1a73e8;
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.25);
}

.ads-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ads-metric-card {
  min-width: 0;
  padding: 18px 20px 20px;
  color: #fff;
}

.ads-metric-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.92;
}

.ads-metric-card strong {
  display: block;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.ads-metric-card.blue {
  background: #3b78d8;
}

.ads-metric-card.red {
  background: #d34235;
}

.ads-metric-card.amber {
  background: #f3b33d;
  color: #3f3f46;
}

.ads-metric-card.green {
  background: #438e46;
}

.ads-dashboard-chart {
  display: grid;
  min-height: 0;
  padding: 18px 24px 20px;
  background: #fff;
  grid-template-rows: minmax(190px, 1fr) auto;
}

.ads-dashboard-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
}

.ads-chart-grid {
  fill: none;
  stroke: #e3e7ed;
  stroke-width: 1.5;
}

.ads-chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.ads-chart-line.blue {
  stroke: #3b78d8;
}

.ads-chart-line.red {
  stroke: #c94a3c;
}

.ads-chart-line.amber {
  stroke: #f2b33d;
}

.ads-chart-line.green {
  stroke: #438e46;
}

.ads-dashboard-axis {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: #8a8f98;
  font-size: 12px;
  font-weight: 800;
}

.service-pricing {
  padding: 0 0 64px;
}

.service-section-label {
  margin: 0 0 8px;
  color: var(--service-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.service-section-label.align-left {
  text-align: left;
}

.service-pricing h2,
.service-examples h2 {
  margin: 0;
  color: #1a1a1a;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.service-pricing h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 34px);
  text-align: center;
}

.service-pricing .pricing-offer {
  width: fit-content;
  margin: 0 auto 32px;
  padding: 9px 14px;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  color: #1a1a1a;
  background: #ffd23f;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.service-pricing .pricing-note {
  margin: -20px 0 36px;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 430px;
  padding: 32px 28px;
  border: 2px solid #1a1a1a;
  border-radius: 24px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -18px rgba(26, 26, 26, 0.5);
}

.price-card:focus-visible {
  outline: 3px solid #ffd23f;
  outline-offset: 4px;
}

.price-card.popular {
  border-color: var(--service-accent);
  color: #fff;
  background: var(--service-accent);
  box-shadow: 0 12px 28px -8px color-mix(in srgb, var(--service-accent) 60%, transparent);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  color: #1a1a1a;
  background: #ffd23f;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.tier-name {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 800;
}

.price-card.popular .tier-name {
  color: #fff;
}

.tier-original {
  margin-top: 14px;
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.tier-original s {
  text-decoration-thickness: 2px;
}

.price-card.popular .tier-original {
  color: rgba(255, 255, 255, 0.78);
}

.tier-price {
  margin: 6px 0 4px;
  color: #1a1a1a;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.tier-price span {
  font-size: 18px;
}

.price-card.popular .tier-price {
  color: #fff;
}

.tier-discount {
  width: fit-content;
  margin: 2px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1a1a1a;
  background: #ffd23f;
  font-size: 12px;
  font-weight: 900;
}

.price-card.popular .tier-discount {
  color: var(--service-accent);
  background: #fff;
}

.tier-note {
  margin-bottom: 22px;
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 700;
}

.price-card.popular .tier-note {
  color: rgba(255, 255, 255, 0.82);
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
}

.price-card.popular ul {
  color: #fff;
}

.price-card-button {
  display: block;
  width: 100%;
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  color: #1a1a1a;
  background: color-mix(in srgb, var(--service-bg) 82%, #fff);
  padding: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.price-card.popular .price-card-button {
  color: var(--service-accent);
  background: #fff;
}

.pricing-research {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 72px;
  padding: 34px;
  border: 2px solid rgba(26, 26, 26, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.06);
}

.pricing-research-copy .service-section-label {
  text-align: left;
}

.pricing-research-copy h2 {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.pricing-research-copy p:last-child {
  margin: 0;
  color: #5c5563;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.pricing-research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-research-card {
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--service-bg), #fff);
}

.pricing-research-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--service-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-research-card strong {
  display: block;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 900;
  line-height: 1;
}

.pricing-research-card p {
  margin: 0;
  color: #5c5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.seo-tools-section {
  overflow: hidden;
  margin: 0 0 64px;
  padding: clamp(42px, 6vw, 68px) 0;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 194, 168, 0.2), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(106, 31, 200, 0.28), transparent 30%),
    #080e27;
}

.seo-tools-copy {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.seo-tools-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.seo-tools-copy p:not(.service-section-label) {
  max-width: 900px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.seo-tools-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.seo-tools-marquee::before,
.seo-tools-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}

.seo-tools-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #080e27, transparent);
}

.seo-tools-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #080e27, transparent);
}

.seo-tools-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 72px);
  animation: seo-tools-slide 34s linear infinite;
  will-change: transform;
}

.seo-tools-marquee:hover .seo-tools-track {
  animation-play-state: paused;
}

.seo-tool-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 128px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.seo-tool-card img {
  width: 82px;
  height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  object-fit: contain;
}

.seo-tool-card span {
  font-size: 15px;
  line-height: 1.2;
}

.seo-competition-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 0 0 64px;
  padding: clamp(44px, 7vw, 76px) clamp(20px, 5vw, 70px);
  border-radius: 28px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 214, 45, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(0, 194, 168, 0.14), transparent 30%),
    #082506;
  box-shadow: 0 28px 70px rgba(7, 23, 6, 0.2);
}

.seo-competition-cta .service-section-label {
  color: #36d72f;
  letter-spacing: 0.18em;
}

.seo-competition-cta h2 {
  max-width: 1220px;
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.seo-competition-cta h2 span {
  color: #2fd12b;
}

.seo-competition-cta > strong {
  max-width: 820px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.seo-competition-cta > p:not(.service-section-label) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.seo-competition-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.seo-competition-actions button,
.seo-competition-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.seo-competition-actions button {
  border: 0;
  color: #fff;
  background: #2fc92d;
  box-shadow: 0 18px 38px rgba(47, 201, 45, 0.22);
  cursor: pointer;
}

.seo-competition-actions a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.seo-competition-cta ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-competition-cta li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.seo-competition-cta li span {
  color: #49df40;
  font-weight: 900;
}

.seo-industries-section,
.seo-process-section,
.seo-location-section,
.seo-comparison-section {
  margin: 0 0 64px;
}

.seo-section-head {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.seo-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.seo-section-head h2 span {
  color: #26bd21;
}

.seo-section-head p:not(.service-section-label) {
  max-width: 820px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.seo-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.seo-industry-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 246px;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.1), rgba(5, 8, 13, 0.86)),
    var(--industry-image) center / cover,
    linear-gradient(135deg, #083f2d, #05090f);
  box-shadow: 0 24px 58px rgba(6, 21, 15, 0.16);
}

.seo-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(52, 215, 48, 0.24), transparent 34%);
  opacity: 0.88;
}

.seo-industry-card div {
  position: relative;
  z-index: 1;
}

.seo-industry-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: #24be22;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.seo-industry-card h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.seo-industry-card p {
  max-width: 460px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.seo-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.seo-process-card {
  min-height: 320px;
  padding: 30px 24px;
  border: 1px solid rgba(20, 28, 41, 0.1);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 46px rgba(9, 22, 18, 0.06);
}

.seo-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 2px dashed #2fca2d;
  border-radius: 999px;
  color: #1aad17;
  font-weight: 900;
}

.seo-process-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.seo-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.seo-location-section {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(40, 185, 33, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(39, 209, 35, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0fbef 100%);
  box-shadow: 0 26px 66px rgba(9, 40, 13, 0.08);
}

.seo-location-search {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}

.seo-location-search input {
  width: min(100%, 460px);
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(15, 36, 20, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 34px rgba(9, 28, 16, 0.08);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.seo-location-search input:focus {
  border-color: rgba(41, 192, 34, 0.58);
  box-shadow: 0 0 0 4px rgba(41, 192, 34, 0.12), 0 16px 34px rgba(9, 28, 16, 0.08);
}

.seo-location-groups {
  display: grid;
  gap: 24px;
}

.seo-location-group {
  padding: 26px;
  border: 1px solid rgba(15, 36, 20, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.seo-location-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.seo-location-group p {
  max-width: 940px;
  margin: 10px 0 22px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.seo-location-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.seo-location-chip {
  min-height: 42px;
  padding: 0 17px;
  border: 2px solid #55b80f;
  border-radius: 10px;
  color: #4c970d;
  background: #fff;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.seo-location-chip:hover,
.seo-location-chip:focus-visible {
  color: #fff;
  background: #55b80f;
  transform: translateY(-1px);
}

.seo-location-chip.is-hidden {
  display: none;
}

.seo-comparison-section {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 28px;
  background: #eaf8e8;
}

.seo-comparison-table-wrap {
  overflow-x: auto;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(5, 23, 7, 0.1);
}

.seo-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.seo-comparison-table th,
.seo-comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(11, 35, 14, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.5;
}

.seo-comparison-table thead th {
  color: #fff;
  background: #27ae1f;
  font-size: 17px;
  font-weight: 900;
}

.seo-comparison-table tbody th {
  width: 27%;
  color: var(--ink);
  font-weight: 900;
}

.seo-comparison-table td:nth-child(2) {
  color: #0c7d22;
  font-weight: 750;
}

.seo-comparison-table tr:last-child th,
.seo-comparison-table tr:last-child td {
  border-bottom: 0;
}

.paid-media-tools-section {
  overflow: hidden;
  margin: 0 0 64px;
  padding: clamp(44px, 6vw, 72px) 0;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 159, 28, 0.2), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(164, 91, 244, 0.22), transparent 30%),
    #080e27;
}

.paid-media-tools-head {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.paid-media-tools-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.paid-media-tools-head p:not(.service-section-label) {
  max-width: 860px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.paid-media-orbit {
  display: grid;
  gap: 24px;
  padding: 14px 0;
}

.paid-media-marquee {
  overflow: hidden;
  transform: rotate(-1deg);
}

.paid-media-marquee.reverse {
  transform: rotate(1deg);
}

.paid-media-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 78px);
  animation: paid-media-slide 32s linear infinite;
  will-change: transform;
}

.paid-media-marquee.reverse .paid-media-track {
  animation-direction: reverse;
  animation-duration: 38s;
}

.paid-media-marquee:hover .paid-media-track {
  animation-play-state: paused;
}

.paid-media-tool {
  display: grid;
  grid-template-columns: 62px auto;
  align-items: center;
  min-width: 210px;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.paid-media-tool img {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.paid-media-tool span {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.google-ads-app-store-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  margin: 0 0 72px;
  padding: clamp(44px, 7vw, 92px) clamp(24px, 6vw, 74px);
  border: 1px solid rgba(36, 28, 43, 0.06);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(36, 28, 43, 0.06);
}

.google-ads-app-store-copy {
  max-width: 560px;
}

.google-ads-app-store-copy h2 {
  margin: 0 0 26px;
  color: #050914;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.google-ads-app-store-copy h2 span {
  color: #4285f4;
}

.google-ads-app-store-copy p {
  margin: 0 0 22px;
  color: #747789;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.75;
}

.google-ads-app-store-copy button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #4285f4;
  box-shadow: 0 18px 34px rgba(66, 133, 244, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.google-ads-app-store-copy button::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.38);
}

.google-ads-app-store-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 38vw, 560px);
}

.google-ads-app-orbit {
  position: absolute;
  width: min(88%, 560px);
  aspect-ratio: 1;
  border: 2px solid rgba(36, 28, 43, 0.2);
  border-radius: 50%;
}

.google-ads-app-store-visual > img {
  position: relative;
  z-index: 1;
  width: min(92%, 600px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(36, 28, 43, 0.12));
}

.google-ads-platform-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 128px;
  min-height: 118px;
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(36, 28, 43, 0.16);
  text-align: center;
}

.google-ads-platform-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.google-ads-platform-card span {
  color: #686b78;
  font-size: 13px;
  font-weight: 900;
}

.google-ads-platform-card.ads-card {
  top: 18%;
  right: 8%;
}

.google-ads-platform-card.play-card {
  left: 6%;
  bottom: 28%;
}

.google-ads-playbook-section {
  display: grid;
  gap: 28px;
  margin: 0 0 68px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 159, 28, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 159, 28, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 246, 233, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 24px 60px rgba(36, 28, 43, 0.08);
}

.google-ads-playbook-copy {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.google-ads-playbook-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.google-ads-playbook-copy p:not(.service-section-label) {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.google-ads-playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.google-ads-playbook-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(36, 28, 43, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.07);
}

.google-ads-playbook-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1f1607;
  background: #ffd23f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.google-ads-playbook-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.google-ads-playbook-card p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.google-ads-audit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 159, 28, 0.28), transparent 28%),
    #080e27;
}

.google-ads-audit-panel h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.google-ads-audit-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.7;
}

.google-ads-audit-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.google-ads-audit-panel li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.paid-services-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  margin: 0 0 68px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid color-mix(in srgb, var(--service-accent) 28%, transparent);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 8%, color-mix(in srgb, var(--service-accent) 18%, transparent), transparent 28%),
    linear-gradient(135deg, #fff, color-mix(in srgb, var(--service-bg) 72%, #fff));
  box-shadow: 0 24px 60px rgba(36, 28, 43, 0.08);
}

.paid-services-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.paid-services-copy h2,
.paid-process-head h2,
.paid-benefits-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.paid-services-copy p:not(.service-section-label),
.paid-process-head p:not(.service-section-label),
.paid-benefits-section p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.paid-service-visual {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #0a0c1c;
  box-shadow: 0 22px 46px rgba(36, 28, 43, 0.14);
}

.paid-service-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.paid-service-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 14, 39, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.paid-service-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.paid-service-card,
.paid-process-step {
  padding: 22px;
  border: 1px solid rgba(36, 28, 43, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.07);
}

.paid-service-card span,
.paid-process-step span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--service-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.paid-service-card h3,
.paid-process-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.paid-service-card p,
.paid-process-step p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.62;
}

.paid-process-section {
  display: grid;
  gap: 24px;
  margin: 0 0 68px;
}

.paid-process-head {
  max-width: 890px;
}

.paid-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.paid-process-step {
  min-height: 210px;
}

.paid-process-step span {
  color: var(--service-accent);
  background: color-mix(in srgb, var(--service-accent) 12%, #fff);
}

.paid-benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: 0 0 68px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--service-accent) 35%, transparent), transparent 30%),
    #080e27;
}

.paid-benefits-section h2 {
  color: #fff;
}

.paid-benefits-section p {
  color: rgba(255, 255, 255, 0.78);
}

.paid-benefits-section ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.paid-benefits-section li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  line-height: 1.45;
}

.paid-benefits-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--service-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--service-accent) 60%, transparent);
}

.paid-benefit-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.paid-benefit-stat {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.paid-benefit-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.paid-benefit-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.25;
}

.website-capabilities-section {
  padding: clamp(40px, 6vw, 76px) 0 72px;
}

.website-capabilities-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.website-capabilities-head h2 {
  margin: 0;
  color: #1f232b;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.website-capabilities-head h2 span {
  display: block;
  color: var(--service-accent);
}

.website-capabilities-head p {
  margin: 4px 0 0;
  color: #74727d;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  line-height: 1.45;
}

.website-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.website-capability-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 32px;
  border-radius: 18px;
  background: #f1f1f2;
}

.website-capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  border-bottom-left-radius: 22px;
  background: var(--service-accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.capability-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  color: var(--service-accent);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.website-capability-card h3 {
  max-width: 210px;
  margin: 0 0 22px;
  color: #050505;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.02;
}

.website-capability-card p {
  margin: 0;
  color: #74727d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.website-process-section {
  margin: 0 0 72px;
  padding: clamp(58px, 7vw, 88px) clamp(20px, 5vw, 58px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(124, 92, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 92%, rgba(255, 45, 142, 0.16), transparent 30%),
    linear-gradient(135deg, #08050d, #1f0f2e 62%, #120818);
}

.website-process-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto clamp(42px, 6vw, 72px);
}

.website-process-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(42px, 5.6vw, 66px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.website-process-head h2 span {
  display: block;
  color: var(--service-accent);
}

.website-process-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 600;
  line-height: 1.6;
}

.website-process-browser {
  overflow: hidden;
  width: min(1020px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(14, 10, 22, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.browser-topbar {
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red {
  background: #ff5f56;
}

.browser-dot.yellow {
  background: #ffbd2e;
}

.browser-dot.green {
  background: #27c93f;
}

.browser-address {
  width: min(560px, 100%);
  margin-inline: auto;
  padding: 7px 12px;
  border-radius: 6px;
  color: rgba(20, 20, 20, 0.56);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.website-process-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: 24px;
  padding: 28px 28px 24px;
}

.website-process-feature > div:first-child {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.08);
}

.website-process-feature h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.website-process-feature p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.website-process-image {
  display: grid;
  min-height: 210px;
  place-items: end start;
  overflow: hidden;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 68% 30%, rgba(255, 189, 46, 0.32), transparent 24%),
    linear-gradient(135deg, #3b2754, #101018);
}

.website-process-image span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.website-process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  padding: 0 28px 28px;
}

.website-process-step {
  display: grid;
  align-content: space-between;
  min-height: 138px;
  padding: 24px 18px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.website-process-step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.website-process-step:focus-visible {
  outline: 3px solid rgba(255, 210, 63, 0.95);
  outline-offset: 4px;
}

.website-process-step.active {
  color: #151515;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.website-process-step span {
  color: var(--service-accent);
  font-size: 20px;
  font-weight: 900;
}

.website-process-step strong {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

@keyframes seo-tools-slide {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes paid-media-slide {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-tools-track,
  .paid-media-track,
  .project-showcase-track {
    animation: none;
    transform: none;
  }
}

.success-stories-section {
  margin: 0 0 64px;
  padding: clamp(42px, 6vw, 68px) clamp(18px, 3vw, 34px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 159, 28, 0.22), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(142, 67, 255, 0.26), transparent 30%),
    #080e27;
}

.success-stories-head {
  width: min(920px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.success-stories-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.success-stories-head p:not(.service-section-label) {
  max-width: 780px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.success-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.success-story-card {
  position: relative;
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(8, 14, 39, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.success-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff8a2a, rgba(142, 67, 255, 0.95), rgba(0, 194, 168, 0.7));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.success-story-card h3 {
  min-height: 74px;
  margin: 0 0 22px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 159, 28, 0.8);
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 19, 52, 0.88);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.success-story-block {
  margin-top: 22px;
}

.success-story-block strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.success-story-block p,
.success-story-block li {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.success-story-block ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.success-story-block li::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 7px;
  border-radius: 50%;
  color: #080e27;
  background: #ffd23f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.service-examples {
  padding: 0 0 64px;
}

.service-examples h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.example-placeholder {
  min-height: 170px;
  border-radius: 18px;
}

.example-placeholder--visual {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: #fff;
  box-shadow: 0 16px 34px rgba(26, 26, 26, 0.08);
}

.example-placeholder img.generated-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-positioning {
  margin-top: 10px;
  color: #f0d7ff !important;
  font-weight: 850;
}

.contact-page {
  padding: 150px 24px 90px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 194, 168, 0.16), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(255, 106, 0, 0.13), transparent 32%),
    #fff;
}

.contact-hero,
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-hero h1,
.contact-form-copy h2 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
}

.contact-hero p:not(.eyebrow),
.contact-form-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(36, 28, 43, 0.08);
  border-radius: 12px;
  background: #fbf8ff;
}

.contact-methods span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--ink);
  font-size: 17px;
}

.contact-form-section {
  margin-top: 40px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(164, 91, 244, 0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(36, 28, 43, 0.09);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit,
.contact-direct-actions a,
.whatsapp-secondary-link {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 900;
}

.contact-submit {
  border: 0;
  color: #fff;
  background: var(--gradient);
  cursor: pointer;
  font: inherit;
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-form-status {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.contact-direct-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.contact-direct-actions a,
.whatsapp-secondary-link {
  display: grid;
  place-items: center;
  padding: 12px 14px;
  text-align: center;
}

.contact-direct-actions a {
  color: #fff;
  background: var(--ink);
}

.whatsapp-secondary-link {
  margin-top: 10px;
  color: #176d37;
  background: #f1fbf4;
}

.demo-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 14, 0.72);
  backdrop-filter: blur(8px);
}

.demo-confirm-modal[aria-hidden="false"] {
  display: grid;
}

.demo-confirm-card {
  position: relative;
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.demo-confirm-card > button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #15100e;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.demo-confirm-card h2 {
  margin: 10px 0 14px;
  color: #15100e;
  font-family: "Newsreader", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.demo-confirm-card p:not(.restaurant-kicker) {
  color: #4b4039;
  font-size: 17px;
  line-height: 1.6;
}

.demo-confirm-card strong {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #15100e;
  background: rgba(203, 99, 43, 0.14);
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 14, 0.78);
  backdrop-filter: blur(8px);
}

.screenshot-lightbox[aria-hidden="false"] {
  display: grid;
}

.screenshot-lightbox-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 48px);
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.screenshot-lightbox-card > button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.screenshot-lightbox-card strong {
  padding-right: 48px;
  color: var(--ink);
  font-size: 18px;
}

.screenshot-lightbox-card img {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 130px);
  object-fit: contain;
  border-radius: 12px;
  background: #f8f5fb;
}

.service-redesign-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.service-redesign-footer strong {
  color: #1a1a1a;
  font-size: 14px;
}

.service-redesign-footer span {
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 600;
}

.showcase {
  background:
    linear-gradient(180deg, #fbf8fc, #fff),
    radial-gradient(circle at 18% 22%, rgba(255, 106, 0, 0.12), transparent 24%);
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.work-card {
  overflow: hidden;
}

.work-card h3,
.work-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.work-card h3 {
  margin-top: 24px;
}

.work-card p {
  margin-bottom: 26px;
}

.work-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: end start;
  padding: 22px;
  background-size: cover;
  background-position: center;
}

.work-visual span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 14, 18, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-visual.trade {
  background:
    linear-gradient(rgba(36, 28, 43, 0.08), rgba(14, 14, 18, 0.74)),
    repeating-linear-gradient(90deg, #ece7f1 0 18px, #fff 18px 36px),
    var(--gradient);
}

.work-visual.food {
  background:
    linear-gradient(rgba(255, 106, 0, 0.08), rgba(14, 14, 18, 0.72)),
    radial-gradient(circle at 28% 35%, #ffce3a 0 9%, transparent 10%),
    radial-gradient(circle at 72% 45%, #ff2d8e 0 8%, transparent 9%),
    linear-gradient(135deg, #fff3e8, #b21fd6);
}

.work-visual.retail {
  background:
    linear-gradient(rgba(36, 28, 43, 0.1), rgba(14, 14, 18, 0.72)),
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.8) 20% 22%, transparent 22% 45%, rgba(255, 255, 255, 0.8) 45% 47%, transparent 47%),
    linear-gradient(135deg, #ff2d8e, #ff6a00);
}

.portfolio-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 45, 142, 0.1), transparent 26%),
    linear-gradient(180deg, #fff, #fbf8fc 42%, #fff);
}

.portfolio-hero {
  padding: clamp(92px, 10vw, 130px) clamp(20px, 5vw, 70px) 56px;
  text-align: center;
}

.portfolio-hero h1 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: 0;
  line-height: 1.02;
}

.portfolio-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--body);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.portfolio-jump-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.portfolio-jump-menu a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 25px rgba(36, 28, 43, 0.06);
  font-size: 14px;
  font-weight: 900;
}

.portfolio-jump-menu a:hover {
  color: #fff;
  background: var(--gradient);
}

.portfolio-section {
  padding: 54px clamp(20px, 5vw, 70px);
  scroll-margin-top: 118px;
}

.portfolio-section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.portfolio-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1.05;
}

.portfolio-section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.portfolio-work-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.portfolio-work-card {
  display: grid;
  align-content: start;
  position: relative;
  flex: 0 0 280px;
  min-height: 220px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(236, 231, 241, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(36, 28, 43, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, flex-basis 220ms ease;
}

.portfolio-work-card.has-image {
  padding: 0;
  flex-basis: 320px;
  min-height: 520px;
  grid-template-rows: 1fr auto auto auto auto;
  background: #120f16;
  color: #fff;
}

.portfolio-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  height: 100%;
  background: #f7f3fb;
}

.portfolio-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.portfolio-card-sheen {
  display: none;
}

.portfolio-work-card.has-image .portfolio-card-sheen {
  display: block;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 12, 0.08) 0%, rgba(10, 8, 12, 0.24) 32%, rgba(10, 8, 12, 0.86) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.portfolio-work-card.has-image:hover .portfolio-card-image img,
.portfolio-work-card.has-image:focus-visible .portfolio-card-image img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.portfolio-work-card:hover,
.portfolio-work-card:focus-visible {
  border-color: rgba(178, 31, 214, 0.28);
  box-shadow: 0 24px 52px rgba(36, 28, 43, 0.12);
  transform: translateY(-3px);
}

.portfolio-work-card.has-image:hover,
.portfolio-work-card.has-image:focus-visible {
  flex-basis: 430px;
  box-shadow: 0 30px 72px rgba(19, 13, 26, 0.2);
}

.portfolio-work-card:focus-visible {
  outline: 3px solid rgba(255, 206, 58, 0.9);
  outline-offset: 3px;
}

.portfolio-work-card span {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: start;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-work-card.has-image span {
  margin: 22px 22px 0;
}

.portfolio-work-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.portfolio-work-card.has-image h3 {
  margin-inline: 22px;
  color: #fff;
  font-size: clamp(26px, 2vw, 34px);
}

.portfolio-work-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.portfolio-work-card.has-image p {
  margin-inline: 22px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34ch;
}

.portfolio-card-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-work-card.has-image .portfolio-card-action {
  margin-left: 22px;
}

.portfolio-work-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.portfolio-work-card.has-image small {
  margin: auto 22px 22px;
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-case-study {
  margin: 0 clamp(20px, 5vw, 70px) 20px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 211, 42, 0.24), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(164, 91, 244, 0.22), transparent 28%),
    #07140a;
  box-shadow: 0 32px 80px rgba(7, 20, 10, 0.22);
}

.case-study-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.case-study-hero h2 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-family: "Baloo 2", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
  line-height: 1.03;
}

.case-study-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.case-study-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.26);
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.case-study-meta div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.case-study-meta dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-meta dd {
  margin: 6px 0 0;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.case-study-metrics article,
.case-study-narrative article,
.case-study-phases article,
.case-study-proof-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.case-study-metrics article {
  display: grid;
  gap: 5px;
  padding: 18px 14px;
  text-align: center;
}

.case-study-metrics strong {
  color: #56e84f;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.case-study-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-study-narrative {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-study-narrative article,
.case-study-phases article,
.case-study-proof-grid article {
  padding: 24px;
}

.case-study-narrative h3,
.case-study-phases h3,
.case-study-proof-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.case-study-narrative p,
.case-study-narrative li,
.case-study-phases p,
.case-study-proof-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.7;
}

.case-study-narrative ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.case-study-phases,
.case-study-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.case-study-phases article > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #07140a;
  background: #56e84f;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-study-proof {
  margin-top: 34px;
}

.case-study-proof .portfolio-section-head h2,
.case-study-proof .portfolio-section-head p:not(.eyebrow) {
  color: #fff;
}

.case-study-proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #56e84f;
  font-size: 20px;
}

.case-study-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.case-study-services > strong {
  color: #fff;
  font-size: 15px;
}

.case-study-services div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-study-services span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.case-study-source {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #07140a;
  background: #56e84f;
  font-weight: 950;
}

.client-spotlight-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 45, 142, 0.16), transparent 32%),
    radial-gradient(circle at 85% 7%, rgba(122, 55, 232, 0.14), transparent 30%),
    linear-gradient(180deg, #fff, #fbf7ff 38%, #fff);
}

.client-spotlight-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(110px, 12vw, 156px) clamp(20px, 5vw, 70px) 54px;
}

.client-spotlight-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 1.02;
}

.client-spotlight-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

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

.client-spotlight-preview {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(236, 231, 241, 0.95);
  border-radius: 28px;
  background: #130c1d;
  box-shadow: 0 34px 82px rgba(36, 28, 43, 0.16);
}

.client-spotlight-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(13, 9, 18, 0.24)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.client-spotlight-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.client-spotlight-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 70px) 34px;
}

.client-spotlight-summary article {
  padding: 22px;
  border: 1px solid rgba(236, 231, 241, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(36, 28, 43, 0.06);
}

.client-spotlight-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-spotlight-summary strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.client-spotlight-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 22px;
  padding: 20px clamp(20px, 5vw, 70px) 54px;
}

.client-spotlight-main {
  display: grid;
  gap: 16px;
}

.client-spotlight-main article,
.client-spotlight-sidebar > div {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(236, 231, 241, 0.96);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 28, 43, 0.06);
}

.client-spotlight-main h2,
.client-spotlight-sidebar h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.client-spotlight-main p,
.client-spotlight-sidebar li {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.client-spotlight-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.client-spotlight-sidebar ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.client-keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.client-keyword-cloud span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #241c2b, #7b23d8);
  font-size: 12px;
  font-weight: 900;
}

.client-spotlight-review,
.client-spotlight-outcome {
  margin: 0 clamp(20px, 5vw, 70px) 28px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 28px;
}

.client-spotlight-review {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 184, 51, 0.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 45, 142, 0.18), transparent 28%),
    #120a1d;
  box-shadow: 0 28px 70px rgba(18, 10, 29, 0.22);
}

.client-spotlight-review h2,
.client-spotlight-outcome h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

.client-spotlight-review h2,
.client-spotlight-review p {
  color: #fff;
}

.client-spotlight-review article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.client-spotlight-review article span {
  color: #ffce3a;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.client-spotlight-review article p {
  margin: 18px 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.5;
}

.client-spotlight-review article strong {
  color: rgba(255, 255, 255, 0.78);
}

.client-spotlight-outcome {
  background: linear-gradient(135deg, #fff2f8, #f4ebff);
  text-align: center;
}

.client-spotlight-outcome h2 {
  color: var(--ink);
}

.client-spotlight-outcome p {
  max-width: 820px;
  margin: 16px auto 24px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  min-height: 340px;
}

.pricing-grid strong {
  display: block;
  margin: 14px 0;
  color: var(--ink);
  font-size: 34px;
}

.pricing-grid .featured {
  border-color: rgba(255, 45, 142, 0.36);
  background: linear-gradient(180deg, #fff, #fff3fa);
  transform: translateY(-10px);
}

.pricing-grid button {
  width: 100%;
  margin-top: 18px;
  padding: 13px 16px;
}

.ai-receptionist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.97), rgba(36, 28, 43, 0.92)),
    var(--gradient);
}

.ai-receptionist .eyebrow {
  color: #ffbde0;
}

.ai-copy h2 {
  color: #fff;
}

.ai-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.ai-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.ai-panel h3 {
  color: #fff;
}

.ai-panel ul {
  display: grid;
  gap: 14px;
  padding-left: 18px;
  margin: 0;
}

.ai-panel li {
  color: rgba(255, 255, 255, 0.8);
}

.ai-panel strong {
  color: #fff;
}

.final-cta {
  margin: 44px clamp(20px, 5vw, 70px) 96px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 14, 18, 0.82), rgba(106, 31, 200, 0.78)),
    var(--gradient);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 48px;
  padding: 28px clamp(20px, 5vw, 70px) 48px;
  color: #c9c2d1;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 45, 142, 0.2), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(106, 31, 200, 0.34), transparent 34%),
    linear-gradient(180deg, #170922 0%, #240b39 48%, #0b0a10 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 62%);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-skyline {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: clamp(5px, 1vw, 12px);
  min-height: clamp(88px, 12vw, 148px);
  padding: 26px clamp(6px, 2vw, 24px) 0;
  margin: 0 0 -16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-skyline span {
  position: relative;
  flex: 1 1 0;
  min-width: 12px;
  height: var(--skyline-height, 72px);
  border-radius: 5px 5px 0 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.1) 18% 24%, transparent 24% 47%, rgba(255, 255, 255, 0.1) 47% 53%, transparent 53% 76%, rgba(255, 255, 255, 0.1) 76% 82%, transparent 82%),
    linear-gradient(180deg, rgba(255, 206, 58, 0.16), rgba(255, 45, 142, 0.12) 42%, rgba(60, 12, 96, 0.94));
  box-shadow:
    inset 0 12px 20px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(178, 31, 214, 0.24);
}

.footer-skyline span::after {
  content: "";
  position: absolute;
  inset: 18% 25% 14%;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 206, 58, 0.8) 0 2px, transparent 2.5px);
  background-size: 16px 18px;
}

.footer-skyline span:nth-child(1) { --skyline-height: 54px; }
.footer-skyline span:nth-child(2) { --skyline-height: 72px; }
.footer-skyline span:nth-child(3) { --skyline-height: 62px; }
.footer-skyline span:nth-child(4) { --skyline-height: 108px; }
.footer-skyline span:nth-child(5) { --skyline-height: 82px; }
.footer-skyline span:nth-child(6) { --skyline-height: 132px; }
.footer-skyline span:nth-child(7) { --skyline-height: 92px; }
.footer-skyline span:nth-child(8) { --skyline-height: 64px; }
.footer-skyline span:nth-child(9) { --skyline-height: 76px; }
.footer-skyline span:nth-child(10) { --skyline-height: 58px; }
.footer-skyline span:nth-child(11) { --skyline-height: 94px; }
.footer-skyline span:nth-child(12) { --skyline-height: 72px; }
.footer-skyline span:nth-child(13) { --skyline-height: 118px; }
.footer-skyline span:nth-child(14) { --skyline-height: 84px; }

.footer-skyline span:nth-child(4)::before,
.footer-skyline span:nth-child(6)::before,
.footer-skyline span:nth-child(11)::before,
.footer-skyline span:nth-child(13)::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 100%;
  width: 4px;
  height: 22px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 206, 58, 0.8), rgba(255, 45, 142, 0.72));
  transform: translateX(50%);
}

.footer-skyline span:nth-child(6),
.footer-skyline span:nth-child(13) {
  clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 100%, 0 100%);
}

.footer-skyline span:nth-child(9) {
  border-radius: 999px 999px 0 0;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo-card img {
  display: block;
  width: 70px;
  height: auto;
}

.footer-brand-lockup {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-brand-lockup strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.footer-brand-lockup span {
  color: #ff8b3d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 440px;
  color: #b8b2c4;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  display: block;
  margin: 10px 0;
  color: #c9c2d1;
  background: transparent;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #23c45e;
  box-shadow: 0 16px 38px rgba(35, 196, 94, 0.34);
  cursor: pointer;
  font-weight: 900;
}

.mobile-action-nav {
  display: none;
}

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(164, 91, 244, 0.22), transparent 30%),
    rgba(8, 6, 14, 0.78);
  backdrop-filter: blur(8px);
}

.chat-modal[aria-hidden="false"] {
  display: grid;
}

.chat-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.close-chat {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: var(--body);
  background: #f3eef7;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.chat-left,
.chat-right {
  padding: clamp(26px, 4vw, 48px);
}

.chat-left {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 106, 0, 0.22), transparent 28%),
    radial-gradient(circle at 94% 92%, rgba(255, 45, 142, 0.18), transparent 34%),
    linear-gradient(155deg, #180a22 0%, #281039 58%, #09070d 100%);
  color: #fff;
}

.chat-left img {
  width: 52px;
  height: auto;
}

.ai-alert-flash {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 206, 58, 0.5);
  border-radius: 999px;
  color: #dffdf5;
  background: rgba(0, 194, 168, 0.15);
  box-shadow: 0 0 28px rgba(0, 194, 168, 0.16);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-alert-flash span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #00c2a8;
  box-shadow: 0 0 0 4px rgba(0, 194, 168, 0.18);
}

.chat-left h2,
.chat-right h2 {
  margin: 16px 0 20px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.chat-left h2 {
  color: #fff;
}

.chat-left > p {
  margin: -6px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.chat-left ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chat-left li {
  display: grid;
  gap: 4px;
}

.chat-left span,
.chat-right p {
  color: var(--body);
}

.chat-left li strong {
  color: #fff;
}

.chat-left li span {
  color: rgba(255, 255, 255, 0.72);
}

.offer {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  color: #991857;
  background: #fff0f7;
  font-weight: 900;
}

.urgent-offer {
  color: #176d37;
  background: #ecfff5;
  box-shadow: 0 0 0 1px rgba(35, 196, 94, 0.16);
}

.ai-urgency-note {
  position: relative;
  overflow: hidden;
  margin: -8px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 194, 168, 0.24);
  border-radius: 14px;
  color: var(--body);
  background: linear-gradient(135deg, #f0fff9, #fbf8ff);
  box-shadow: 0 12px 26px rgba(0, 194, 168, 0.1);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.chat-right .ai-urgency-note {
  color: var(--body);
  text-shadow: none;
}

.ai-urgency-note::before {
  display: none;
}

.ai-urgency-note strong {
  display: inline-block;
  color: var(--green);
  text-transform: none;
  text-shadow: none;
}

.chat-action-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.whatsapp-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(35, 196, 94, 0.34);
  border-radius: 14px;
  background: #f1fbf4;
}

.whatsapp-card span {
  color: #176d37;
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-card strong {
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}

.booking-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf4, #fbf8ff);
}

.booking-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.booking-card-head span {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card-head strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.booking-days,
.booking-times,
.meeting-room-options {
  display: grid;
  gap: 8px;
}

.booking-days {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-times {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.meeting-room-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-days button,
.booking-times button,
.meeting-room-options button {
  border: 1px solid rgba(36, 28, 43, 0.1);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.booking-days button {
  display: grid;
  gap: 3px;
  padding: 10px 8px;
}

.booking-days button span {
  color: var(--body);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-days button strong {
  font-size: 14px;
}

.booking-times button,
.meeting-room-options button {
  min-height: 42px;
  padding: 9px 8px;
}

.booking-days button.active,
.booking-times button.active,
.meeting-room-options button.active {
  border-color: var(--orange);
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.booking-days button.active span,
.booking-days button.active strong {
  color: #fff;
}

.booking-submit {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #111, #4d1630 45%, var(--orange));
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.22);
  font-weight: 900;
  text-align: center;
}

.booking-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

@keyframes alertPulse {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-1px);
    filter: brightness(1.12);
  }
}

@keyframes alertDot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 206, 58, 0.72);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 206, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 206, 58, 0);
  }
}

@keyframes urgencySweep {
  0%,
  46% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes urgencyFlash {
  0%,
  100% {
    color: #ffce3a;
    filter: brightness(1);
  }
  50% {
    color: #fff;
    filter: brightness(1.35);
  }
}

@media (max-width: 1500px) and (min-width: 1321px) {
  .header-phone {
    min-width: 214px;
  }

  .header-phone small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 1320px) {
  .site-header {
    position: relative;
    top: auto;
    gap: 14px;
  }

  .main-nav,
  .service-nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open,
  .service-nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 4px;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown-toggle {
    position: relative;
    display: grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
  }

  .nav-dropdown-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .nav-dropdown.open .nav-dropdown-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }

  .main-nav a,
  .service-nav-links a {
    padding: 9px 10px;
    border-radius: 8px;
    line-height: 1.25;
  }

  .main-nav .mobile-nav-phone {
    display: block;
    color: var(--magenta);
    background: #fff7fb;
    font-weight: 950;
  }

  .nav-dropdown-menu {
    grid-column: 1 / -1;
    position: static;
    display: none;
    min-width: 0;
    gap: 2px;
    padding: 6px;
    border-radius: 12px;
    background: #fbf8fc;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.desktop-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .service-nav {
    position: relative;
  }

  .service-contact {
    display: none;
  }

  .service-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero,
  .numbers-story,
  .studio-grid,
  .service-grid,
  .service-page,
  .food-feature-section,
  .food-feature-grid,
  .template-example-grid,
  .route-card-grid,
  .package-builder-hero,
  .builder-layout,
  .service-redesign-hero,
  .pricing-research,
  .pricing-card-grid,
  .paid-services-section,
  .paid-service-grid,
  .paid-process-grid,
  .paid-benefits-section,
  .industry-insight-grid,
  .industry-page-plan,
  .industry-page-plan-grid,
  .success-story-grid,
  .google-ads-playbook-grid,
  .google-ads-audit-panel,
  .website-capabilities-head,
  .website-capability-grid,
  .website-process-head,
  .website-process-feature,
  .example-grid,
  .portfolio-work-grid,
  .work-grid,
  .pricing-grid,
  .review-proof-top,
  .review-proof-cards,
  .home-featured-project,
  .project-booking,
  .ai-receptionist,
  .contact-hero,
  .contact-form-section,
  .site-footer,
  .chat-panel {
    grid-template-columns: 1fr;
  }

  .portfolio-work-grid {
    display: grid;
    overflow: visible;
  }

  .portfolio-work-card,
  .portfolio-work-card.has-image {
    flex-basis: auto;
  }

  .footer-skyline {
    min-height: 112px;
    margin-bottom: -10px;
  }

  .case-study-hero,
  .case-study-narrative,
  .case-study-phases,
  .case-study-proof-grid {
    grid-template-columns: 1fr;
  }

  .case-study-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-meta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin-top: 12px;
  }

  .hero-content,
  .hero-showcase {
    grid-column: 1;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 0, 25, 0.34) 0%, rgba(7, 0, 25, 0.84) 100%),
      url("/assets/atlantic-abstract-hero.png") 18% center / cover no-repeat;
  }

  .hero-showcase {
    max-width: 680px;
  }

  .section-head {
    display: block;
  }

  .numbers-copy {
    justify-self: start;
  }

  .service-page-panel {
    min-height: auto;
  }

  .food-feature-section {
    grid-template-areas:
      "copy"
      "profile"
      "features";
    padding: 46px 18px;
  }

  .food-feature-copy h2 {
    font-size: 38px;
  }

  .food-profile-top,
  .food-profile-info p {
    padding-inline: 18px;
  }

  .food-profile-tabs,
  .food-profile-actions {
    padding-inline: 18px;
  }

  .food-profile-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 260px;
  }

  .food-profile-info p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .food-feature-card {
    min-height: auto;
  }

  .template-example-card {
    min-height: auto;
  }

  .industry-deep-dive,
  .industry-page-plan {
    padding: 42px 20px;
  }

  .industry-insight-card,
  .industry-page-plan-grid article {
    min-height: auto;
  }

  .industry-research-copy h2,
  .industry-page-plan h2 {
    font-size: 34px;
  }

  .pricing-research {
    padding: 24px;
  }

  .pricing-research-grid {
    grid-template-columns: 1fr;
  }

  .pricing-research-card {
    min-height: auto;
  }

  .service-mockup {
    min-height: 280px;
  }

  .service-mockup--google-ads,
  .google-ads-dashboard-replica {
    min-height: 390px;
  }

  .builder-cart-card {
    position: static;
  }

  .builder-cart-preview {
    grid-template-columns: 1fr 1fr;
  }

  .cart-preview-items {
    grid-column: 1 / -1;
  }

  .platform-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .pricing-grid .featured {
    transform: none;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-top: 22px;
  }

  .footer-skyline {
    gap: 4px;
    min-height: 82px;
    padding: 16px 0 0;
    margin-bottom: -6px;
  }

  .footer-skyline span {
    min-width: 8px;
    border-radius: 3px 3px 0 0;
  }

  .footer-skyline span::after {
    opacity: 0.24;
    background-size: 12px 14px;
  }

  .footer-skyline span:nth-child(4)::before,
  .footer-skyline span:nth-child(6)::before,
  .footer-skyline span:nth-child(11)::before,
  .footer-skyline span:nth-child(13)::before {
    height: 14px;
  }

  .footer-logo-card img {
    width: 58px;
  }

  .footer-brand-lockup strong {
    font-size: 42px;
  }

  .footer-brand-lockup span {
    font-size: 10px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-showcase-wall {
    min-height: 620px;
  }

  .project-showcase-track article {
    width: 340px;
  }

  .meeting-options {
    grid-template-columns: 1fr;
  }

  .review-submit-panel {
    grid-template-columns: 1fr;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid,
  .contact-direct-actions {
    grid-template-columns: 1fr;
  }

  .review-rating-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .main-nav,
  .service-nav-links {
    right: 8px;
    left: 8px;
    max-height: calc(100dvh - 96px);
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 40px;
    height: 42px;
  }

  .brand-wordmark {
    width: clamp(124px, 42vw, 154px);
  }

  .hero {
    margin-inline: 8px;
    padding: 58px 18px 34px;
    border-radius: 18px;
  }

  .hero::after {
    inset: 10px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: 42px;
    transform: none;
    text-shadow:
      0 1px 0 #dccbff,
      0 2px 0 #8d62f4,
      0 9px 18px rgba(0, 0, 0, 0.48),
      0 18px 34px rgba(211, 27, 255, 0.26);
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-showcase {
    border-radius: 14px;
  }

  .service-page,
  .template-showcase {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .service-page {
    padding: 48px 18px;
  }

  .service-page-copy,
  .service-page-panel,
  .template-showcase-head,
  .template-example-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-actions .primary-action,
  .service-actions .secondary-action {
    width: 100%;
    justify-content: center;
  }

  .service-page-copy h1,
  .service-page-panel h2,
  .service-page-panel strong,
  .template-showcase-head h2,
  .template-example-copy h3 {
    overflow-wrap: anywhere;
  }

  .template-showcase {
    padding: 48px 18px;
  }

  .template-showcase-head h2 {
    font-size: 34px;
  }

  .template-example-card {
    padding: 0;
  }

  .template-example-media {
    aspect-ratio: 16 / 10;
  }

  .template-example-copy {
    padding: 20px;
  }

  .showcase-body {
    min-height: 220px;
  }

  .service-mockup--google-ads,
  .google-ads-dashboard-replica {
    min-height: 440px;
  }

  .ads-dashboard-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .ads-dashboard-date {
    width: 100%;
    text-align: center;
  }

  .ads-dashboard-action-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 18px;
  }

  .ads-dashboard-new {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  .ads-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ads-metric-card {
    padding: 15px 16px 17px;
  }

  .ads-metric-card strong {
    font-size: 24px;
  }

  .ads-dashboard-chart {
    padding: 16px 18px 18px;
    grid-template-rows: minmax(150px, 1fr) auto;
  }

  .ads-dashboard-chart svg {
    min-height: 150px;
  }

  .portfolio-case-study {
    margin-inline: 12px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .case-study-metrics {
    grid-template-columns: 1fr;
  }

  .case-study-narrative article,
  .case-study-phases article,
  .case-study-proof-grid article {
    padding: 20px;
  }

  .package-builder-hero {
    width: min(100% - 24px, 1240px);
    padding-top: 52px;
  }

  .package-builder-hero h1 {
    font-size: 42px;
  }

  .builder-layout {
    width: min(100% - 24px, 1240px);
    padding-bottom: 54px;
  }

  .builder-payment-note,
  .builder-item,
  .builder-cart-card {
    padding: 20px;
  }

  .builder-cart-preview {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cart-preview-items {
    max-height: 150px;
    overflow: auto;
  }

  .cart-preview-totals span {
    justify-content: space-between;
  }

  .builder-cart-preview > a {
    width: 100%;
  }

  .numbers-story {
    padding: 46px 16px;
  }

  .numbers-copy h2 {
    font-size: 42px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .number-card,
  .number-card.wide {
    grid-column: auto;
    min-height: 138px;
    padding: 26px 24px;
  }

  .number-card strong {
    font-size: 42px;
  }

  .number-card span {
    font-size: 16px;
  }

  .review-section {
    padding: 54px 0;
  }

  .review-section-head {
    margin-bottom: 32px;
  }

  .review-section-head h2 {
    font-size: 42px;
  }

  .review-track {
    grid-auto-columns: minmax(286px, 88vw);
    gap: 16px;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 16px;
  }

  .review-avatar {
    min-height: 180px;
  }

  .review-card > div:last-child {
    padding: 0 4px 8px;
  }

  .review-card p {
    font-size: 16px;
  }

  .review-submit-panel {
    width: calc(100% - 24px);
    margin-top: 30px;
    padding: 20px;
    border-radius: 18px;
  }

  .review-submit-copy h3 {
    font-size: 32px;
  }

  .review-rating-options {
    grid-template-columns: 1fr 1fr;
  }

  .review-form-actions {
    display: grid;
  }

  .review-form-actions button {
    width: 100%;
  }

  .review-proof-section {
    padding: 54px 18px;
  }

  .review-proof-top {
    gap: 34px;
    margin-bottom: 34px;
  }

  .review-proof-copy h2 {
    font-size: 34px;
  }

  .review-proof-metrics h2 {
    font-size: 40px;
  }

  .review-proof-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .proof-metric-row {
    gap: 12px;
    margin-top: 24px;
  }

  .proof-metric-row article {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .proof-metric-row strong {
    font-size: 30px;
  }

  .proof-metric-row span {
    font-size: 12px;
  }

  .review-proof-action {
    width: 100%;
    justify-content: center;
  }

  .review-proof-cards {
    gap: 16px;
  }

  .review-proof-cards article {
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .review-proof-card-head {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .review-proof-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 12px;
  }

  .review-proof-card-head strong {
    font-size: 17px;
  }

  .review-proof-cards p {
    font-size: 15px;
  }

  .client-wall {
    padding: 54px 0;
  }

  .client-wall-head {
    margin-bottom: 32px;
  }

  .client-wall-head h2 {
    font-size: 34px;
  }

  .client-logo-scroller {
    width: calc(100% - 24px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 0 14px;
    scroll-snap-type: x proximity;
    scrollbar-color: #a45bf4 rgba(36, 28, 43, 0.08);
  }

  .client-logo-grid {
    width: max-content;
    grid-template-columns: repeat(6, 180px);
    grid-auto-rows: 86px;
    gap: 28px 34px;
    padding: 0 4px;
  }

  .client-logo-grid figure {
    min-height: 86px;
    scroll-snap-align: start;
  }

  .client-logo-grid img {
    max-width: 170px;
    max-height: 70px;
  }

  .client-logo-grid article {
    min-height: 94px;
    padding: 16px 10px;
    scroll-snap-align: start;
  }

  .client-logo-grid strong {
    font-size: 22px;
  }

  .client-logo-grid span {
    font-size: 10px;
  }

  .seo-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-process-card {
    min-height: auto;
  }

  .seo-tools-section {
    border-radius: 18px;
  }

  .seo-competition-cta {
    padding: 34px 18px;
    border-radius: 18px;
  }

  .seo-competition-cta h2 {
    font-size: 34px;
  }

  .seo-competition-actions,
  .seo-competition-actions button,
  .seo-competition-actions a {
    width: 100%;
  }

  .seo-competition-cta ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 360px;
  }

  .seo-competition-cta li {
    justify-content: center;
  }

  .seo-comparison-section {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .seo-location-section {
    padding: 26px 16px;
    border-radius: 18px;
  }

  .seo-location-group {
    padding: 20px;
  }

  .paid-media-tools-section {
    border-radius: 18px;
  }

  .google-ads-app-store-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
    border-radius: 18px;
  }

  .google-ads-app-store-copy {
    max-width: none;
  }

  .google-ads-app-store-copy h2 {
    font-size: 32px;
  }

  .google-ads-app-store-visual {
    min-height: 340px;
  }

  .google-ads-app-orbit {
    width: min(86%, 360px);
  }

  .google-ads-app-store-visual > img {
    width: min(94%, 390px);
  }

  .google-ads-platform-card {
    width: 104px;
    min-height: 96px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .google-ads-platform-card img {
    width: 42px;
    height: 42px;
  }

  .google-ads-platform-card.ads-card {
    top: 7%;
    right: 1%;
  }

  .google-ads-platform-card.play-card {
    left: 0;
    bottom: 18%;
  }

  .paid-services-section,
  .paid-benefits-section {
    padding: 24px;
    border-radius: 18px;
  }

  .paid-service-visual,
  .paid-service-visual img {
    min-height: 220px;
  }

  .paid-process-step {
    min-height: auto;
  }

  .paid-benefit-stats {
    grid-template-columns: 1fr;
  }

  .paid-benefit-stat {
    min-height: auto;
  }

  .google-ads-playbook-section {
    padding: 24px;
    border-radius: 18px;
  }

  .google-ads-playbook-card {
    min-height: auto;
  }

  .google-ads-audit-panel ul {
    grid-template-columns: 1fr;
  }

  .seo-tools-track {
    gap: 28px;
  }

  .paid-media-track {
    gap: 18px;
  }

  .seo-tool-card {
    min-width: 104px;
  }

  .paid-media-tool {
    grid-template-columns: 48px auto;
    min-width: 176px;
    padding: 11px 14px;
  }

  .paid-media-tool img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .paid-media-tool span {
    font-size: 14px;
  }

  .website-capabilities-section {
    padding: 40px 0 54px;
  }

  .website-capabilities-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .website-capabilities-head h2 {
    font-size: 42px;
  }

  .website-capabilities-head p {
    font-size: 16px;
  }

  .website-capability-card {
    min-height: auto;
    padding: 26px;
    border-radius: 16px;
  }

  .website-capability-card h3 {
    max-width: 240px;
    margin-bottom: 16px;
  }

  .website-process-section {
    padding: 46px 16px;
    border-radius: 18px;
  }

  .website-process-head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .website-process-head h2 {
    font-size: 42px;
  }

  .website-process-feature {
    gap: 16px;
    padding: 18px;
  }

  .website-process-feature > div:first-child,
  .website-process-image {
    min-height: 170px;
  }

  .website-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 18px 18px;
  }

  .website-process-step {
    min-height: 112px;
  }

  .seo-tool-card img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .project-showcase-wall {
    min-height: 560px;
    padding: 42px 0;
  }

  .home-featured-project {
    padding: 46px 18px;
  }

  .home-featured-project-copy h2 {
    font-size: 42px;
  }

  .home-featured-project-actions {
    display: grid;
  }

  .home-featured-project-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-project-card {
    min-height: 0;
    grid-template-rows: 280px auto;
  }

  .project-showcase-track {
    gap: 16px;
  }

  .project-showcase-track article {
    width: 260px;
    min-height: 150px;
    padding: 18px;
    border-radius: 18px;
  }

  .project-showcase-orb {
    width: min(280px, 78vw);
    padding: 26px;
  }

  .project-showcase-orb strong {
    font-size: 32px;
  }

  .project-booking {
    padding: 46px 18px;
  }

  .project-booking-copy h2 {
    font-size: 42px;
  }

  .meeting-card {
    border-radius: 16px;
  }

  .success-stories-section {
    margin-inline: -4px;
    padding: 42px 14px;
    border-radius: 18px;
  }

  .success-stories-head {
    margin-bottom: 24px;
  }

  .success-story-grid {
    gap: 16px;
  }

  .success-story-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .success-story-card h3 {
    min-height: auto;
    border-radius: 16px;
    font-size: 18px;
  }

  .builder-item {
    min-height: auto;
  }

  .cart-totals div {
    align-items: start;
  }

  .hero-actions,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    text-align: center;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .showcase-body {
    min-height: auto;
  }

  .seo-industry-grid,
  .seo-process-grid {
    grid-template-columns: 1fr;
  }

  .seo-industry-card {
    min-height: 220px;
    padding: 22px;
  }

  .seo-section-head {
    text-align: left;
  }

  .seo-section-head h2 {
    font-size: 32px;
  }

  .seo-comparison-table-wrap {
    margin-right: -4px;
    margin-left: -4px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .whatsapp-float span {
    font-size: 13px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-action-nav {
    position: fixed;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 55px rgba(36, 28, 43, 0.22);
    backdrop-filter: blur(18px);
    isolation: isolate;
    overflow: visible;
  }

  .mobile-action-nav::before,
  .mobile-action-nav::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(
      from var(--led-angle, 0deg),
      #ff2d8e,
      #ff6a00,
      #ffce3a,
      #23c45e,
      #18c8ff,
      #6a1fc8,
      #ff2d8e
    );
    pointer-events: none;
    z-index: -1;
    animation: led-border-spin 7s linear infinite;
  }

  .mobile-action-nav::before {
    padding: 3px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
  }

  .mobile-action-nav::after {
    inset: -9px;
    opacity: 0.34;
    filter: blur(15px);
  }

  .mobile-action-nav a,
  .mobile-action-nav button {
    display: grid;
    min-width: 0;
    min-height: 58px;
    place-items: center;
    gap: 4px;
    padding: 7px 4px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.22);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-action-icon {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .chat-modal {
    align-items: end;
    padding: 12px;
    backdrop-filter: blur(5px);
  }

  .chat-panel {
    width: min(420px, 100%);
    max-height: min(76dvh, 560px);
    overflow-y: auto;
    border-radius: 20px;
    margin-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }

  .close-chat {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .chat-left,
  .chat-right {
    padding: 16px;
  }

  .chat-left {
    display: none;
  }

  .chat-right h2 {
    margin: 10px 34px 8px 0;
    font-size: 22px;
    line-height: 1.12;
  }

  .chat-right p {
    font-size: 13px;
    line-height: 1.42;
  }

  .offer {
    max-width: calc(100% - 38px);
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  .whatsapp-card {
    gap: 4px;
    margin-top: 10px;
    padding: 12px;
  }

  .whatsapp-card strong {
    width: 100%;
    margin-top: 4px;
    padding: 11px 12px;
    text-align: center;
  }

  .chat-action-grid {
    gap: 10px;
    margin-top: 12px;
  }

  .booking-card {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .booking-card-head {
    display: grid;
    gap: 4px;
  }

  .booking-days,
  .booking-times {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .booking-days::-webkit-scrollbar,
  .booking-times::-webkit-scrollbar {
    display: none;
  }

  .meeting-room-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-days button,
  .booking-times button,
  .meeting-room-options button {
    min-height: 38px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .booking-days button,
  .booking-times button {
    flex: 0 0 96px;
  }
}

.blog-index-page .blog-hero {
  align-items: stretch;
}

.blog-section {
  padding-top: clamp(36px, 6vw, 80px);
}

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

.blog-feature-card,
.blog-list-row,
.blog-related-links a {
  color: inherit;
  text-decoration: none;
}

.blog-feature-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(124, 92, 255, 0.18);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(145deg, #fff, #f7f2ff);
  box-shadow: 0 22px 55px rgba(35, 18, 63, 0.08);
}

.blog-feature-card span,
.blog-list-row span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 105, 0, 0.12);
  color: #ef5b19;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-feature-card h2 {
  margin: 0;
  color: #21182a;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.blog-feature-card p {
  color: #6f6477;
  line-height: 1.6;
}

.blog-feature-card strong {
  color: #7c3cff;
}

.blog-list-panel {
  display: grid;
  gap: 12px;
  border-radius: 26px;
  padding: 12px;
  background: #10071b;
}

.blog-list-row {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.blog-list-row strong {
  font-size: 1rem;
}

.blog-list-row em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.blog-article-page {
  background: #fbf8ff;
}

.blog-article {
  width: min(920px, calc(100% - 32px));
  margin: clamp(24px, 5vw, 64px) auto;
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 64px);
  background: #fff;
  box-shadow: 0 28px 80px rgba(35, 18, 63, 0.08);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #7b7284;
  font-weight: 800;
}

.blog-breadcrumb a {
  color: #7c3cff;
  text-decoration: none;
}

.blog-article h1 {
  margin: 12px 0 22px;
  color: #1f1729;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.blog-article h2 {
  margin: 42px 0 14px;
  color: #21182a;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.blog-article h3 {
  margin: 30px 0 10px;
  color: #3f2b55;
}

.blog-article p,
.blog-article li {
  color: #5f5668;
  font-size: 1.05rem;
  line-height: 1.78;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.2rem;
}

.blog-article code {
  border-radius: 8px;
  padding: 2px 6px;
  background: #f2ecff;
  color: #6d35d6;
}

.blog-article-cta {
  margin-top: 48px;
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(135deg, #130720, #32104b 58%, #ff5a1f);
  color: #fff;
}

.blog-article-cta h2,
.blog-article-cta p {
  color: #fff;
}

.blog-related {
  padding-top: 0;
}

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

.blog-related-links a {
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  color: #241a2e;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(35, 18, 63, 0.08);
}

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

  .blog-list-row {
    grid-template-columns: 1fr;
  }

  .blog-article {
    width: min(100% - 20px, 920px);
    border-radius: 22px;
  }
}

.seo-landing-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 45, 149, 0.12), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(124, 92, 255, 0.12), transparent 30%),
    #fbf8ff;
}

.seo-landing-hero {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(26px, 5vw, 72px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.seo-landing-hero > div,
.seo-landing-offer {
  border: 1px solid rgba(124, 92, 255, 0.16);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(35, 18, 63, 0.08);
}

.seo-landing-hero > div {
  padding: clamp(28px, 5vw, 62px);
}

.seo-landing-hero h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  color: #201629;
  font-size: clamp(2.25rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.seo-landing-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  color: #665b70;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

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

.seo-landing-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 24, 47, 0.16);
  border-radius: 999px;
  padding: 0 20px;
  color: #261a31;
  font-weight: 900;
  text-decoration: none;
}

.seo-landing-offer {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 45, 149, 0.12), transparent 38%),
    linear-gradient(160deg, #16091f, #2b103f 60%, #ff681f);
  color: #fff;
}

.seo-landing-offer::after {
  content: "";
  position: absolute;
  inset: auto -42px -52px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
}

.seo-landing-offer span,
.seo-landing-card span,
.seo-landing-index-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffce4f;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.seo-landing-offer strong {
  display: block;
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.seo-landing-offer p,
.seo-landing-offer li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.seo-landing-offer ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seo-landing-offer li::before {
  content: "✓";
  margin-right: 8px;
  color: #24cf67;
  font-weight: 950;
}

.seo-landing-grid,
.seo-landing-index-grid {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(22px, 4vw, 48px) auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-landing-card,
.seo-landing-index-card {
  border: 1px solid rgba(124, 92, 255, 0.14);
  border-radius: 24px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(35, 18, 63, 0.07);
}

.seo-landing-index-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.seo-landing-index-card:hover,
.seo-landing-index-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(35, 18, 63, 0.12);
}

.seo-landing-card span,
.seo-landing-index-card span {
  background: rgba(255, 105, 0, 0.12);
  color: #ef5b19;
}

.seo-landing-card h2,
.seo-landing-index-card h2 {
  margin: 18px 0 12px;
  color: #21182a;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.seo-landing-card p,
.seo-landing-index-card p {
  color: #655b70;
  line-height: 1.7;
}

.seo-landing-proof,
.seo-landing-related {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(22px, 4vw, 54px) auto;
  border-radius: 30px;
  padding: clamp(26px, 5vw, 52px);
  background: #10071b;
  color: #fff;
}

.seo-landing-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.seo-landing-proof h2,
.seo-landing-related h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.seo-landing-proof p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

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

.seo-landing-mini-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.seo-landing-mini-grid strong {
  display: block;
  color: #ffce4f;
  font-size: 1.4rem;
}

.seo-landing-mini-grid span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-weight: 900;
}

.seo-landing-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-landing-related a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 900px) {
  .seo-landing-hero,
  .seo-landing-proof {
    grid-template-columns: 1fr;
  }

  .seo-landing-grid,
  .seo-landing-index-grid {
    grid-template-columns: 1fr;
  }

  .seo-landing-hero {
    width: min(100% - 20px, 1180px);
  }

  .seo-landing-grid,
  .seo-landing-index-grid,
  .seo-landing-proof,
  .seo-landing-related {
    width: min(100% - 20px, 1180px);
  }

  .seo-landing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-landing-actions .primary-action,
  .seo-landing-actions a {
    width: 100%;
  }
}

.programmatic-seo-page {
  background: #f7f5fb;
}

.programmatic-hero {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(18px, 4vw, 44px) auto;
  border-radius: 34px;
  padding: clamp(24px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 43, 157, 0.36), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(124, 92, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #11071f 0%, #241033 52%, #06020d 100%);
  box-shadow: 0 28px 70px rgba(22, 8, 38, 0.28);
}

.programmatic-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.programmatic-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.programmatic-hero-grid,
.programmatic-split,
.programmatic-local-block,
.programmatic-faq {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.programmatic-hero h1,
.programmatic-split h2,
.programmatic-local-block h2,
.programmatic-faq h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.programmatic-hero p,
.programmatic-split p,
.programmatic-local-block p,
.programmatic-faq p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.programmatic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.programmatic-actions a,
.programmatic-hub-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.programmatic-fact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.programmatic-fact-card span,
.programmatic-proof-grid span {
  color: #ffce4f;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programmatic-fact-card strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
}

.programmatic-fact-card ul,
.programmatic-benefits {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.programmatic-fact-card li,
.programmatic-benefits li {
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.09);
}

.programmatic-section,
.programmatic-split,
.programmatic-local-block,
.programmatic-faq {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(26px, 5vw, 70px) auto;
}

.programmatic-section .section-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: #675d72;
}

.programmatic-keyword-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.programmatic-keyword-list li,
.programmatic-keyword-list span {
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 999px;
  padding: 12px 16px;
  color: #26172f;
  font-weight: 900;
  background: #fff;
  box-shadow: 0 16px 34px rgba(34, 22, 50, 0.08);
}

.programmatic-offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(26px, 5vw, 70px) auto;
  border-radius: 30px;
  padding: clamp(24px, 5vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 43, 157, 0.3), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(255, 122, 26, 0.22), transparent 30%),
    linear-gradient(135deg, #12071f, #351547 58%, #10071b);
  box-shadow: 0 28px 70px rgba(31, 10, 45, 0.22);
}

.programmatic-offer-band h2,
.programmatic-offer-band p {
  color: #fff;
}

.programmatic-offer-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.programmatic-offer-actions {
  display: grid;
  gap: 12px;
  min-width: min(260px, 100%);
}

.programmatic-offer-actions a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
}

.programmatic-split,
.programmatic-local-block,
.programmatic-faq {
  border-radius: 30px;
  padding: clamp(24px, 5vw, 50px);
  background: #10071b;
  color: #fff;
}

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

.programmatic-process-card,
.programmatic-proof-grid article,
.programmatic-depth-card {
  border: 1px solid #e7e2ef;
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(34, 22, 50, 0.08);
}

.programmatic-process-card span,
.programmatic-depth-card span {
  color: #7c5cff;
  font-size: 1.8rem;
  font-weight: 950;
}

.programmatic-process-card h3,
.programmatic-depth-card h3,
.programmatic-proof-grid h3,
.programmatic-link-panel h3 {
  margin: 14px 0 10px;
  color: #21182a;
  font-size: 1.22rem;
}

.programmatic-process-card p,
.programmatic-depth-card p,
.programmatic-proof-grid p {
  color: #675d72;
  line-height: 1.65;
}

.programmatic-mini-heading {
  margin: 20px 0 10px;
  color: #fff;
  font-size: 1.1rem;
}

.programmatic-link-panel {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.programmatic-link-panel h3 {
  color: #fff;
}

.programmatic-link-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.programmatic-link-panel a {
  border-radius: 999px;
  padding: 10px 13px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.programmatic-faq details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.programmatic-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
}

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

.programmatic-free-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.programmatic-free-keywords li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .programmatic-hero-grid,
  .programmatic-split,
  .programmatic-local-block,
  .programmatic-faq {
    grid-template-columns: 1fr;
  }

  .programmatic-process-grid,
  .programmatic-proof-grid,
  .programmatic-depth-grid {
    grid-template-columns: 1fr;
  }

  .programmatic-hero,
  .programmatic-section,
  .programmatic-split,
  .programmatic-local-block,
  .programmatic-faq {
    width: min(100% - 20px, 1180px);
  }

  .programmatic-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .programmatic-actions .primary-action,
  .programmatic-actions a {
    width: 100%;
  }

  .programmatic-offer-band {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 1180px);
  }

  .programmatic-offer-actions {
    width: 100%;
  }
}

.rollout-tracker-page {
  background: #f7f5fb;
}

.rollout-hero,
.rollout-map-section,
.rollout-grid,
.rollout-wide-panel {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(22px, 5vw, 64px) auto;
}

.rollout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  border-radius: 34px;
  padding: clamp(26px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 43, 157, 0.34), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(33, 197, 127, 0.22), transparent 28%),
    linear-gradient(135deg, #0c0615, #271136 54%, #08020d);
  box-shadow: 0 30px 75px rgba(23, 9, 38, 0.25);
}

.rollout-hero h1 {
  margin: 10px 0 16px;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.rollout-hero p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.rollout-progress {
  height: 16px;
  margin: 24px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.rollout-progress span {
  display: block;
  min-width: 14px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff2b9d, #ff7a1a, #21c57f);
}

.rollout-progress-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 850;
}

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

.rollout-stat-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.rollout-stat-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.rollout-stat-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.rollout-monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(22px, 4vw, 48px) auto;
}

.rollout-monitor-card {
  border: 1px solid #e5dfee;
  border-radius: 26px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(34, 22, 50, 0.08);
}

.rollout-monitor-card span {
  display: block;
  color: #7c5cff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rollout-monitor-card strong {
  display: block;
  margin: 12px 0;
  color: #21182a;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.rollout-monitor-card p {
  margin: 10px 0 0;
  color: #675d72;
  line-height: 1.55;
}

.rollout-progress-light {
  height: 12px;
  margin: 12px 0;
  background: #eee8f4;
}

.rollout-live-map-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5dfee;
  border-radius: 34px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 43, 157, 0.12), transparent 30%),
    radial-gradient(circle at 90% 2%, rgba(33, 197, 127, 0.1), transparent 30%),
    #fff;
  box-shadow: 0 22px 60px rgba(34, 22, 50, 0.08);
}

.rollout-live-map {
  min-height: 540px;
  overflow: hidden;
  border-radius: 24px;
  background: #efeaf5;
}

.rollout-map-legend {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(34, 22, 50, 0.14);
}

.rollout-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #21182a;
  font-size: 0.78rem;
  font-weight: 950;
}

.rollout-map-legend i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend-released {
  background: #21c57f;
}

.legend-started {
  background: #ff2b9d;
}

.legend-planned {
  background: #21182a;
}

.rollout-live-map .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(34, 22, 50, 0.18);
}

.rollout-live-map .leaflet-popup-content {
  color: #21182a;
  font-family: inherit;
  font-weight: 750;
}

.rollout-live-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.rollout-live-map .leaflet-popup-content a {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  background: linear-gradient(135deg, #ff2b9d, #7c5cff);
}

.rollout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 18px;
}

.rollout-panel {
  border: 1px solid #e5dfee;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  box-shadow: 0 20px 54px rgba(34, 22, 50, 0.08);
}

.rollout-panel h2 {
  margin: 8px 0 18px;
  color: #21182a;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.rollout-panel-intro {
  max-width: 850px;
  margin: -4px 0 22px;
  color: #675d72;
  line-height: 1.65;
}

.rollout-table-wrap {
  overflow-x: auto;
}

.rollout-page-dropdown {
  border: 1px solid #eee8f4;
  border-radius: 18px;
  overflow: hidden;
  background: #fbf9ff;
}

.rollout-page-dropdown summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  padding: 16px 18px;
  color: #21182a;
  font-weight: 950;
  list-style: none;
}

.rollout-page-dropdown summary::-webkit-details-marker {
  display: none;
}

.rollout-page-dropdown summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff2b9d, #7c5cff);
}

.rollout-page-dropdown[open] summary::after {
  content: "-";
}

.rollout-page-dropdown summary strong {
  margin-left: auto;
  color: #7c5cff;
}

.rollout-page-dropdown .rollout-table-wrap {
  max-height: 440px;
  overflow: auto;
  border-top: 1px solid #eee8f4;
  background: #fff;
}

.rollout-panel table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.rollout-panel th,
.rollout-panel td {
  border-bottom: 1px solid #eee8f4;
  padding: 13px 10px;
  color: #34243f;
  text-align: left;
  vertical-align: top;
}

.rollout-panel th {
  color: #7c5cff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rollout-panel a {
  color: #21182a;
  font-weight: 900;
}

.rollout-keyword-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(22px, 5vw, 64px) auto;
}

.rollout-spider-section {
  width: min(1860px, calc(100% - 18px));
  min-height: calc(100vh - 48px);
  margin: clamp(22px, 5vw, 64px) auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: clamp(20px, 2.6vw, 40px);
  color: #fff;
  background:
    radial-gradient(circle at 50% 34%, rgba(83, 201, 80, 0.13), transparent 24%),
    radial-gradient(circle at 72% 50%, rgba(239, 68, 68, 0.13), transparent 24%),
    radial-gradient(circle at 36% 52%, rgba(242, 194, 50, 0.12), transparent 24%),
    linear-gradient(135deg, #080d12, #111923 54%, #080b10);
  box-shadow: 0 30px 80px rgba(7, 10, 15, 0.28);
}

.rollout-spider-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.rollout-spider-heading h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.rollout-spider-heading p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.rollout-spider-stats {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.rollout-spider-stats article {
  min-height: 84px;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.rollout-spider-stats article:last-child {
  border-right: 0;
}

.rollout-spider-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

.rollout-spider-stats strong {
  display: block;
  margin-top: 12px;
  color: #b46cff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
}

.rollout-spider-layout {
  display: grid;
  grid-template-columns: 300px minmax(760px, 1fr) 360px;
  gap: 18px;
  margin-top: 24px;
  align-items: start;
}

.rollout-spider-sidebar {
  display: grid;
  gap: 12px;
}

.rollout-spider-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.rollout-spider-card h3 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.spider-filter,
.rollout-spider-services button,
.rollout-spider-top button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.spider-search-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.spider-search-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

.spider-search-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.spider-search-input:focus {
  border-color: rgba(180, 108, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(180, 108, 255, 0.16);
}

.spider-filter + .spider-filter,
.rollout-spider-services button + button {
  margin-top: 8px;
}

.spider-filter.active,
.rollout-spider-services button.active,
.rollout-spider-top button.active {
  color: #fff;
  border-color: rgba(180, 108, 255, 0.66);
  background: rgba(180, 108, 255, 0.18);
}

.spider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 999px;
  vertical-align: -1px;
  background: #b46cff;
}

.spider-dot.commercial { background: #ef4444; }
.spider-dot.informational { background: #53c950; }
.spider-dot.navigational { background: #3d82e6; }
.spider-dot.free-offer { background: #f2c232; }
.spider-dot.high { background: #ff2b9d; }
.spider-dot.medium { background: #b46cff; }
.spider-dot.low { background: #7f8b99; }

.rollout-spider-card [data-spider-detail] {
  display: grid;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.rollout-spider-card [data-spider-detail] strong {
  color: #fff;
  font-size: 1.05rem;
}

.rollout-spider-card [data-spider-detail] span {
  display: block;
}

.rollout-spider-canvas {
  min-height: 820px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 30%),
    rgba(0, 0, 0, 0.16);
}

.rollout-spider-canvas svg {
  display: block;
  width: 100%;
  height: 820px;
}

.rollout-spider-canvas svg [data-spider-lines],
.rollout-spider-canvas svg [data-spider-nodes] {
  transform-origin: 600px 410px;
  animation: spider-map-orbit 48s linear infinite;
}

.rollout-spider-canvas svg [data-spider-nodes] {
  animation-duration: 54s;
}

.rollout-spider-canvas:hover svg [data-spider-lines],
.rollout-spider-canvas:hover svg [data-spider-nodes] {
  animation-play-state: paused;
}

.spider-line {
  opacity: 0.32;
  stroke-width: 1.3;
}

.core-line {
  opacity: 0.72;
  stroke-width: 3;
}

.spider-core circle {
  fill: rgba(18, 23, 31, 0.92);
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 3;
  transform-origin: 600px 410px;
  animation: spider-core-breathe 3.6s ease-in-out infinite;
}

.spider-core text {
  fill: #fff;
  font-weight: 950;
  font-size: 21px;
}

.spider-cluster {
  opacity: 0.82;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
  filter: drop-shadow(0 0 18px currentColor);
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  animation: spider-cluster-pulse 3.8s ease-in-out infinite;
}

.spider-cluster-label {
  fill: #fff;
  font-size: 11px;
  font-weight: 950;
  pointer-events: none;
}

.spider-keyword-node {
  opacity: 0.92;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  animation: spider-keyword-spark 4.8s ease-in-out infinite;
}

.spider-keyword-node:hover,
.spider-keyword-node:focus {
  stroke: #fff;
  stroke-width: 4;
}

.spider-keyword-label {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  font-weight: 750;
  pointer-events: none;
}

.rollout-spider-top {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rollout-spider-top button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.rollout-spider-top span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rollout-spider-top strong {
  color: #ef4444;
}

.spider-summary-card strong {
  display: block;
  color: #b46cff;
  font-size: 3rem;
  line-height: 1;
}

.spider-frequency-list,
.spider-distribution-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spider-frequency-list li {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.spider-frequency-list strong,
.spider-frequency-list span {
  color: #fff;
  font-weight: 900;
}

.spider-frequency-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.45;
}

.rollout-spider-deep-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.spider-distribution-list li {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.spider-distribution-list li span,
.spider-distribution-list li strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
}

.spider-distribution-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.spider-distribution-list em {
  position: absolute;
  inset: auto auto 0 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2b9d, #8a22e6, #31d679);
}

.spider-action-table table,
.rollout-spider-page-plan table {
  min-width: 760px;
}

.rollout-spider-page-plan {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.rollout-spider-page-plan h3 {
  margin: 4px 0 16px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

@keyframes spider-map-orbit {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(1.8deg) scale(1.012);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  75% {
    transform: rotate(-1.8deg) scale(1.012);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes spider-core-breathe {
  0%, 100% {
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
  }
  50% {
    stroke-width: 5;
    filter: drop-shadow(0 0 24px rgba(180, 108, 255, 0.58));
  }
}

@keyframes spider-cluster-pulse {
  0%, 100% {
    opacity: 0.78;
    transform: scale(0.985);
  }
  50% {
    opacity: 0.98;
    transform: scale(1.045);
  }
}

@keyframes spider-keyword-spark {
  0%, 100% {
    opacity: 0.76;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rollout-spider-canvas svg [data-spider-lines],
  .rollout-spider-canvas svg [data-spider-nodes],
  .spider-core circle,
  .spider-cluster,
  .spider-keyword-node {
    animation: none;
  }
}

.spider-summary-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.keyword-strategy-table td:first-child strong {
  display: block;
  color: #21182a;
}

.keyword-strategy-table td:first-child small {
  display: block;
  margin-top: 5px;
  color: #8d8296;
  font-weight: 850;
}

.keyword-strategy-table td:nth-child(3) {
  min-width: 520px;
}

.keyword-strategy-table td:nth-child(3) span {
  display: inline-flex;
  margin: 4px 5px 4px 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #21182a;
  font-size: 0.82rem;
  font-weight: 900;
  background: #f4efff;
  border: 1px solid #e1d5ff;
}

.keyword-intent-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.keyword-intent-summary article {
  border: 1px solid #ebe4f2;
  border-radius: 20px;
  padding: 18px;
  background: #f7f5fb;
}

.keyword-intent-summary strong,
.keyword-intent-group strong {
  display: block;
  color: #21182a;
  font-weight: 950;
}

.keyword-intent-summary span {
  display: inline-flex;
  margin: 8px 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #ff2b9d, #7c5cff);
}

.keyword-intent-summary p {
  margin: 0;
  color: #675d72;
  line-height: 1.55;
}

.keyword-intent-group {
  margin-bottom: 12px;
}

.keyword-intent-group:last-child {
  margin-bottom: 0;
}

.keyword-intent-group strong {
  margin: 0 0 5px;
  color: #7c5cff;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.keyword-modifier-grid article {
  border-radius: 18px;
  padding: 16px;
  background: #f7f5fb;
  border: 1px solid #ebe4f2;
}

.keyword-modifier-grid strong {
  display: block;
  color: #21182a;
  font-weight: 950;
}

.keyword-modifier-grid p {
  margin: 8px 0 0;
  color: #675d72;
  line-height: 1.55;
}

.free-offer-keyword-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.free-offer-keyword-grid article {
  border: 1px solid #ebe4f2;
  border-radius: 20px;
  padding: 16px;
  background: #f7f5fb;
}

.free-offer-keyword-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #21182a;
  font-weight: 950;
}

.free-offer-keyword-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.free-offer-keyword-grid span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 9px;
  color: #21182a;
  font-size: 0.78rem;
  font-weight: 900;
  background: #fff;
  border: 1px solid #e1d5ff;
}

.rollout-status-live {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #0e6d38;
  font-weight: 950;
  background: #eafff0;
}

.rollout-status-queued {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #7b3b00;
  font-weight: 950;
  background: #fff1da;
}

.rollout-image-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.rollout-image-status-grid article {
  border: 1px solid #eee8f4;
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 43, 157, 0.16), transparent 30%),
    #fff;
  box-shadow: 0 18px 38px rgba(34, 22, 50, 0.07);
}

.rollout-image-status-grid strong {
  display: block;
  color: #21182a;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.rollout-image-status-grid span {
  display: block;
  margin-top: 8px;
  color: #675d72;
  font-weight: 850;
}

.rollout-image-plan-table {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .client-spotlight-hero,
  .client-spotlight-content,
  .client-spotlight-review {
    grid-template-columns: 1fr;
  }

  .client-spotlight-hero {
    padding: 98px 18px 34px;
  }

  .client-spotlight-preview,
  .client-spotlight-preview img {
    min-height: 360px;
  }

  .client-spotlight-summary {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .client-spotlight-content {
    padding-inline: 18px;
  }

  .client-spotlight-review,
  .client-spotlight-outcome {
    margin-inline: 18px;
  }

  .rollout-hero,
  .rollout-grid {
    grid-template-columns: 1fr;
  }

  .rollout-hero,
  .rollout-map-section,
  .rollout-grid,
  .rollout-wide-panel {
    width: min(100% - 20px, 1180px);
  }

  .rollout-stat-grid {
    grid-template-columns: 1fr;
  }

  .rollout-monitor-grid {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 1180px);
  }

  .rollout-keyword-grid {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 1180px);
  }

  .rollout-spider-section {
    width: min(100% - 12px, 1180px);
    padding: 14px;
    border-radius: 22px;
  }

  .rollout-spider-heading,
  .rollout-spider-layout,
  .rollout-spider-deep-grid {
    grid-template-columns: 1fr;
  }

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

  .rollout-spider-canvas {
    min-height: 560px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rollout-spider-canvas svg {
    width: 1120px;
    height: 620px;
  }

  .rollout-spider-page-plan {
    padding: 14px;
  }

  .keyword-modifier-grid {
    grid-template-columns: 1fr;
  }

  .keyword-intent-summary {
    grid-template-columns: 1fr;
  }

  .rollout-image-status-grid {
    grid-template-columns: 1fr;
  }

  .free-offer-keyword-grid {
    grid-template-columns: 1fr;
  }

  .rollout-live-map {
    min-height: 430px;
  }

  .rollout-map-legend {
    left: 20px;
    right: 20px;
    top: 20px;
    border-radius: 18px;
    justify-content: center;
  }
}
