:root {
  --bg: #06070a;
  --panel: rgba(14, 16, 24, 0.8);
  --panel-strong: rgba(17, 19, 30, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #abb3c3;
  --orange: #ff9f2d;
  --orange-deep: #eb6c11;
  --blue: #3ea0ff;
  --pink: #ff4fd8;
  --green: #59d88f;
  --violet: #8b7cff;
  --radius: 28px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 159, 45, 0.28), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(62, 160, 255, 0.3), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(255, 79, 216, 0.24), transparent 20%),
    radial-gradient(circle at 34% 66%, rgba(139, 124, 255, 0.2), transparent 18%),
    radial-gradient(circle at 58% 38%, rgba(89, 216, 143, 0.12), transparent 18%),
    #040508;
}

.noise,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 85%);
}

.glow {
  filter: blur(80px);
  opacity: 0.62;
}

.glow-one {
  background: radial-gradient(circle at 16% 22%, rgba(255, 159, 45, 0.45), transparent 16%);
  animation: drift 9s ease-in-out infinite;
}

.glow-two {
  background: radial-gradient(circle at 82% 20%, rgba(62, 160, 255, 0.42), transparent 15%);
  animation: drift 11s ease-in-out infinite reverse;
}

.glow-three {
  background: radial-gradient(circle at 35% 72%, rgba(139, 124, 255, 0.4), transparent 14%);
}

.glow-four {
  background: radial-gradient(circle at 62% 48%, rgba(89, 216, 143, 0.32), transparent 13%);
  animation: drift 13s ease-in-out infinite;
}

.cursor-light {
  position: fixed;
  top: 18%;
  left: 72%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(62, 160, 255, 0.16), transparent 68%);
  filter: blur(18px);
  animation: pulseLight 6s ease-in-out infinite;
}

.page-shell {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.topbar {
  width: min(calc(100% - 28px), var(--container));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 14px;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 14, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.38), transparent 42%),
    linear-gradient(135deg, rgba(255, 159, 45, 0.22), rgba(62, 160, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.14));
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy small {
  color: var(--muted);
}

.topnav {
  display: flex;
  gap: 24px;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 16px 34px rgba(235, 108, 17, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.24), transparent 80%);
  transform: translateX(-120%);
}

.button:hover::after {
  animation: sweep 850ms ease;
}

.button-outline,
.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  box-shadow: none;
}

.button-ghost {
  color: var(--text);
}

.button-full {
  width: 100%;
}

.button-wide {
  min-width: 220px;
  padding-left: 34px;
  padding-right: 34px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.06) 50%, transparent 85%);
  transform: translateX(-120%);
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}

.panel:hover::after {
  animation-duration: 4.5s;
}

.hero,
.section,
.logo-strip {
  animation: rise 700ms ease both;
}

.hero {
  display: grid;
  gap: 20px;
  padding: 44px 0 22px;
}

.hero-head,
.hero-card,
.benefit-card,
.service-card,
.stat-card,
.contact-card,
.contact-form,
.visual-card,
.service-visual {
  padding: 24px;
}

.hero-head {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(circle at 14% 82%, rgba(255, 159, 45, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(62, 160, 255, 0.24), transparent 18%),
    radial-gradient(circle at 56% 36%, rgba(255, 79, 216, 0.14), transparent 20%),
    linear-gradient(120deg, rgba(139, 124, 255, 0.08), transparent 40%),
    var(--panel-strong);
}

.hero-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  min-height: 100%;
  display: grid;
  gap: 34px;
  align-content: start;
  padding-top: 52px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 88% 16%, rgba(62, 160, 255, 0.28), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(255, 79, 216, 0.24), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255, 159, 45, 0.12), transparent 24%),
    var(--panel-strong);
}

.benefits-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: #dce3ef;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1;
  max-width: 100%;
}

.highlight-word {
  display: inline-block;
  padding: 0 10px 4px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(62, 160, 255, 0.24), rgba(98, 188, 255, 0.16));
  box-shadow: 0 10px 24px rgba(62, 160, 255, 0.12);
  animation: wordGlow 4.2s ease-in-out infinite;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2.3vw, 1.9rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero-text,
.benefit-card p,
.service-card p,
.stat-card span,
.contact-copy p,
.contact-card a,
.form-note {
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.hero-actions,
.hero-proof,
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 12px;
}

.hero-proof {
  margin-top: 0;
}

.hero-proof span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 159, 45, 0.22), rgba(62, 160, 255, 0.2));
  color: #eaf0f8;
  transition: transform 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.hero-proof span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(62, 160, 255, 0.16);
}

.hero-contact a,
.contact-card a {
  color: var(--text);
  text-decoration: none;
}

.hero-contact {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.mini-label {
  margin-bottom: 18px;
}

.social-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.photo-placeholder,
.metric-placeholder,
.service-visual {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-portrait {
  min-height: 320px;
}

.photo-badge,
.visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 11, 21, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef4ff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.photo-placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 79, 216, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.photo-placeholder span,
.service-visual span {
  color: #eef3ff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.photo-placeholder img,
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 400ms ease, filter 400ms ease;
}

.metric-placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(89, 216, 143, 0.2), transparent 22%),
    radial-gradient(circle at 70% 70%, rgba(62, 160, 255, 0.18), transparent 22%),
    var(--panel);
}

.metric-placeholder strong,
.metric-placeholder small {
  display: block;
}

.metric-placeholder strong {
  font-size: 1.5rem;
}

.metric-placeholder small {
  color: var(--muted);
  margin-top: 8px;
}

.social-pill {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  animation: float 4.6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.social-pill img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.social-pill:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.social-pill.facebook {
  background: linear-gradient(135deg, #1778f2, #0d54ae);
  animation-delay: 0.3s;
}

.social-pill.google {
  background: linear-gradient(135deg, #4285f4, #34a853 42%, #fbbc05 68%, #ea4335);
  animation-delay: 0.45s;
}

.social-pill.instagram {
  background: linear-gradient(135deg, #fdc468, #df4996 52%, #285aeb);
}

.social-pill.linkedin {
  background: linear-gradient(135deg, #0a66c2, #004182);
  animation-delay: 0.6s;
}

.social-pill.tiktok {
  background: linear-gradient(135deg, #101010, #2ee6d6);
  animation-delay: 0.9s;
}

.social-pill.pinterest {
  background: linear-gradient(135deg, #e60023, #8e0016);
  animation-delay: 1.2s;
}

.section,
.logo-strip {
  padding-top: 42px;
}

.logo-strip,
.benefits-section,
#services,
.results-section,
.pricing-section,
.seo-local-section,
.faq-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #040508, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #040508, transparent);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

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

.logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 159, 45, 0.16), rgba(139, 124, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #edf3ff;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.logo-track img {
  width: 120px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.logo-track span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(62, 160, 255, 0.12);
}

.benefit-card:nth-child(1) {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 159, 45, 0.2), transparent 24%),
    var(--panel);
}

.benefit-card:nth-child(2) {
  background:
    radial-gradient(circle at 84% 22%, rgba(62, 160, 255, 0.2), transparent 24%),
    var(--panel);
}

.benefit-card,
.service-card,
.stat-card,
.contact-card,
.pricing-card {
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease;
}

.pricing-card {
  min-height: 140px;
  padding-top: 28px;
  padding-right: 30px;
  padding-bottom: 24px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card h3 {
  margin: 0 0 12px;
  line-height: 1.25;
}

.pricing-card p {
  margin: 0;
}

.benefit-card:hover,
.service-card:hover,
.stat-card:hover,
.contact-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.35rem;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.seo-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.seo-card,
.faq-item {
  padding: 24px;
}

.seo-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.16);
}

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

.service-visual {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 159, 45, 0.28), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(62, 160, 255, 0.26), transparent 22%),
    var(--panel);
  overflow: hidden;
}

.alt-visual {
  background:
    radial-gradient(circle at 22% 70%, rgba(139, 124, 255, 0.34), transparent 20%),
    radial-gradient(circle at 80% 24%, rgba(255, 79, 216, 0.28), transparent 18%),
    var(--panel);
}

.service-visual img {
  transition: transform 280ms ease, filter 280ms ease;
}

.service-visual:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.02);
}

.results-section {
  display: grid;
  gap: 18px;
}

.featured-pricing {
  border-color: rgba(255, 159, 45, 0.34);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 159, 45, 0.26), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(62, 160, 255, 0.22), transparent 22%),
    linear-gradient(130deg, rgba(255, 79, 216, 0.08), transparent 42%),
    var(--panel-strong);
}

.stat-card:nth-child(1) {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 79, 216, 0.18), transparent 24%),
    var(--panel);
}

.stat-card:nth-child(2) {
  background:
    radial-gradient(circle at 82% 18%, rgba(89, 216, 143, 0.18), transparent 24%),
    var(--panel);
}

.stat-card:nth-child(3) {
  background:
    radial-gradient(circle at 22% 78%, rgba(62, 160, 255, 0.18), transparent 24%),
    var(--panel);
}

.contact-form {
  background:
    radial-gradient(circle at 90% 10%, rgba(62, 160, 255, 0.22), transparent 24%),
    radial-gradient(circle at 15% 85%, rgba(255, 159, 45, 0.22), transparent 22%),
    radial-gradient(circle at 56% 44%, rgba(255, 79, 216, 0.12), transparent 20%),
    var(--panel-strong);
}

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

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 22px;
  padding-bottom: 36px;
}

.contact-panels {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(62, 160, 255, 0.16), transparent 24%),
    radial-gradient(circle at 15% 85%, rgba(255, 159, 45, 0.16), transparent 22%),
    var(--panel-strong);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(62, 160, 255, 0.24);
  border-color: rgba(62, 160, 255, 0.38);
}

.form-note {
  margin: 0;
}

.form-note.is-hidden {
  display: none;
}

.form-note.is-success {
  color: #7de5b1;
}

.form-note.is-error {
  color: #ff9f8d;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(14px, -12px, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes pulseLight {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes wordGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(62, 160, 255, 0.12);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 16px 30px rgba(62, 160, 255, 0.22);
    transform: translateY(-1px);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1100px) {
  .hero,
  .contact-section,
  .benefits-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-head {
    min-height: auto;
  }

  .hero-body,
  .service-showcase,
  .seo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: min(calc(100% - 18px), var(--container));
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .page-shell {
    width: min(calc(100% - 18px), var(--container));
  }

  .topnav {
    display: none;
  }

  .hero {
    padding-top: 20px;
    gap: 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.04;
  }

  h2 {
    font-size: 1.35rem;
  }

  .eyebrow,
  .mini-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-head,
  .hero-card,
  .service-card,
  .stat-card,
  .contact-card,
  .contact-form,
  .visual-card,
  .service-visual,
  .pricing-card,
  .seo-card,
  .faq-item,
  .benefit-card {
    padding: 20px;
  }

  .hero-head {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .hero-card {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    min-height: 50px;
  }

  .hero-actions,
  .button-wide {
    width: 100%;
  }

  .button-wide {
    min-width: 0;
  }

  .hero-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-portrait {
    order: 2;
    min-height: 220px;
  }

  .hero-card {
    order: 1;
  }

  .social-orbit {
    justify-content: center;
    gap: 12px;
  }

  .hero-contact {
    gap: 12px;
  }

  .hero-contact a {
    word-break: break-word;
  }

  .photo-badge,
  .visual-badge {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .social-pill {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .social-pill img {
    width: 26px;
    height: 26px;
  }

  .service-showcase,
  .seo-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .logo-track span {
    min-width: 150px;
  }

  .cursor-light {
    display: none;
  }

  .noise,
  .glow {
    opacity: 0.38;
  }

  .panel {
    backdrop-filter: none;
  }

  .panel::after {
    animation: none;
  }

  .button::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-shell,
  .topbar {
    width: min(calc(100% - 14px), var(--container));
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .hero-head,
  .hero-card,
  .service-card,
  .stat-card,
  .contact-card,
  .contact-form,
  .visual-card,
  .service-visual,
  .pricing-card,
  .seo-card,
  .faq-item,
  .benefit-card {
    padding: 18px;
  }

  h1 {
    font-size: clamp(1.75rem, 8.7vw, 2.35rem);
  }

  .highlight-word {
    padding: 0 8px 3px;
    border-radius: 14px;
  }

  .hero-portrait {
    min-height: 200px;
  }

  .logo-track span {
    min-width: 132px;
    min-height: 48px;
  }

  .logo-track img {
    width: 104px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .cursor-light {
    display: none;
  }
}
