:root {
  --ink: #12141a;
  --ink-soft: #1b1e27;
  --panel: #242936;
  --paper: #f4f5f7;
  --paper-soft: #e9edf3;
  --white: #ffffff;
  --muted: #aeb5c2;
  --muted-dark: #5b6472;
  --lime: #3b82f6;
  --accent-soft: #8ea2ff;
  --coral: #ff8a4c;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(18, 20, 26, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(20px, 4.5vw, 72px);
  color: var(--white);
  background: rgba(18, 20, 26, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  object-fit: cover;
  background: #f7f6ee;
}

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

.brand-copy strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  color: #d9dde6;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--white);
  background: var(--lime);
  border-color: var(--lime);
  outline: none;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  transition: filter 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px) scale(1.015);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 92px) 64px;
  color: var(--white);
  background: var(--ink) url("assets/agency-hero.jpg") 65% center / cover no-repeat;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 20, 0.98) 0%, rgba(12, 14, 20, 0.88) 38%, rgba(12, 14, 20, 0.24) 76%),
    linear-gradient(0deg, rgba(12, 14, 20, 0.9), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .kicker,
.detail-section .eyebrow,
.portfolio-section .eyebrow,
.why-section .eyebrow,
.review-proof-heading .eyebrow {
  color: var(--accent-soft);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kicker span {
  width: 26px;
  height: 2px;
  background: var(--accent-soft);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.92;
}

h1 em {
  color: var(--accent-soft);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  color: #d9dde6;
  font-size: clamp(18px, 2vw, 22px);
}

.review-quiz {
  width: min(680px, 100%);
  margin-top: 26px;
}

.review-quiz > p:first-child {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.review-quiz-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.review-quiz-options button {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #e7eaf0;
  background: rgba(12, 14, 20, 0.34);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.review-quiz-options button:hover,
.review-quiz-options button:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  outline: none;
  transform: translateY(-1px);
}

.review-quiz-options button.is-active {
  color: #0c0e14;
  border-color: var(--quiz-accent);
  background: var(--quiz-accent);
}

.review-quiz-options button[data-review-range="low"] {
  --quiz-accent: #ff765f;
}

.review-quiz-options button[data-review-range="starting"] {
  --quiz-accent: #f6c84c;
}

.review-quiz-options button[data-review-range="growing"] {
  --quiz-accent: #62a0ff;
}

.review-quiz-options button[data-review-range="leading"] {
  --quiz-accent: #47d18c;
}

.review-quiz-message {
  display: none;
  width: min(600px, 100%);
  min-height: 46px;
  margin: 15px auto 0;
  padding-left: 14px;
  border-left: 3px solid var(--quiz-message-accent, transparent);
  color: #e7eaf0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.review-quiz-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-quiz-message[data-tone="low"] {
  --quiz-message-accent: #ff765f;
}

.review-quiz-message[data-tone="starting"] {
  --quiz-message-accent: #f6c84c;
}

.review-quiz-message[data-tone="growing"] {
  --quiz-message-accent: #62a0ff;
}

.review-quiz-message[data-tone="leading"] {
  --quiz-message-accent: #47d18c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.01);
}

.button svg,
.text-link svg,
.portfolio-cta svg,
.site-footer a svg,
.service-card > a svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: var(--white);
  background: var(--lime);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lime);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof div {
  min-width: 180px;
  padding: 13px 16px;
  border-left: 2px solid var(--coral);
  background: rgba(18, 20, 26, 0.62);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 20px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--lime);
  color: var(--white);
}

.service-strip span {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 92px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-bottom: 46px;
}

.services-intro {
  grid-template-columns: minmax(0, 900px);
}

.section-intro h2,
.why-heading h2,
.contact-heading h2,
.detail-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.5vw, 70px);
  line-height: 0.98;
}

.section-intro > p,
.why-heading > p,
.contact-heading > p,
.detail-copy > p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

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

.service-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

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

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card-featured .service-number,
.service-card-featured p,
.service-card-featured li {
  color: var(--muted);
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--lime);
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 29px;
  line-height: 1.05;
}

.service-card p {
  color: var(--muted-dark);
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.service-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-light);
  color: #424957;
  font-size: 14px;
}

.service-card-featured li {
  border-color: var(--line-dark);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.detail-section {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.detail-index {
  align-self: start;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.detail-copy h2 {
  margin-bottom: 24px;
}

.detail-copy > p {
  color: var(--muted);
}

.metric-panel {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.metric-panel span {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-panel strong {
  margin: 8px 0;
  color: var(--accent-soft);
  font-size: clamp(72px, 9vw, 118px);
  line-height: 1;
}

.metric-panel p {
  font-size: 19px;
  font-weight: 800;
}

.metric-panel small {
  color: var(--muted);
}

.review-evidence {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.review-evidence > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

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

.review-evidence figure {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

.review-evidence figure > div {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: var(--white);
}

.review-evidence figure span {
  display: block;
  padding: 6px 8px;
  color: var(--muted-dark);
  background: #f2f4f8;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-evidence figure > div:last-child {
  border-color: rgba(142, 162, 255, 0.72);
}

.review-evidence figure > div:last-child span {
  color: #2443c8;
  background: rgba(142, 162, 255, 0.18);
}

.review-evidence img {
  width: 100%;
  aspect-ratio: 4.9 / 1;
  object-fit: contain;
}

.review-evidence figure > svg {
  width: 16px;
  height: 16px;
  justify-self: center;
  color: var(--accent-soft);
  transform: rotate(90deg);
}

.review-proof-strip {
  overflow: hidden;
  padding: clamp(68px, 8vw, 108px) 0;
  color: var(--white);
  background: #181b24;
  border-top: 1px solid var(--line-dark);
}

.review-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  padding: 0 clamp(20px, 6vw, 92px);
  margin-bottom: 38px;
}

.review-proof-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: var(--accent-soft);
}

.review-proof-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 0.98;
}

.review-proof-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.proof-marquee {
  position: relative;
  overflow: hidden;
}

.proof-marquee::before,
.proof-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(28px, 7vw, 120px);
  content: "";
  pointer-events: none;
}

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

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

.proof-track {
  display: flex;
  width: max-content;
  animation: proof-scroll 42s linear infinite;
  will-change: transform;
}

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

.proof-track-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.proof-photo {
  flex: 0 0 280px;
  width: 280px;
  height: 350px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-photo-portrait {
  flex-basis: 265px;
  width: 265px;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: filter 220ms ease, transform 450ms ease;
}

.proof-photo:hover img {
  filter: saturate(1.05) contrast(1);
  transform: scale(1.025);
}

@keyframes proof-scroll {
  to {
    transform: translateX(-50%);
  }
}

.review-results-section {
  color: var(--ink);
  background: #e7eaf0;
}

.review-results-header {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-bottom: 42px;
}

.review-results-header h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 0.98;
}

.review-results-header > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.review-cases {
  display: grid;
  gap: 18px;
}

.review-case {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(18, 20, 26, 0.07);
}

.review-case-summary {
  display: grid;
  gap: 28px;
}

.review-case-index {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-case-summary h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
}

.review-deltas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-deltas span {
  padding: 9px 11px;
  border-radius: 4px;
  color: var(--white);
  background: var(--lime);
  font-size: 12px;
}

.review-deltas strong {
  font-size: 15px;
}

.review-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.review-snapshot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: var(--white);
}

.review-snapshot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line-light);
  background: #f2f4f8;
}

.review-snapshot figcaption span {
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-snapshot figcaption strong {
  font-size: 12px;
}

.review-snapshot.after {
  border-color: rgba(49, 82, 232, 0.58);
  box-shadow: inset 0 0 0 1px rgba(49, 82, 232, 0.2);
}

.review-snapshot.after figcaption {
  background: rgba(49, 82, 232, 0.1);
}

.review-snapshot img {
  width: 100%;
  aspect-ratio: 4.9 / 1;
  object-fit: contain;
  background: var(--white);
}

.comparison-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--lime);
}

.comparison-arrow svg {
  width: 17px;
  height: 17px;
}

.review-results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.review-results-footer p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-results-footer p strong {
  color: var(--white);
}

.review-results-footer a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 900;
}

.review-results-footer svg {
  width: 17px;
  height: 17px;
}

.social-results-section {
  color: var(--ink);
  background: var(--paper-soft);
}

.social-service-header {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  padding-bottom: clamp(58px, 8vw, 96px);
}

.social-service-header .detail-copy {
  max-width: 980px;
}

.social-service-header .detail-copy > p {
  color: var(--muted-dark);
}

.social-service-header .detail-copy h2 {
  max-width: 940px;
}

.social-results-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  padding-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line-light);
  margin-bottom: 38px;
}

.social-results-header h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 0.98;
}

.social-results-header > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.social-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--ink);
}

.social-kpis article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.social-kpis article + article {
  border-left: 1px solid var(--line-dark);
}

.social-kpis span,
.social-kpis strong,
.social-kpis small {
  display: block;
}

.social-kpis span {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.social-kpis strong {
  margin: 8px 0 5px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.social-kpis small {
  color: var(--muted);
  font-size: 12px;
}

.social-insights-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.social-insight {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #f8f9fb;
}

.social-insight-wide {
  grid-column: span 3;
}

.social-insight-followers {
  grid-column: 1 / -1;
}

.social-insight-tall {
  grid-column: span 2;
}

.social-insight-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line-light);
}

.social-insight-label span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-insight-label strong {
  font-size: 12px;
}

.social-insight img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--white);
}

.social-results-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.social-results-note p {
  max-width: 780px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.social-results-note a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.social-results-note svg {
  width: 17px;
  height: 17px;
}

.portfolio-section {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #151821;
  background-size: 42px 42px;
}

.portfolio-grid {
  display: grid;
  gap: 18px;
}

.portfolio-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.portfolio-header h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
}

.portfolio-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(32, 36, 48, 0.94);
}

.portfolio-grid .case-study {
  min-height: 520px;
}

.case-study-placeholder {
  opacity: 0.58;
  filter: saturate(0.45);
}

.case-study-placeholder .case-copy {
  min-height: 180px;
}

.case-study-placeholder h3 {
  max-width: 470px;
  color: var(--white);
}

.placeholder-preview {
  pointer-events: none;
}

.placeholder-canvas {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent 52%),
    #11151f;
}

.placeholder-canvas span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  filter: blur(3px);
}

.placeholder-canvas span:first-child {
  grid-row: 1 / -1;
}

.placeholder-canvas-alt {
  grid-template-columns: 0.8fr 1.2fr;
}

.placeholder-canvas-alt span:first-child {
  grid-column: 2;
}

.case-preview {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0c0e14;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.browser-bar {
  min-height: 46px;
  display: grid;
  grid-template-columns: 62px 1fr 20px;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  color: #9299a8;
  background: #191c25;
}

.browser-bar > svg {
  width: 15px;
  height: 15px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555d6c;
}

.browser-dots i:first-child {
  background: var(--coral);
}

.browser-dots i:nth-child(2) {
  background: #e4c75e;
}

.browser-dots i:last-child {
  background: #80af64;
}

.browser-address {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.browser-viewport {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.harbor-preview-viewport {
  position: relative;
}

.harbor-preview-logo {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 26px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: #fffaf1;
}

.harbor-preview-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.browser-viewport img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 350ms ease;
}

.browser-viewport .harbor-preview-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.case-preview:hover .browser-viewport img {
  transform: scale(1.018);
}

.felice-preview-scene {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  color: #2b1710;
  background: #fff7ea url("portfolio/caffe-felice/assets/cappuccino.jpg") 70% center / cover no-repeat;
  transition: transform 350ms ease;
}

.case-preview:hover .felice-preview-scene {
  transform: scale(1.018);
}

.felice-preview-nav {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(43, 23, 16, 0.14);
  background: rgba(255, 247, 234, 0.94);
  font-size: 11px;
}

.felice-preview-nav strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.felice-preview-nav i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 6px;
  color: #fff7ea;
  background: #d94b2b;
  font-style: normal;
}

.felice-preview-copy {
  display: flex;
  width: 52%;
  height: calc(100% - 54px);
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: rgba(255, 247, 234, 0.94);
}

.felice-preview-copy small {
  margin-bottom: 12px;
  color: #d94b2b;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.felice-preview-copy strong {
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 0.92;
}

.felice-preview-copy span {
  max-width: 270px;
  margin-top: 16px;
  color: #6c3c22;
  font-size: 11px;
}

.salon-preview-scene {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  color: #171412;
  background:
    linear-gradient(115deg, rgba(247, 242, 236, 0.98) 0 48%, rgba(247, 242, 236, 0.42) 48% 100%),
    url("portfolio/luxe-hair-studio/assets/salon/salon-contact-sheet.png") 100% 100% / 300% 200% no-repeat,
    #d7aa8b;
  transition: transform 350ms ease;
}

.salon-preview-scene::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 48%;
  height: 54%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  background: url("portfolio/luxe-hair-studio/assets/salon/salon-contact-sheet.png") 50% 0 / 300% 200% no-repeat;
  content: "";
}

.case-preview:hover .salon-preview-scene {
  transform: scale(1.018);
}

.salon-preview-nav {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(23, 20, 18, 0.12);
  background: rgba(247, 242, 236, 0.9);
  color: #5b4a42;
  font-size: 11px;
}

.salon-preview-nav strong {
  color: #171412;
  font-size: 14px;
  letter-spacing: 0;
}

.salon-preview-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(58%, 420px);
  height: calc(100% - 54px);
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.salon-preview-copy small {
  margin-bottom: 12px;
  color: #9c4f43;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.salon-preview-copy strong {
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 0.92;
}

.salon-preview-copy span {
  max-width: 300px;
  margin-top: 16px;
  color: #5b4a42;
  font-size: 11px;
}

.salon-preview-panel {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 80px;
  display: grid;
  min-width: 150px;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 22px 44px rgba(23, 20, 18, 0.16);
}

.salon-preview-panel span {
  color: #9c4f43;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.salon-preview-panel strong {
  color: #171412;
  font-size: 34px;
  line-height: 1;
}

.salon-preview-panel i {
  color: #4e674b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.preview-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  transition: filter 160ms ease, transform 160ms ease;
}

.preview-action:hover,
.preview-action:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px) scale(1.015);
}

.preview-action svg {
  width: 16px;
  height: 16px;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.case-count {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.case-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #e0e4ec;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(142, 162, 255, 0.72);
}

.case-summary {
  max-width: 620px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.case-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.case-specs div {
  padding: 18px 18px 18px 0;
}

.case-specs div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.case-specs span,
.case-specs strong {
  display: block;
}

.case-specs span {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.case-specs strong {
  font-size: 13px;
}

.case-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.case-features span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e0e4ec;
  font-size: 13px;
  font-weight: 700;
}

.case-features svg {
  width: 17px;
  height: 17px;
  color: var(--accent-soft);
}

.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.case-stack span {
  padding: 6px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.case-whatsapp-cta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(37, 211, 102, 0.26);
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.06);
}

.case-whatsapp-cta span {
  color: #d9e6f7;
  font-size: 15px;
  font-weight: 900;
}

.case-whatsapp-cta a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #07120c;
  background: #25d366;
  font-size: 13px;
  font-weight: 950;
  transition: filter 160ms ease, transform 160ms ease;
}

.case-whatsapp-cta a:hover,
.case-whatsapp-cta a:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px) scale(1.015);
}

.case-whatsapp-cta svg {
  width: 16px;
  height: 16px;
}

.portfolio-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 22px 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.portfolio-cta span {
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-cta p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-cta a {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lime);
  font-size: 13px;
  transition: filter 160ms ease, transform 160ms ease;
}

.portfolio-cta a:hover,
.portfolio-cta a:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px) scale(1.015);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 8vw, 120px);
  color: var(--white);
  background: var(--ink);
}

.why-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.why-heading h2 {
  margin-bottom: 22px;
}

.why-heading > p {
  color: var(--muted);
}

.why-list {
  display: grid;
}

.why-list article {
  display: grid;
  grid-template-columns: 34px 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.why-list article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.why-list article > svg {
  width: 28px;
  height: 28px;
  color: var(--accent-soft);
}

.why-list h3 {
  margin-bottom: 6px;
  font-size: 25px;
}

.why-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: start;
  background: var(--paper-soft);
}

.contact-heading h2 {
  margin-bottom: 22px;
}

.contact-options {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 28px;
}

.whatsapp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}

.whatsapp-button svg {
  width: 20px;
  height: 20px;
}

.contact-options > a:last-child,
.contact-email-placeholder,
.contact-email-link {
  color: var(--muted-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(18, 20, 26, 0.1);
}

.contact-form-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.contact-details div {
  min-width: 0;
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.contact-details p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(18, 20, 26, 0.24);
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f8f9fb;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  outline: 3px solid rgba(49, 82, 232, 0.18);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #2443c8;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: #0c0e14;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 900;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(28px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(rgba(18, 20, 26, 0.78), rgba(18, 20, 26, 0.92)),
    url("assets/agency-hero.jpg") center / cover no-repeat;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-soft);
  font-weight: 900;
}

.legal-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(18, 20, 26, 0.88);
  box-shadow: var(--shadow-heavy);
}

.legal-card h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 82px);
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 24px;
}

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

.legal-card a {
  color: var(--accent-soft);
  font-weight: 900;
}

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 420px;
  }

  .detail-section {
    grid-template-columns: 54px 1fr;
  }

  .metric-panel {
    grid-column: 2;
  }

  .social-service-header {
    grid-template-columns: 54px 1fr;
  }

  .review-case {
    grid-template-columns: 1fr;
  }

  .review-case-summary {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .case-study {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .language-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 90vh;
    padding: 112px 20px 36px;
    background-position: 68% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(12, 14, 20, 0.62) 0%, rgba(12, 14, 20, 0.94) 66%),
      linear-gradient(90deg, rgba(12, 14, 20, 0.55), transparent);
  }

  h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .review-quiz {
    margin-top: 22px;
  }

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

  .review-quiz-options button {
    min-width: 0;
  }

  .review-quiz-message {
    min-height: 66px;
    font-size: 14px;
  }

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

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

  .hero-proof div {
    min-width: 0;
  }

  .hero-proof div:last-child {
    grid-column: 1 / -1;
  }

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

  .service-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .section {
    padding: 64px 20px;
  }

  .section-intro,
  .review-results-header,
  .review-proof-heading,
  .social-results-header,
  .why-section,
  .contact-section,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
    margin-bottom: 32px;
  }

  .portfolio-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-meta {
    justify-items: start;
  }

  .section-intro h2,
  .review-results-header h2,
  .social-results-header h2,
  .portfolio-header h2,
  .why-heading h2,
  .contact-heading h2,
  .detail-copy h2 {
    font-size: 38px;
  }

  .service-card {
    min-height: 440px;
    padding: 24px;
  }

  .detail-section {
    grid-template-columns: 1fr;
  }

  .detail-index,
  .metric-panel {
    grid-column: auto;
  }

  .social-service-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 52px;
  }

  .review-case {
    padding: 18px;
  }

  .review-evidence-grid {
    grid-template-columns: 1fr;
  }

  .review-evidence figure {
    padding: 10px;
  }

  .review-proof-heading {
    margin-bottom: 28px;
  }

  .review-proof-heading .eyebrow {
    margin-bottom: -4px;
  }

  .review-proof-heading h2 {
    font-size: 38px;
  }

  .proof-track {
    animation-duration: 32s;
  }

  .proof-photo,
  .proof-photo-portrait {
    flex-basis: 210px;
    width: 210px;
    height: 270px;
  }

  .review-case-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-comparison {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .review-results-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-kpis {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .social-kpis article + article {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .social-insights-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .social-insight-wide,
  .social-insight-followers,
  .social-insight-tall {
    grid-column: auto;
  }

  .social-results-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-study {
    min-height: 0;
    padding: 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid .case-study {
    min-height: 0;
  }

  .placeholder-canvas {
    min-height: 230px;
  }

  .case-specs {
    grid-template-columns: 1fr;
  }

  .case-specs div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .case-features {
    grid-template-columns: 1fr;
  }

  .preview-action {
    right: 12px;
    bottom: 12px;
  }

  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-column,
  .contact-form,
  .contact-details {
    width: 100%;
    min-width: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details p {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  body.form-submit-visible .floating-whatsapp {
    bottom: max(88px, calc(env(safe-area-inset-bottom) + 88px));
  }

  body.contact-section-visible .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
  }

  .why-heading {
    position: static;
  }

  .why-list article {
    grid-template-columns: 28px 42px 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .proof-track {
    animation: none;
  }

  .proof-track-group[aria-hidden="true"] {
    display: none;
  }

  .proof-photo img {
    transition: none;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .header-cta {
    max-width: 120px;
    text-align: center;
  }

  .header-actions {
    gap: 6px;
  }

  h1 {
    font-size: 40px;
  }
}
