:root {
  --paper: #f3f0e9;
  --ink: #111111;
  --soft-ink: #55534e;
  --line: rgba(17, 17, 17, 0.18);
  --orange: #ff5c35;
  --acid: #d8ff36;
  --blue: #9adff2;
  --white: #fffefa;
  --max: 1440px;
  --pad: clamp(1.2rem, 4vw, 3.5rem);
  --radius: 1.2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.paguru-social-media-2026 {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

body.paguru-social-media-2026.admin-bar .site-header {
  top: 32px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(243, 240, 233, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 7.4rem;
}

.brand img {
  height: 2.9rem;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.85rem;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, top 0.25s;
}

.menu-toggle span:first-child {
  top: 1.22rem;
}

.menu-toggle span:nth-child(2) {
  top: 1.68rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 1.45rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 1.45rem;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 6rem var(--pad) 2rem;
  background: var(--acid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.25s, visibility 0.25s, transform 0.35s var(--ease);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  width: 100%;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.055em;
}

.site-nav .nav-cta {
  display: flex;
  width: auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.9rem;
  letter-spacing: -0.015em;
}

.section,
.problem,
.method,
.audience,
.work,
.lead,
.final-cta {
  width: 100%;
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
}

.kicker,
.eyebrow,
.hero-index {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.kicker::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: start;
  gap: 2.5rem;
  padding: 8.2rem var(--pad) 2.2rem;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.3rem rgba(255, 92, 53, 0.14);
}

.hero h1,
.section-heading h2,
.problem h2,
.method h2,
.audience h2,
.work h2,
.faq h2,
.lead h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.75rem, 10.8vw, 7.6rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span,
.section-heading h2 span,
.problem h2 span,
.method h2 span,
.audience h2 span,
.work h2 span,
.faq h2 span,
.lead h2 span,
.final-cta h2 span {
  color: var(--orange);
}

.hero-lede {
  max-width: 41rem;
  margin: 1.6rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 3.9vw, 1.45rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 780;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.button:hover {
  transform: translateY(-0.15rem);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 780;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.hero-board {
  position: relative;
  display: block;
  width: min(100%, 36rem);
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0.75rem;
  margin: 0 auto;
  border: 1px solid var(--ink);
  background: var(--orange);
}

.hero-board::before,
.hero-board::after {
  display: none;
}

.hero-phone {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.hero-flow li {
  display: flex;
  min-height: 4.5rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.8rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-flow span {
  color: var(--soft-ink);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.problem {
  display: grid;
  gap: 3.5rem;
  color: var(--white);
  background: var(--ink);
}

.problem .kicker::before,
.work .kicker::before,
.lead .kicker::before {
  background: var(--acid);
}

.problem h2,
.work h2,
.lead h2 {
  font-size: clamp(3.2rem, 13vw, 8rem);
}

.problem h2 span,
.work h2 span,
.lead h2 span {
  color: var(--acid);
}

.problem-copy > p:last-child {
  max-width: 43rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: clamp(1rem, 3.4vw, 1.25rem);
  line-height: 1.55;
}

.problem-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 254, 250, 0.25);
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 254, 250, 0.25);
}

.problem-list span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.problem-list strong {
  font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-heading {
  max-width: 66rem;
}

.section-heading h2,
.method h2,
.audience h2,
.work h2,
.faq h2,
.lead h2,
.final-cta h2 {
  font-size: clamp(2.8rem, 10vw, 6.8rem);
}

.section-heading > p:last-child,
.work-heading > p,
.faq-heading > p,
.lead-copy > p,
.final-cta > p {
  max-width: 42rem;
  margin: 1.7rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 3.3vw, 1.2rem);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-card {
  min-height: 14rem;
  padding: 1.2rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  transition: color 0.25s, background 0.25s;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
}

.service-card-acid {
  background: var(--acid);
}

.service-card-orange {
  background: var(--orange);
}

.service-card > span {
  display: block;
  margin-bottom: 3rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 730;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-card p {
  max-width: 31rem;
  margin: 0.8rem 0 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-card:hover p {
  color: rgba(255, 254, 250, 0.72);
}

.method {
  color: var(--ink);
  background: var(--orange);
}

.method .kicker::before {
  background: var(--ink);
}

.method h2 span {
  color: var(--paper);
}

.method-list {
  padding: 0;
  margin: 3.5rem 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ink);
}

.method-list > li > span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.method-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 7vw, 3.5rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.method-list p {
  max-width: 35rem;
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.audience {
  color: var(--ink);
  background: var(--acid);
}

.audience .kicker::before {
  background: var(--orange);
}

.audience h2 span {
  color: var(--ink);
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}

.audience-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 3.5rem 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.audience-list li {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.audience-list li span {
  display: grid;
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  min-width: 2.6rem;
  min-height: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.audience-list li:hover span {
  color: var(--white);
  background: var(--ink);
  transform: rotate(-15deg);
}

.transformation-heading {
  max-width: 70rem;
}

.comparison {
  display: grid;
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--ink);
}

.comparison-side {
  padding: 1.3rem;
}

.comparison-side > p {
  margin: 0 0 2.5rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-side ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-side li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid currentColor;
  font-size: clamp(1.05rem, 4vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.comparison-side li span {
  font-weight: 850;
}

.comparison-before {
  color: rgba(255, 254, 250, 0.76);
  background: var(--ink);
}

.comparison-before li span {
  color: var(--orange);
}

.comparison-after {
  background: var(--blue);
}

.comparison-after li span {
  color: var(--ink);
}

.comparison-switch {
  display: grid;
  min-height: 3.8rem;
  place-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
  font-size: 1.5rem;
  font-weight: 850;
}

.work {
  color: var(--white);
  background: var(--ink);
}

.work-heading {
  display: grid;
  gap: 1.5rem;
}

.work-heading > p {
  color: rgba(255, 254, 250, 0.65);
}

.work-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.work-card {
  border-top: 1px solid rgba(255, 254, 250, 0.28);
  padding-top: 1rem;
}

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.work-image::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  content: "↗︎";
  font-weight: 850;
  transition: transform 0.3s var(--ease);
}

.work-image:hover::after {
  transform: rotate(12deg) scale(1.08);
}

.work-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-card:nth-child(n + 2) .work-image img {
  aspect-ratio: 1;
}

.work-image:hover img {
  transform: scale(1.025);
}

.work-meta {
  padding-top: 1rem;
}

.work-meta > p:first-child {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-meta h3 {
  margin: 0;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.work-meta > p:not(:first-child) {
  margin: 0.7rem 0 1.25rem;
  color: rgba(255, 254, 250, 0.64);
  font-size: 0.92rem;
}

.faq {
  display: grid;
  gap: 3.5rem;
}

.faq-heading h2 span {
  color: var(--orange);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 4.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 47rem;
  padding: 0 2.5rem 1.5rem 0;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

.lead {
  display: grid;
  gap: 3.5rem;
  color: var(--white);
  background: var(--ink);
}

.lead-copy > p {
  color: rgba(255, 254, 250, 0.68);
}

.lead-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lead-direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255, 254, 250, 0.55);
  font-size: 0.88rem;
  font-weight: 750;
}

.lead-form {
  position: relative;
  min-width: 0;
  padding: 1.3rem;
  color: var(--ink);
  background: var(--paper);
}

.lead-form-fields {
  display: grid;
  gap: 1.15rem;
}

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

.lead-form label:not(.privacy-check):not(.form-hp) {
  display: grid;
  gap: 0.45rem;
}

.lead-form label > span {
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.lead-form label small {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 500;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.lead-form input,
.lead-form select {
  min-height: 3.15rem;
}

.lead-form select {
  appearance: none;
  padding-right: 2rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 0.9rem) 1.45rem, calc(100% - 0.55rem) 1.45rem;
  background-repeat: no-repeat;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
}

.lead-form textarea {
  min-height: 8rem;
  padding: 0.75rem 0;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--orange);
  outline: 0;
  box-shadow: 0 2px 0 var(--orange);
}

.privacy-check {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.3rem;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  margin: 0.1rem 0 0;
  accent-color: var(--orange);
}

.privacy-check span {
  color: var(--soft-ink);
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.form-hp {
  position: absolute !important;
  left: -9999px !important;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 0.25s, background 0.25s;
}

.form-submit:hover {
  color: var(--ink);
  background: var(--acid);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.7rem;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: #9f260c;
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--ink);
}

.form-success-panel {
  display: none;
  min-height: 34rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--acid);
}

.lead-form.is-submitted .lead-form-fields {
  display: none;
}

.lead-form.is-submitted .form-success-panel {
  display: flex;
}

.form-success-kicker {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-success-panel h3 {
  margin: 0;
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.form-success-panel h3 span {
  color: var(--orange);
}

.form-success-panel > p:not(.form-success-kicker) {
  max-width: 29rem;
  margin: 1.3rem 0 0;
  line-height: 1.5;
}

.form-success-action {
  align-self: flex-start;
  margin-top: 2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 780;
}

.final-cta {
  text-align: center;
  background: var(--acid);
}

.final-cta .kicker {
  justify-content: center;
}

.final-cta .kicker::before {
  background: var(--ink);
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta > p {
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
}

.final-cta .button {
  margin-top: 2rem;
}

.site-footer {
  display: grid;
  gap: 2.5rem;
  padding: 3rem var(--pad) 1.5rem;
  color: var(--white);
  background: var(--ink);
}

.footer-brand img {
  width: 8.5rem;
  filter: invert(1);
}

.footer-brand p {
  margin: 1rem 0 0;
  color: rgba(255, 254, 250, 0.64);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
}

.footer-column p {
  margin: 0 0 0.4rem;
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column span {
  color: rgba(255, 254, 250, 0.62);
}

.footer-column a {
  border-bottom: 1px solid rgba(255, 254, 250, 0.3);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 254, 250, 0.2);
  color: rgba(255, 254, 250, 0.58);
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 0.7rem 1.8rem rgba(17, 17, 17, 0.16);
  font-size: 1.2rem;
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.7rem) scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.3s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

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

@media (min-width: 620px) {
  .hero-actions,
  .lead-direct {
    flex-direction: row;
    align-items: center;
  }

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

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

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--ink);
  }

  .audience-list li {
    padding: 1rem;
    border-right: 1px solid var(--ink);
  }

  .comparison {
    grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 1fr);
  }

  .comparison-switch {
    border: 0;
    border-right: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

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

  .lead-form {
    padding: 2rem;
  }

  .site-footer {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.15rem, 2vw, 2.2rem);
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    position: relative;
    width: auto;
    padding: 0;
    border: 0;
    font-size: 0.77rem;
    letter-spacing: -0.01em;
  }

  .site-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -0.4rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease);
  }

  .site-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-nav .nav-cta {
    width: auto;
    margin: 0;
    padding: 0.8rem 1rem;
    font-size: 0.77rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(26rem, 0.75fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 2.5rem clamp(2rem, 5vw, 5rem);
    padding-top: 7.5rem;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 7.4vw, 8rem);
  }

  .hero-board {
    width: 100%;
  }

  .hero-flow {
    grid-column: 1 / -1;
  }

  .problem {
    grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.8fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
  }

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

  .service-card-wide {
    grid-column: span 2;
  }

  .method {
    display: grid;
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1fr);
    gap: clamp(4rem, 9vw, 9rem);
  }

  .method-heading {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .method-list {
    margin-top: 0;
  }

  .method-list li {
    grid-template-columns: 4rem 1fr;
    padding: 2rem 0;
  }

  .audience {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 9rem);
  }

  .audience-list {
    margin-top: 0;
  }

  .work-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.45fr);
    align-items: end;
    gap: 3rem;
  }

  .work-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.2rem;
  }

  .work-card:nth-child(2) {
    margin-top: 5rem;
  }

  .work-card:nth-child(3) {
    margin-top: 10rem;
  }

  .faq {
    grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1fr);
    gap: clamp(4rem, 9vw, 9rem);
  }

  .faq-heading {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .lead {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1fr);
    gap: clamp(4rem, 9vw, 9rem);
  }

  .lead-copy {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

@media (min-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card {
    min-height: 17rem;
    padding: 1.5rem;
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .service-card > span {
    margin-bottom: 5rem;
  }
}

@media (max-width: 782px) {
  body.paguru-social-media-2026.admin-bar .site-header {
    top: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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