:root {
  --bg: #080808;
  --bg-soft: #141414;
  --text: #f6f6f6;
  --muted: #c8c8c8;
  --line: rgba(255, 255, 255, 0.22);
  --glass: rgba(166, 199, 255, 0.08);
  --glass-strong: rgba(167, 196, 255, 0.15);
  --accent: #c1121f;
  --accent-2: #c1121f;
  --radius: 24px;
  --shadow: 0 20px 70px rgba(5, 12, 28, 0.45);
  --font-brand: "Syne", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #050505;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.section {
  padding: clamp(5rem, 7vw, 8rem) 0;
  position: relative;
}

/* Slightly tighter problem + services so more fits above the fold */
.problem.section,
.services.section {
  padding: clamp(3.5rem, 5vw, 5.75rem) 0;
}

.problem .section-title,
.services .section-title {
  margin-bottom: 1.25rem;
}

.problem .problem-grid {
  gap: 1.05rem;
}

.services .service-block {
  gap: 1.05rem;
}

.services .service-block:first-of-type {
  margin-bottom: 2.35rem;
}

.services .service-copy h3 {
  margin-bottom: 0.55rem;
}

.services .service-copy > p {
  margin: 0 0 0.55rem;
  line-height: 1.45;
}

.services .stats {
  margin-top: 0.75rem;
}

.services .stat {
  padding: 0.72rem 0.55rem;
}

.services .messages .banner {
  margin: 0.65rem 0 0.42rem;
}

.services .chat {
  gap: 0.48rem;
}

.services .bubble {
  padding: 0.52rem 0.62rem;
  font-size: 0.78rem;
}

.services .service-visual .google-mockup--top3 {
  width: 100%;
  max-width: min(480px, 100%);
  margin-inline: auto;
}

.services .google-mockup--top3 .ctr-note {
  margin-top: 0.55rem;
}

.hero,
.services,
.cta {
  background: #0a0a0a;
}

.problem,
.proof,
.about,
.footer {
  background: #111;
}

.pricing,
.cta {
  background: #f4f4f4;
  color: #161616;
}

.pricing .glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(242, 242, 242, 0.7));
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pricing .section-copy,
.pricing-note {
  color: #3f3f3f;
}

.problem::before,
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(193, 18, 31, 0.16), transparent 45%);
  pointer-events: none;
}

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.glass {
  background: linear-gradient(140deg, var(--glass-strong), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(85px);
  opacity: 0.45;
}

.orb-a {
  width: 35vw;
  height: 35vw;
  background: #6a6a6a;
  top: -8vw;
  left: -6vw;
}

.orb-b {
  width: 30vw;
  height: 30vw;
  background: #c1121f;
  right: -10vw;
  top: 24vh;
}

.orb-c {
  width: 32vw;
  height: 32vw;
  background: #9d9d9d;
  left: 30vw;
  bottom: -15vw;
}

.site-header {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 2rem));
  z-index: 50;
}

.site-header.nav-theme-light .nav,
.site-header.nav-theme-light .nav-links a,
.site-header.nav-theme-light .brand-text {
  color: #141414;
}

.site-header.nav-theme-light .nav-links a:hover {
  color: #000;
}

.site-header.nav-theme-light .mobile-menu-btn {
  border-color: rgba(0, 0, 0, 0.18);
}

.site-header.nav-theme-light .mobile-menu-btn span {
  background: #111;
}

.site-header.nav-theme-dark .nav,
.site-header.nav-theme-dark .nav-links a,
.site-header.nav-theme-dark .brand-text {
  color: rgba(255, 255, 255, 0.94);
}

.site-header.nav-theme-dark .nav-links a:hover {
  color: #fff;
}

.site-header.nav-theme-dark .mobile-menu-btn {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header.nav-theme-dark .mobile-menu-btn span {
  background: rgba(255, 255, 255, 0.92);
}

.site-header .nav .btn {
  color: #fff;
  font-weight: 600;
}

.nav {
  min-height: 54px;
  max-height: 54px;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 999px;
  transition: max-width 240ms ease, gap 240ms ease;
  max-width: 100%;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: fit-content;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(173, 203, 255, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-text {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
  transition: opacity 220ms ease, max-width 240ms ease, margin 240ms ease;
  max-width: 480px;
  overflow: hidden;
}

.site-header.nav-theme-light .nav-links {
  color: #2a2a2a;
}

.site-header.nav-theme-light .nav-links a:hover {
  color: #000;
}

.site-header.nav-theme-dark .nav-links {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.nav-theme-dark .nav-links a:hover {
  color: #fff;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    165deg,
    #d42332 0%,
    #c1121f 28%,
    #a50e1a 58%,
    #8a0c16 82%,
    #6f0a12 100%
  );
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  transition: transform 200ms ease, filter 200ms ease, border-color 200ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -8px 18px rgba(0, 0, 0, 0.18),
    0 3px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
  -webkit-font-smoothing: antialiased;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.04);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-lg {
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.mobile-menu-btn span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: #111;
  margin: 0.32rem auto;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 48;
  display: grid;
  place-content: center;
  gap: 1.2rem;
  transform: translateY(-100%);
  transition: transform 300ms ease;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.3rem;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("public/THMG SEO Marketing Agency.png") right center / cover no-repeat;
  transform: scale(1.08);
  transform-origin: 70% 50%;
  animation: hero-bg-zoom 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  margin: 0 100px;
}

.hero > .scroll-indicator {
  z-index: 2;
}

@keyframes hero-bg-zoom {
  to {
    transform: scale(1);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  padding-left: min(0.75rem, 2.5vw);
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(1.65rem, 3.6vw, 3.1rem);
  line-height: 1.03;
  margin: 0 0 1.3rem;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.hero-copy h1 {
  max-width: 36rem;
}

.hero-copy {
  max-width: 34rem;
}

.hero-copy .subhead {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-copy h1 .headline-main {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}

.hero-copy h1 .headline-accent {
  text-shadow: none;
}

.headline-main {
  color: rgba(255, 255, 255, 0.97);
  white-space: nowrap;
}

.headline-accent {
  display: block;
  margin-top: 0.4rem;
  color: var(--accent);
}

.subhead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-bottom: 1.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.scroll-label {
  animation: scroll-bob 1.6s ease-in-out infinite;
}

.scroll-chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid currentColor;
  opacity: 0.55;
  animation: scroll-bob 1.6s ease-in-out infinite;
}

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

@media (max-width: 560px) {
  .headline-main {
    white-space: normal;
  }
}

.section-title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  letter-spacing: -0.02em;
}

.problem-grid,
.service-block,
.cards-3,
.cards-2 {
  display: grid;
  gap: 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr;
  align-items: start;
}

.problem-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.problem-col h3,
.service-copy h3,
.case-card h3,
.price-card h3,
.bio-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
}

.problem-col h3 {
  margin-bottom: 0.55rem;
}

.problem-col > p {
  margin-top: 0;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.problem-col h3,
.problem-col p {
  text-align: center;
}

.problem-col p {
  color: var(--muted);
}

.mockup {
  margin-top: 1.1rem;
  padding: 1rem;
}

.google-mockup .mockup-topbar {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.search-row {
  margin-top: 0.85rem;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.85rem;
}

.tabs {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: left;
}

.serp-list {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem .serp-list {
  gap: 0.42rem;
}

.problem .ctr-note {
  margin: 0.55rem 0 0;
}

.serp-item {
  margin: 0;
  padding: 0.42rem 0.5rem;
  min-height: 3.05rem;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  will-change: transform;
}

.serp-main strong {
  display: block;
  color: #f2f2f2;
  font-size: 0.85rem;
}

.serp-main span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}

.ctr-badge {
  font-size: 0.72rem;
  color: #111;
  background: #e6e6e6;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

.serp-item.you-slot {
  background: linear-gradient(180deg, rgba(193, 18, 31, 0.35), rgba(193, 18, 31, 0.12));
  border: 1px solid rgba(255, 130, 140, 0.45);
}

.ctr-note {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.phone {
  max-width: 360px;
  width: 360px;
  margin-inline: auto;
  border-radius: 36px;
}

.problem-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.problem-col .mockup {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 448px;
  margin-top: 0.85rem;
  padding: 0.85rem;
}

.problem-col .mockup.google-mockup .ctr-note {
  margin-top: auto;
}

.problem-col .mockup.phone {
  min-height: 0;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.82rem;
}

.phone-status span {
  color: var(--muted);
}

.call-screen {
  margin-top: 0.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #575b67, #353a46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem;
}

.call-stack {
  margin-top: 0.9rem;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.call-stack .call-screen {
  position: absolute;
  inset: 0;
}

.incoming-state {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.incoming-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.lead-tag {
  margin: 0;
  color: #dedede;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.incoming-city {
  color: #cfd2da;
  text-align: center;
  font-weight: 600;
  margin: 0.35rem 0 0.2rem;
}

.incoming-name {
  font-size: 1.85rem;
  margin: 0.35rem 0 0;
  text-align: center;
  font-weight: 600;
}

.call-actions,
.call-actions span {
  display: none;
}

.call-controls {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.75rem;
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 0.35rem;
}

.call-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.call-btn-label {
  font-size: 0.72rem;
  color: #eceef6;
  font-weight: 500;
}

.call-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: default;
  color: #fff;
}

.call-circle .call-svg {
  display: block;
}

.call-circle.answer .call-svg {
  fill: #fff;
  color: #fff;
}

.call-circle.decline .call-svg {
  color: #fff;
}

.call-controls button {
  border: 0;
}

.decline {
  background: #ff3b30;
  color: #fff;
}

.answer {
  background: #58d172;
  color: #fff;
}

.missed-state {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0.75rem 0.65rem 2.25rem;
  background: linear-gradient(180deg, #575b67, #353a46);
}

.missed {
  color: #ff7f86;
  font-size: 1.25rem;
}

.incoming .incoming-state {
  animation: callIncoming 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.incoming .missed-state {
  animation: callMissed 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes callIncoming {
  0%,
  48% {
    opacity: 1;
  }
  54%,
  100% {
    opacity: 0;
  }
}

@keyframes callMissed {
  0%,
  48% {
    opacity: 0;
  }
  54%,
  100% {
    opacity: 1;
  }
}

.missed-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  width: min(340px, 92%);
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  color: #111;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  animation: missed-notif 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.missed-banner strong {
  display: block;
  font-size: 0.95rem;
}

.missed-banner .missed-text span {
  display: block;
  font-size: 0.82rem;
  color: #333;
  font-weight: 600;
}

.missed-time {
  font-style: normal;
  font-size: 0.78rem;
  color: #555;
}

@keyframes missed-notif {
  0%,
  42% {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }
  48%,
  91% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  97%,
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c0e8ff;
  font-size: 1.15rem;
}

.service-block {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 1.55rem;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.label {
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
}

.messages .banner {
  margin: 0.8rem 0 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.chat {
  display: grid;
  gap: 0.6rem;
}

.bubble {
  margin: 0;
  max-width: 88%;
  padding: 0.6rem 0.72rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.bubble.company {
  background: rgba(103, 175, 255, 0.2);
  margin-left: auto;
}

.bubble.customer {
  background: rgba(95, 255, 194, 0.2);
}

.messages {
  width: 360px;
  margin-inline: auto;
}

.chat .bubble {
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.98);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.chat .bubble.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.chat.is-resetting .bubble {
  opacity: 0 !important;
  transform: translate3d(0, 4px, 0) scale(0.98) !important;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.9rem 0.7rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.2rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.services .serp-list--top3 {
  gap: 0.42rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.case-card,
.price-card,
.bio-card {
  padding: 1.3rem;
  transition: transform 250ms ease, border-color 250ms ease;
}

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

.case-card:hover,
.price-card:hover,
.bio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 220, 255, 0.55);
}

.case-bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.05rem;
}

.case-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 0.45rem 0.55rem;
}

.case-bar-label {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.25;
}

.case-bar-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-bar-fill {
  display: block;
  height: 100%;
  width: var(--fill, 50%);
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5c0a10, #c1121f 55%, #e02434);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-bar-fill--peak {
  background: linear-gradient(90deg, #7a0d14, #c1121f 40%, #ff3d4f);
}

.case-bar-fill--muted {
  background: linear-gradient(90deg, rgba(70, 90, 120, 0.55), rgba(120, 145, 185, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.case-bar-value {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.96);
  text-align: right;
  min-width: 3.5rem;
}

@media (max-width: 400px) {
  .case-bar-row {
    grid-template-columns: 1fr auto;
    row-gap: 0.3rem;
  }

  .case-bar-label {
    grid-column: 1 / -1;
  }

  .case-bar-value {
    min-width: unset;
    align-self: center;
  }
}

.section-copy {
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 0.4rem;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  padding: 0;
  margin: 1rem 0 1.3rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.price-card .btn {
  margin-top: auto;
  color: #fff;
  font-weight: 600;
}

.price-card li::before {
  content: "✓";
  color: var(--accent-2);
  margin-right: 0.45rem;
}

.price-card li.muted {
  opacity: 0.5;
}

.price-card li.muted::before {
  content: "—";
  color: var(--muted);
}

.popular {
  position: relative;
  border-color: rgba(255, 130, 140, 0.55);
  transform: scale(1.02);
  padding-top: 1.35rem;
}

.popular-tag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -52%);
  z-index: 2;
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #c1121f;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  color: #393939;
  max-width: 900px;
  margin: 1.6rem auto 0;
}

.about-head {
  display: grid;
  grid-template-columns: minmax(96px, 0.2fr) minmax(0, 1fr);
  gap: 1.25rem 2rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.big-num {
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  margin: 0;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff, #ff939b 55%, #c1121f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 11ch;
  margin-left: 0;
}

.about h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.about p {
  color: var(--muted);
}

.role {
  color: var(--accent-2);
  margin: -0.1rem 0 0.8rem;
}

.cta-inner {
  text-align: center;
}

.cta-heading {
  margin: 0 0 0.85rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #2c2c2c;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-lead {
  color: #454545;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.cta-form-card {
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, #d5d6da 0%, #c4c6cc 45%, #b6b8bf 100%);
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 28px 56px rgba(0, 0, 0, 0.14),
    0 6px 18px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form {
  text-align: left;
  max-width: 720px;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3a3a3a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font: inherit;
  color: #1a1a1a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.contact-form textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.contact-form .btn-lg {
  justify-self: center;
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

.footer-left {
  min-width: 0;
}

.footer-brand {
  margin: 0 0 0.7rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.footer-brand span {
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 2vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

address {
  font-style: normal;
  color: var(--muted);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  justify-content: start;
}

.footer-links .btn {
  min-height: 40px;
  height: auto;
  align-self: start;
  padding: 0.55rem 1rem;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.footer-cta-col {
  align-self: start;
}

.copyright {
  text-align: center;
  margin: 4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 560ms cubic-bezier(0.23, 1, 0.32, 1), opacity 560ms ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header.scrolled .nav {
  max-width: 465px;
}

.site-header.scrolled .brand-text,
.site-header.scrolled .nav-links {
  opacity: 0;
  max-width: 0;
  margin: 0;
  pointer-events: none;
}

.site-header.scrolled .nav:hover,
.site-header.scrolled .nav:focus-within {
  max-width: min(1220px, calc(100% - 2rem));
}

.site-header.scrolled .nav:hover .brand-text,
.site-header.scrolled .nav:hover .nav-links,
.site-header.scrolled .nav:focus-within .brand-text,
.site-header.scrolled .nav:focus-within .nav-links {
  opacity: 1;
  max-width: 480px;
  pointer-events: auto;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-grid,
  .problem-grid,
  .service-block,
  .cards-3,
  .cards-2,
  .about-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background-position: 72% center;
    transform-origin: 72% 50%;
  }

  .service-block.reverse .service-copy {
    order: 1;
  }

  .service-block.reverse .service-visual {
    order: 2;
  }

  .popular {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .hero::before {
    transform: scale(1) !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
