/* ==========================================================================
   DaniYourSEOGuy — Roofing SEO Specialist
   Dark industrial theme · Bebas Neue + Barlow Condensed + Barlow
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-card: #141414;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --text: #f4f4f4;
  --text-2: #b8b8b8;
  --text-3: #777777;
  --accent: #FF5C00;
  --accent-2: #ff7a2e;
  --accent-soft: rgba(255, 92, 0, 0.12);
  --shadow-orange: 0 12px 40px -10px rgba(255, 92, 0, 0.35);
  --shadow-deep: 0 25px 60px -20px rgba(0, 0, 0, 0.8);

  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;

  --container: 1400px;
  --container-wide: 1680px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  font: inherit;
  cursor: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* Typography ----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.kicker {
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-stroke {
  font-family: var(--font-condensed);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--text-2);
}

/* Container -----------------------------------------------------------------*/
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {

  .container,
  .container-wide {
    padding: 0 20px;
  }
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: width .2s, height .2s, background .2s;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transition: width .25s, height .25s, border-color .2s;
}

.cursor-dot.is-hover {
  width: 16px;
  height: 16px;
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  body {
    cursor: auto;
  }

  button,
  a {
    cursor: pointer;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: 0.02em;
  color: var(--text);
  overflow: hidden;
}

.preloader__text span {
  display: inline-block;
  transform: translateY(110%);
}

.preloader__text .accent {
  color: var(--accent);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, backdrop-filter .3s ease;
}

.header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo .accent {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav__link {
  font-family: var(--font-condensed);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--accent);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border: none;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.7, 0, .2, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn:hover {
  color: #0a0a0a;
}

.btn .arrow {
  transition: transform .3s ease;
  display: inline-block;
}

.btn:hover .arrow {
  transform: rotate(-45deg);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}

.btn--ghost::before {
  background: var(--accent);
}

.btn--ghost:hover {
  color: #0a0a0a;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .header__cta {
    display: none;
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 200;
  display: none;
  backdrop-filter: blur(8px);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7, 0, .2, 1);
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-drawer__nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.mobile-drawer__nav a:hover,
.mobile-drawer__nav a.is-active {
  color: var(--accent);
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
/* Hero SEOPP Layout */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 1100px;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.hero__seopp-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 130px;
}

/* Top Pill Badge */
.hero__seopp-pill {
  position: absolute;
  top: 130px;
  right: 32px;
  z-index: 5;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 999px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 92, 0, 0.4);
}

@keyframes float {

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

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

/* Photo */
.hero__seopp-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 88%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.hero__seopp-photo img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  display: block;
  transform: scale(1.15);
}

/* Massive Headlines */
.hero__seopp-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 240px);
  color: var(--accent);
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
  z-index: 1;
  white-space: nowrap;
}

/* Left Group */
.hero__seopp-left-group {
  position: absolute;
  top: 17%;
  left: 32px;
  z-index: 3;
}

.hero__seopp-title--left {
  font-size: clamp(60px, 10vw, 170px);
  display: flex;
  flex-direction: column;
}

/* wide-but-short screens: keep the heading + intro + serp-card column
   inside the hero's 720px minimum height */
@media (min-width: 1700px) and (max-height: 780px) {
  .hero__seopp-title--left {
    font-size: clamp(60px, 8.8vw, 150px);
  }
}

.left-heading .im {
  color: #ffffff;
  display: block;
  font-size: 0.45em;
  letter-spacing: 6px;
  line-height: 1;
}

.left-heading .name {
  color: var(--accent);
  display: block;
  line-height: 0.85;
}

/* Right Group */
.hero__seopp-right-group {
  position: absolute;
  bottom: 12%;
  right: 32px;
  text-align: right;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__seopp-title--right {
  line-height: 0.95;
  white-space: normal;
  display: flex;
  flex-direction: column;
}

.hero__right-line-group {
  display: contents;
}

.hero__right-line {
  display: block;
  width: 100%;
  font-family: var(--font-display);
}

.hero__right-line+.hero__right-line {
  margin-top: 4px;
}

.hero__right-line--xs {
  font-size: clamp(36px, 3.6vw, 60px);
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.0;
}

.hero__right-line--xl {
  font-size: clamp(70px, 8vw, 130px);
  color: var(--accent);
  line-height: 0.88;
  margin: 0;
}

.hero__right-line--lg {
  font-size: clamp(48px, 5.5vw, 90px);
  color: var(--text);
  line-height: 0.92;
}

.hero__right-line--sm {
  font-size: clamp(28px, 2.8vw, 44px);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.0;
  margin-top: 8px;
  font-style: italic;
}

.hero__seopp-desc--right {
  color: var(--text-2);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.5;
  max-width: 320px;
}

/* Description under the DANIYAL heading (left side) */
.hero__seopp-desc--left {
  color: var(--text-2);
  font-size: 17px;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 380px;
}

/* serp-card stacked under the intro text in the left column */
.hero__seopp-left-group .serp-card {
  position: static;
  width: 260px;
  margin: 18px 0 0;
}

.hero__seopp-right-group .btn {
  margin-top: 0;
}

/* Trust bar under hero headline */
.hero__trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.hero__trust-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  font-size: 13px;
}

.hero__trust-label {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.hero__trust-sep {
  color: var(--text-3);
  font-size: 13px;
}

/* Dual CTA row */
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Bottom Left Stats */
.hero__seopp-stats {
  position: absolute;
  bottom: 8%;
  left: 32px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Rank Badge Override for Hero */
.rank-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 14px;
  background: rgba(20, 20, 20, .9);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  position: static;
  /* fill the grid cell so all four pills are exactly the same size/shape,
     with the icon + text centered as a group inside each */
  width: 100%;
  justify-content: center;
}

.rank-badge__icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 22px;
}

.rank-badge__text {
  font-family: var(--font-condensed);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 1px;
  text-align: center;
}

.rank-badge__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* USP strip — four badges directly after the hero */
.usp-strip {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

/* Equal-cell grid keeps all four pills the same width, so their rounded
   shapes are identical regardless of how long each label is. */
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: 1500px;
  margin-inline: auto;
}

/* Two-up, then single column on smaller screens — cells stay identical. */
@media (max-width: 1400px) {
  .usp-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
  }
}

@media (max-width: 640px) {
  .usp-strip__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 400px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    max-height: none;
    padding-bottom: 60px;
  }

  .hero__seopp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
  }

  .hero__seopp-pill {
    position: static;
    margin-bottom: 20px;
    white-space: normal;
    text-align: center;
  }

  .hero__seopp-title {
    font-size: clamp(60px, 15vw, 120px);
    position: static;
    text-align: center;
    white-space: normal;
  }

  /* Flatten the left group so its children (title, desc, serp-card) become
     direct flex items of the hero column — lets us slot the photo between the
     intro text and the 3-pack card on mobile. */
  .hero__seopp-left-group {
    display: contents;
    text-align: center;
  }

  .hero__seopp-pill { order: 1; }
  .hero__seopp-title--left { order: 2; }
  .hero__seopp-desc--left { order: 3; }
  .hero__seopp-photo { order: 4; }
  .hero__seopp-left-group .serp-card { order: 5; }
  .hero__seopp-right-group { order: 6; }

  .hero__seopp-title--left {
    align-items: center;
  }

  .left-heading .name {
    margin-top: 12px;
  }

  .hero__seopp-desc--right {
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__seopp-desc--left {
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
  }

  .hero__seopp-right-group {
    position: static;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }

  .hero__seopp-title--right {
    text-align: center;
    align-items: center;
  }

  .hero__trust-bar {
    justify-content: center;
  }

  .hero__cta-row {
    justify-content: center;
  }

  .hero__right-line-group {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
  }

  .hero__right-line-group .hero__right-line {
    width: auto;
    display: inline-block;
    margin: 0;
  }

  .hero__right-line--xs {
    font-size: clamp(30px, 8vw, 40px);
  }

  .hero__right-line--xl {
    font-size: clamp(40px, 10vw, 60px);
  }

  .hero__right-line--lg {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero__right-line--sm {
    font-size: clamp(24px, 6vw, 36px);
  }

  .hero__seopp-photo {
    position: static;
    transform: none;
    width: 100%;
    max-width: 440px;
    height: 520px;
    margin: 20px auto;
  }

  .hero__seopp-photo img {
    height: 100%;
    transform: none;
  }

  .hero__seopp-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .hero__seopp-photo {
    max-width: 360px;
    height: 460px;
  }

  .hero__seopp-title {
    font-size: clamp(50px, 18vw, 90px);
  }

  .hero__right-line--xl {
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero__right-line--lg {
    font-size: clamp(24px, 6vw, 28px);
  }
}

/* ==========================================================================
   Section base
   ========================================================================== */
.section {
  padding: 140px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-head {
  margin-bottom: 80px;
  max-width: 880px;
}

.section-head h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  margin-top: 14px;
}

.section-head h2 .accent {
  color: var(--accent);
}

.section-head p {
  margin-top: 24px;
  color: var(--text-2);
  font-size: 18px;
  max-width: 600px;
}

/* ==========================================================================
   About strip
   ========================================================================== */
.about-strip {
  background: var(--bg);
}

.about-strip__top h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95;
  max-width: 1100px;
  color: var(--text);
}

.about-strip__top h2 .accent {
  color: var(--accent);
}

.about-strip__row {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.about-strip__counter {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-strip__counter .num {
  font-family: var(--font-display);
  font-size: clamp(90px, 12vw, 180px);
  line-height: 1;
  color: var(--accent);
}

.about-strip__counter .lbl {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-strip__body p {
  color: var(--text-2);
  font-size: 19px;
  line-height: 1.55;
}

.about-strip__body .btn {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .about-strip__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-strip__counter .lbl {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

/* ==========================================================================
   Stats card row (about bottom)
   ========================================================================== */
.about-bottom {
  padding-bottom: 140px;
}

.about-bottom__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.about-bottom__visual {
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 60px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-bottom__visual::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  filter: blur(40px);
}

.about-bottom__visual { perspective: 1100px; }
.house-svg {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  transform-style: preserve-3d;
  transform-origin: center 60%;
  animation: house3d 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes house3d {
  0%   { transform: rotateY(-16deg) rotateX(5deg) translateY(0); }
  50%  { transform: rotateY(16deg) rotateX(-3deg) translateY(-12px); }
  100% { transform: rotateY(-16deg) rotateX(5deg) translateY(0); }
}

.about-bottom__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-bottom__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.about-bottom__card-num {
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--text);
}

.about-bottom__card-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.about-bottom__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.about-bottom__card-divider {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin-top: 40px;
}

.about-bottom__card-text {
  color: var(--text-2);
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-bottom__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Brand ticker
   ========================================================================== */
.ticker {
  padding: 32px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  width: max-content;
}

.ticker__item {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ticker__item .star {
  color: var(--accent);
  font-size: 24px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

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

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 38px 40px;
  transition: border-color .35s ease, transform .35s ease, background .35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, transparent 50%, var(--accent-soft));
  border-radius: 24px;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 92, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 32px;
  transition: transform .5s ease, background .3s ease;
}

.service-card:hover .service-card__icon {
  transform: rotate(-12deg) scale(1.05);
  background: var(--accent);
  color: #0a0a0a;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}

.service-card__text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: gap .25s ease;
}

.service-card__link:hover {
  gap: 16px;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Achievements
   ========================================================================== */
.achievement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: all .3s ease;
}

.achievement-row:hover {
  border-color: var(--accent);
  background: rgba(255, 92, 0, 0.05);
}

.achievement-row__left {
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}

.achievement-row__year {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.achievement-row__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.achievement-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: all .3s ease;
}

.achievement-row:hover .achievement-row__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: rotate(-45deg);
}

/* ==========================================================================
   Working process
   ========================================================================== */
.process {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.process__intro h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  color: var(--text);
}

.process__intro p {
  color: var(--text-2);
  margin-top: 28px;
  font-size: 17px;
  max-width: 420px;
}

.process__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.process-card {
  background: var(--text);
  color: var(--bg);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}

.process-card:hover {
  transform: translateX(-6px);
}

.process-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.process-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--bg);
  max-width: 60%;
}

.process-card__step {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}

.process-card__text {
  margin-top: 22px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  max-width: 80%;
}

.process__marquee {
  margin-top: 100px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.process__marquee-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.process__marquee span {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 140px);
  color: transparent;
  -webkit-text-stroke: 1px var(--text-3);
  text-stroke: 1px var(--text-3);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}

.process__marquee span::after {
  content: '✦';
  color: var(--accent);
  -webkit-text-stroke: 0;
}

@media (max-width: 1024px) {
  .process__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================================================================
   Case studies (asymmetric grid)
   ========================================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
}

.case-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

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

.case-card__tag {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(255, 92, 0, 0.3);
  border-radius: 999px;
  background: var(--accent-soft);
}

.case-card__stat {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 90px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
}

.case-card__stat .accent {
  color: var(--accent);
}

.case-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin-top: 8px;
}

.case-card__desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
  flex: 1;
}

.case-card__metrics {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.case-card__metric {
  flex: 1;
}

.case-card__metric-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.case-card__metric-lbl {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-top: 2px;
}

@media (max-width: 900px) {

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

/* ==========================================================================
   Growth stats glass cards
   ========================================================================== */
.growth {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 92, 0, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 92, 0, 0.08), transparent 50%),
    var(--bg);
}

.growth__head {
  text-align: center;
  margin-bottom: 80px;
}

.growth__head h2 {
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.95;
}

.growth__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.growth-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  min-height: 280px;
  transition: all .3s ease;
}

.growth-card:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.growth-card:hover * {
  color: #0a0a0a !important;
}

.growth-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
}

.growth-card__num {
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
}

.growth-card__lbl {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 6px;
}

.growth-card__alt:nth-child(2n) {
  transform: translateY(40px);
}

@media (max-width: 1024px) {
  .growth__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-card__alt:nth-child(2n) {
    transform: none;
  }
}

@media (max-width: 600px) {
  .growth__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  text-align: center;
}

.testimonials__avatars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.testimonials__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #555);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  filter: grayscale(1);
  opacity: 0.5;
}

.testimonials__avatar.is-active {
  width: 76px;
  height: 76px;
  border-color: var(--accent);
  filter: none;
  opacity: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0a0a;
}

.testimonials__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 32px;
}

.testimonials__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 500;
  text-transform: none;
}

.testimonials__author {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonials__author-line {
  width: 40px;
  height: 1px;
  background: var(--text);
}

.testimonials__author-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.testimonials__author-role {
  color: var(--text-3);
  font-size: 14px;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.testimonials__nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .25s ease;
}

.testimonials__nav button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

/* Reviews — rating summary */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 30px;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

.reviews-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text-2);
  padding-right: 28px;
  border-right: 1px solid var(--line-2);
}

.reviews-summary__badge i {
  font-size: 22px;
  color: var(--accent);
}

.reviews-summary__score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-summary__num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}

.reviews-summary__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--accent);
  font-size: 16px;
}

.reviews-summary__count {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: 0.03em;
}

/* Reviews wall */
.reviews-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
  text-align: left;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  transition: all .3s ease;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.review-card__id {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.review-card__role {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

.review-card__g {
  color: var(--text-2);
  font-size: 18px;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 14px;
  margin: 18px 0 14px;
}

.review-card__text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .reviews-wall {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact split
   ========================================================================== */
.contact-split {
  background: var(--bg);
  position: relative;
}

.contact-split__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-split__info {
  background: var(--accent);
  color: #0a0a0a;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.contact-split__info h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #0a0a0a;
}

.contact-split__info p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.contact-split__info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-split__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-split__info-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0a0a0a;
  flex-shrink: 0;
}

.contact-split__info-item span {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 16px;
  color: #0a0a0a;
}

.contact-split__form {
  background: var(--bg-2);
  padding: 70px 60px;
}

.contact-split__form h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .25s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

/* Microcopy + optional labels for simplified form */
.form-microcopy {
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: -20px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ==========================================================================
   Trust badge — reusable micro-credibility under CTAs
   ========================================================================== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.trust-badge__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.02em;
  text-align: left;
}

.trust-badge__item i {
  color: var(--accent);
  font-size: 14px;
}

.trust-badge__sep {
  width: 1px;
  height: 16px;
  background: var(--line-2);
}

/* ==========================================================================
   Scarcity banner — limited availability
   ========================================================================== */
.scarcity-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 18px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.3);
  border-radius: 999px;
}

.scarcity-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: scarcity-pulse 1.6s ease-in-out infinite;
}

@keyframes scarcity-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255, 92, 0, 0); }
}

.scarcity-bar__text {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scarcity-bar__text strong {
  color: var(--accent);
}

/* ==========================================================================
   Final CTA — responsive
   ========================================================================== */
.cta-final {
  padding: 120px 0;
}

@media (max-width: 700px) {
  .cta-final {
    padding: 72px 0;
  }
  .cta-final .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-badge__sep {
    display: none;
  }
  .scarcity-bar {
    max-width: 340px;
    width: 100%;
    justify-content: center;
  }
  .scarcity-bar__text {
    font-size: 12px;
  }
}

.field-optional {
  font-family: var(--font-condensed);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--text-3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF5C00'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}

.contact-split__form .btn {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .contact-split__inner {
    grid-template-columns: 1fr;
  }

  .contact-split__info,
  .contact-split__form {
    padding: 50px 36px;
  }

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

/* ==========================================================================
   Blog
   ========================================================================== */
.blog__head {
  text-align: center;
  margin-bottom: 80px;
}

.blog__head h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.blog-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1c1c1c, #0c0c0c);
  position: relative;
  overflow: hidden;
}

.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--accent-soft) 0%, transparent 60%);
}

.blog-card__pattern {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--text-3);
  opacity: 0.6;
}

.blog-card__body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 13px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.blog-card__date::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--text);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  flex: 1;
}

.blog-card:hover .blog-card__title {
  color: var(--accent);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all .25s ease;
}

.blog-card__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer__brand .logo {
  font-size: 32px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.footer__contact a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color .25s ease;
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__col h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 24px;
}

.footer__col p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 240px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav a {
  color: var(--text-2);
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color .25s ease;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .25s ease;
}

.footer__socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: rotate(-12deg);
}

.footer__bottom {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-3);
  font-size: 14px;
}

.footer__big {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.85;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  text-stroke: 1px var(--line-2);
  letter-spacing: 0.02em;
  padding: 0 0 30px;
  white-space: nowrap;
  overflow: hidden;
}

.footer__big .accent {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

/* Big footer wordmark — letter-by-letter orange fill on hover (site-wide).
   JS splits the text into .fw-char spans, each with a staggered delay. */
.footer__big .fw-char {
  display: inline-block;
  transition: color 0.35s ease,
              -webkit-text-stroke-color 0.35s ease,
              transform 0.45s cubic-bezier(0.34, 1.4, 0.5, 1);
}
.footer__big .fw-char--accent {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.footer__big.fw-split:hover .fw-char {
  color: var(--accent);
  -webkit-text-stroke-color: transparent;
  transform: translateY(0.06em);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Page hero (about, services, portfolio, contact)
   ========================================================================== */
.page-hero {
  padding: 200px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(80px);
}

.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-condensed);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-2);
}

.page-hero__crumb a:hover {
  color: var(--accent);
}

.page-hero__crumb .sep {
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.85;
  color: var(--text);
}

.page-hero h1 .accent {
  color: var(--accent);
}

.page-hero__sub {
  margin-top: 28px;
  color: var(--text-2);
  font-size: 19px;
  max-width: 600px;
}

/* ==========================================================================
   About page — photo block w/ floating badges
   ========================================================================== */
.about-photo-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Variant: text on the left, photo on the right */
.about-photo-block--photo-right {
  grid-template-columns: 1.1fr 1fr;
}

.about-photo-block__photo {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 40px 20px 0;
  overflow: hidden;
}

.about-photo-block__photo img {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.about-photo-block__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(20, 20, 20, .92);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  z-index: 2;
}

.about-photo-block__badge--top {
  top: 30px;
  left: 30px;
}

.about-photo-block__badge--bot {
  bottom: 30px;
  right: 30px;
}

.about-photo-block__badge i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.about-photo-block__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.about-photo-block__badge span {
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.about-photo-block__body h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.92;
  color: var(--text);
}

.about-photo-block__body h2 .accent {
  color: var(--accent);
}

.about-photo-block__body p {
  color: var(--text-2);
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.skill-chip {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text);
  transition: all .25s ease;
}

.skill-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

@media (max-width: 1024px) {
  .about-photo-block {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* About story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.story-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 40px;
  transition: all .3s ease;
}

.story-card:hover {
  border-color: var(--accent);
}

.story-card__num {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
}

.story-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.05;
}

.story-card__text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose ME */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list__item {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.why-list__item:last-child {
  border-bottom: 0;
}

.why-list__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
  width: 70px;
}

.why-list__title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1;
}

.why-list__text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.why-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
}

.why-stat__num {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat__num .accent {
  color: var(--accent);
}

.why-stat__lbl {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--text-2);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Services page — service rows
   ========================================================================== */
.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.service-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-row__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  text-stroke: 1px var(--accent);
}

.service-row__num+h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-top: 16px;
}

.service-row__num+h3 .accent {
  color: var(--accent);
}

.service-row__body p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-row__list {
  list-style: none;
}

.service-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-2);
  color: var(--text);
  font-size: 16px;
}

.service-row__list li i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(255, 92, 0, 0.18), rgba(255, 92, 0, 0.04));
  border: 1px solid var(--accent);
  transform: scale(1.04);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 999px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.pricing-card__sub {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 28px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 70px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.pricing-card__price .accent {
  color: var(--accent);
}

.pricing-card__period {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--text-2);
  margin-left: 6px;
}

.pricing-card__divider {
  margin: 32px 0;
  height: 1px;
  background: var(--line);
}

.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-2);
  font-size: 15px;
}

.pricing-card__list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }
}

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio-intro {
  background: var(--accent-soft);
  border: 1px solid rgba(255, 92, 0, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 60px;
}

.portfolio-intro i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.portfolio-intro p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.port-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}

.port-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.port-card__media {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.port-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.port-card__body {
  padding: 36px 36px 40px;
}

.port-card__tag {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(255, 92, 0, 0.3);
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-block;
  margin-bottom: 18px;
}

.port-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.port-card__desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.port-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.port-card__metric-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

.port-card__metric-lbl {
  font-family: var(--font-condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-top: 4px;
}

.port-card__story {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.port-card__story h5 {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}

.port-card__story ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-card__story ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

.port-card__story ul li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.port-card__cta {
  margin-top: 28px;
}

/* ==========================================================================
   Case study DETAIL pages
   ========================================================================== */
.case-detail {
  max-width: 940px;
  margin: 0 auto;
}

/* Big metric row under the page hero */
.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 44px;
}

.case-metrics__item .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 64px);
  color: var(--accent);
  line-height: 1;
}

.case-metrics__item .lbl {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
}

/* A content block within the case detail */
.case-block + .case-block {
  margin-top: 64px;
}

.case-block__kicker {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}

.case-block h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  color: var(--text);
}

.case-block h2 .accent {
  color: var(--accent);
}

.case-block__lead {
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
  margin-top: 20px;
}

.case-block p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.85;
  margin-top: 18px;
}

.case-block p .hl {
  color: var(--accent);
  font-weight: 600;
}

/* Before / after grid */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.ba-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.03);
}

.ba-card--before {
  border-color: rgba(220, 70, 70, 0.3);
  background: rgba(220, 70, 70, 0.05);
}

.ba-card--after {
  border-color: rgba(255, 92, 0, 0.45);
  background: var(--accent-soft);
}

.ba-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 18px;
}

.ba-card--before .ba-card__label {
  color: #e06b6b;
}

.ba-card--after .ba-card__label {
  color: var(--accent);
}

.ba-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}

.ba-card li i {
  margin-top: 4px;
  flex-shrink: 0;
}

.ba-card--before li i {
  color: #e06b6b;
}

.ba-card--after li i {
  color: var(--accent);
}

/* Numbered step list (the "how it was done" process) */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.step-item {
  display: flex;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.02);
  transition: all .3s ease;
}

.step-item:hover {
  border-color: var(--accent);
}

.step-item__n {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
}

.step-item__body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.step-item__body p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* GMB checklist grid */
.gmb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 30px;
}

.gmb-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.gmb-grid__item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.gmb-grid__item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.gmb-grid__item span {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}

/* Highlighted callout / takeaway box */
.case-callout {
  margin-top: 34px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
}

.case-callout__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.case-callout p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

/* Prev / next case nav */
.case-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.case-nav a {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .25s ease;
}

.case-nav a:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .ba-grid,
  .gmb-grid {
    grid-template-columns: 1fr;
  }

  .case-metrics {
    gap: 30px;
  }
}

/* ==========================================================================
   Photo style treatments — one headshot, different look per page
   ========================================================================== */
img.photo-fx--mono {
  filter: grayscale(1) contrast(1.12) brightness(1.05) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

img.photo-fx--duotone {
  filter: url(#duotone-orange) contrast(1.04) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.photo-tint {
  position: relative;
}

.photo-tint img {
  filter: grayscale(1) contrast(1.06);
}

.photo-tint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: color;
  opacity: 0.6;
  pointer-events: none;
}

/* ==========================================================================
   Experience / career timeline (about page)
   ========================================================================== */
.exp-timeline {
  margin-top: 10px;
}

.exp-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: background .3s ease;
}

.exp-item:last-child {
  border-bottom: 1px solid var(--line);
}

.exp-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.exp-item__period {
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.exp-item__period i {
  margin-top: 2px;
}

.exp-item__main h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.1;
}

.exp-item__main h4 span {
  color: var(--text-3);
  font-family: var(--font-condensed);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.exp-item__main p {
  color: var(--text-2);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

@media (max-width: 760px) {
  .exp-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ==========================================================================
   Contact — "who you're talking to" person badge
   ========================================================================== */
.contact-person {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 50px;
}

.contact-person__photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.contact-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.contact-person__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.contact-person__role {
  font-family: var(--font-condensed);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

/* ==========================================================================
   Data viz — charts, bars, donuts (case detail + about)
   ========================================================================== */
.viz-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 34px;
}

.viz-card__title {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.viz-card__title i {
  color: var(--accent);
}

.viz-card__foot {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

.viz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Horizontal animated bars */
.viz-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.viz-bar__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}

.viz-bar__label {
  font-family: var(--font-condensed);
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.viz-bar__val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.viz-bar__track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.viz-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 92, 0, 0.4);
  transition: width 1.4s cubic-bezier(.2, .8, .2, 1);
}

.viz-bar__fill--muted {
  background: linear-gradient(90deg, #333, #555);
  box-shadow: none;
}

.is-inview .viz-bar__fill {
  width: var(--w);
}

/* SVG line / area growth chart */
.viz-line svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.viz-line__grid {
  stroke: var(--line);
  stroke-width: 1;
}

.viz-line__area {
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}

.is-inview .viz-line__area {
  opacity: 1;
}

.viz-line__path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  filter: drop-shadow(0 4px 10px rgba(255, 92, 0, 0.45));
  transition: stroke-dashoffset 2s ease;
}

.is-inview .viz-line__path {
  stroke-dashoffset: 0;
}

.viz-line__dot {
  fill: var(--accent);
  stroke: var(--bg);
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.is-inview .viz-line__dot {
  opacity: 1;
}

.is-inview .viz-line__dot:nth-of-type(2) { transition-delay: 0.5s; }
.is-inview .viz-line__dot:nth-of-type(3) { transition-delay: 0.8s; }
.is-inview .viz-line__dot:nth-of-type(4) { transition-delay: 1.1s; }
.is-inview .viz-line__dot:nth-of-type(5) { transition-delay: 1.4s; }
.is-inview .viz-line__dot:nth-of-type(6) { transition-delay: 1.7s; }
.is-inview .viz-line__dot:nth-of-type(7) { transition-delay: 2s; }

.viz-line__lbl {
  font-family: var(--font-condensed);
  font-size: 12px;
  fill: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Donut / ring */
.viz-donut {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.viz-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.viz-donut__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 13;
}

.viz-donut__fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-dasharray: var(--circ);
  stroke-dashoffset: var(--circ);
  transition: stroke-dashoffset 1.7s cubic-bezier(.2, .8, .2, 1);
  filter: drop-shadow(0 0 8px rgba(255, 92, 0, 0.5));
}

.is-inview .viz-donut__fg {
  stroke-dashoffset: var(--off);
}

.viz-donut__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.viz-donut__num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--accent);
  line-height: 1;
}

.viz-donut__lbl {
  font-family: var(--font-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-top: 6px;
  max-width: 120px;
}

/* Centered single-stat column */
.viz-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 760px) {
  .viz-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact page extras
   ========================================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all .3s ease;
}

.contact-info-card:hover {
  border-color: var(--accent);
}

.contact-info-card i {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info-card a {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: var(--accent);
  font-size: 17px;
}

@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-item.is-open {
  border-color: var(--accent);
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
}

.faq-item__head i {
  color: var(--accent);
  transition: transform .3s ease;
}

.faq-item.is-open .faq-item__head i {
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item__body p {
  padding: 0 32px 28px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.is-open .faq-item__body {
  max-height: 300px;
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  gap: 10px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.7, 0, .2, 1);
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

.mobile-cta-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border-radius: 999px;
  border: none;
  transition: transform .2s ease;
}

.mobile-cta-bar__btn--call {
  background: var(--accent);
  color: #0a0a0a;
}

.mobile-cta-bar__btn--audit {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}

.mobile-cta-bar__btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

.mobile-cta-bar__btn:active {
  transform: scale(0.96);
}

@media (max-width: 1024px) {
  .mobile-cta-bar {
    display: flex;
  }

  /* clear space so the fixed CTA bar / WhatsApp don't cover the footer wordmark */
  .footer {
    padding-bottom: 120px;
  }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 80;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all .3s ease;
}

.wa-float:hover {
  transform: scale(1.1) rotate(8deg);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hide the floating WhatsApp on mobile (placed after .wa-float base so it wins) */
@media (max-width: 1024px) {
  .wa-float {
    display: none;
  }
}

/* ==========================================================================
   Anim utility classes (for GSAP targets)
   ========================================================================== */
.anim-up {
  opacity: 0;
  transform: translateY(60px);
}

.anim-fade {
  opacity: 0;
}

.anim-x-left {
  opacity: 0;
  transform: translateX(-220px);
}

.anim-x-right {
  opacity: 0;
  transform: translateX(220px);
}

.anim-rise {
  opacity: 0;
  transform: translateY(140px);
}

.anim-clip {
  clip-path: inset(0 100% 0 0);
}

.anim-rotate {
  animation: spin-slow 18s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .anim-up,
  .anim-fade,
  .anim-x-left,
  .anim-x-right,
  .anim-rise {
    opacity: 1;
    transform: none;
  }

  .anim-clip {
    clip-path: none;
  }
}

/* --- Wow Factor Overrides ------------------------------------------------ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* SplitType text reveals */
.is-split .line {
  overflow: hidden;
}

/* ==========================================================================
   Image slots — blog thumbnails, case-card thumb, services proof banner
   ========================================================================== */

/* Blog card real thumbnails */
.blog-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.blog-card__img::after {
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.55) 100%);
}

/* Case-card top thumbnail */
.case-card--has-thumb {
  padding-top: 0;
  overflow: hidden;
}

.case-card__thumb {
  display: block;
  width: calc(100% + 72px);
  margin: -1px -36px 24px -36px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.case-card--has-thumb .case-card__top {
  padding-top: 36px;
}

/* Services proof banner */
.services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 56px auto;
}

.services-stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.services-stat__num {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.services-stat__label {
  margin-top: 10px;
  color: var(--text-2);
  font-family: var(--font-condensed);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .services-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Blog article + SEO explainer diagrams
   ========================================================================== */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  margin-top: 26px;
  color: var(--text-3);
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta i { color: var(--accent); }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

.article-body { max-width: 880px; }
.article-body .case-block p { font-size: 17px; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 8px 0 14px;
}
.article-body h3 .accent { color: var(--accent); }

/* Pull figure / diagram frame */
.seo-fig {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px 22px;
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(255, 92, 0, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
  margin-top: 34px;
}
.seo-fig__title {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-fig__title i { color: var(--accent); }
.seo-fig__foot {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}
.seo-fig svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Horizontal step pipeline: Crawl -> Index -> Rank -> Click -> Call */
.seo-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
.seo-flow__step {
  position: relative;
  text-align: center;
  padding: 26px 16px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
  margin: 0 10px;
  transition: transform .3s ease, border-color .3s ease;
}
.seo-flow__step:hover { transform: translateY(-6px); border-color: rgba(255, 92, 0, 0.4); }
.seo-flow__ico {
  width: 54px; height: 54px; margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
}
.seo-flow__step h5 {
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
  margin-bottom: 8px;
}
.seo-flow__step p { font-size: 13.5px; color: var(--text-3); line-height: 1.5; }
.seo-flow__step::after {
  content: "\f061"; /* fa arrow-right */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 16px; z-index: 2;
}
.seo-flow__step:last-child::after { display: none; }

@media (max-width: 820px) {
  .seo-flow { grid-auto-flow: row; grid-auto-columns: auto; }
  .seo-flow__step { margin: 0 0 34px; }
  .seo-flow__step::after {
    content: "\f063"; /* arrow-down */
    right: 50%; top: auto; bottom: -27px; transform: translateX(50%);
  }
}

/* Layered foundation stack */
.seo-stack { display: flex; flex-direction: column; gap: 12px; }
.seo-stack__row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.seo-stack__row .lvl {
  font-family: var(--font-display);
  font-size: 30px; color: var(--accent);
  min-width: 42px; text-align: center;
}
.seo-stack__row strong {
  font-family: var(--font-condensed); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 17px; display: block; margin-bottom: 3px;
}
.seo-stack__row span { color: var(--text-3); font-size: 14.5px; line-height: 1.5; }
.seo-stack__row--base { background: var(--accent-soft); border-color: rgba(255, 92, 0, 0.35); }

/* Donut trio */
.seo-donuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .seo-donuts { grid-template-columns: 1fr; } }

/* Related posts strip */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }

/* Blog archive page cards */
.blog-archive .blog-card__cat {
  align-self: flex-start;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 92, 0, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.blog-archive .blog-card__title { flex: 0 0 auto; margin-bottom: 14px; }
.blog-archive .blog-card__excerpt {
  flex: 1;
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   Website Portfolio — live roofing site builds
   ========================================================================== */
.site-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.site-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  text-decoration: none;
  transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}
.site-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}
.site-card__shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c, #0c0c0c);
}
.site-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}
.site-card:hover .site-card__shot img {
  transform: scale(1.06);
}
.site-card__shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.15) 42%, rgba(10, 10, 10, 0) 62%);
}
.site-card__visit {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: #0a0a0a;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .4s ease, transform .4s ease;
}
.site-card:hover .site-card__visit {
  opacity: 1;
  transform: translateY(0);
}
.site-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.site-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
}
.site-card__loc {
  display: block;
  margin-top: 7px;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
}
.site-card__arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}
.site-card:hover .site-card__arrow {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
@media (max-width: 900px) {
  .site-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .site-gallery {
    grid-template-columns: 1fr;
  }
  .site-card__name {
    font-size: 23px;
  }
}

/* ===========================================================================
   Inline form status message (Formspree contact / audit forms)
   =========================================================================== */
.form-msg {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.form-msg.is-visible { display: block; }
.form-msg--success {
  border-color: rgba(70, 200, 130, .45);
  background: rgba(60, 200, 120, .12);
  color: #8ff0b5;
}
.form-msg--error {
  border-color: rgba(255, 80, 80, .4);
  background: rgba(255, 60, 60, .1);
  color: #ff9b9b;
}
/* Once submitted, hide the fields + button and leave only the message */
form.is-sent .form-grid,
form.is-sent .btn { display: none; }

/* ==========================================================================
   Hero — animated Google SERP card (.serp-)
   Decorative widget: a mock Google search where "your" roofing company
   climbs from position #3 to #1 on an infinite loop.
   ========================================================================== */
.serp-card {
  position: absolute;
  /* never enter the left text column (ends ~450px); on wide screens drift
     left of the photo, on laptops sit over the photo's lower torso */
  left: max(462px, calc(50% - 480px));
  bottom: 6%;
  width: 260px;
  z-index: 3;
  pointer-events: none;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 44px rgba(255, 92, 0, 0.13);
}

/* --- fake Google search bar --- */
.serp-card__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #1c1c1c;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 12px;
}

.serp-card__g {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: block;
}

.serp-card__query {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
}

.serp-card__type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 23ch;
  animation: serp-type 1.9s steps(23, end) 0.5s both;
}

.serp-card__caret {
  flex: 0 0 auto;
  width: 1.5px;
  height: 13px;
  margin-left: 1px;
  background: var(--accent);
  animation: serp-caret 1.1s step-end infinite;
}

.serp-card__bar > .fa-magnifying-glass {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--accent);
}

@keyframes serp-type {
  from { max-width: 0; }
  to   { max-width: 23ch; }
}

@keyframes serp-caret {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* --- results list: fixed rank numbers + moving rows --- */
.serp-card__list {
  display: flex;
  gap: 10px;
}

.serp-card__ranks {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.serp-card__ranks span {
  height: 44px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-3);
}

.serp-card__ranks span:first-child { color: var(--accent); }

.serp-card__rows {
  position: relative;
  flex: 1;
  height: 148px; /* 3 rows x 44px + 2 gaps x 8px */
  min-width: 0;
}

.serp-card__row {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid var(--line);
}

/* competitor skeleton rows */
.serp-card__fav {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-3);
}

.serp-card__bones {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.serp-card__bone {
  height: 6px;
  border-radius: 3px;
  background: #2b2b2b;
}

.serp-card__bone--short { width: 55%; }

/* "you" row */
.serp-card__row--you {
  background: rgba(255, 92, 0, 0.10);
  border-color: var(--accent);
}

.serp-card__row--you .serp-card__fav {
  background: var(--accent);
  color: #0a0a0a;
}

.serp-card__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.serp-card__title {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.serp-card__stars {
  font-size: 9.5px;
  color: var(--accent);
  letter-spacing: 1px;
}

.serp-card__stars em {
  font-style: normal;
  color: var(--text-2);
  letter-spacing: 0;
  margin-left: 3px;
}

.serp-card__badge {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  color: #0a0a0a;
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 9px;
  box-shadow: 0 0 14px rgba(255, 92, 0, 0.6);
  animation: serp-badge 9s ease infinite;
}

/* --- the climb: base styles = final state (reduced-motion fallback) --- */
.serp-card__row--you { transform: translateY(0);     z-index: 2; }
.serp-card__row--a   { transform: translateY(52px);  }
.serp-card__row--b   { transform: translateY(104px); }

.serp-card__row--you { animation: serp-you 9s ease infinite; }
.serp-card__row--a   { animation: serp-a   9s ease infinite; }
.serp-card__row--b   { animation: serp-b   9s ease infinite; }

/* timeline (9s):  0-18% hold #3 · 18-26% pass B · 26-46% hold #2
   46-54% pass A · 54-88% hold #1 · 88-100% fade out, reset, fade in */
@keyframes serp-you {
  0%, 18%   { transform: translateY(104px); opacity: 1; }
  26%, 46%  { transform: translateY(52px); }
  54%, 88%  { transform: translateY(0); opacity: 1; }
  93%       { transform: translateY(0); opacity: 0; }
  93.5%     { transform: translateY(104px); opacity: 0; }
  100%      { transform: translateY(104px); opacity: 1; }
}

@keyframes serp-a {
  0%, 46%   { transform: translateY(0); opacity: 1; }
  54%, 88%  { transform: translateY(52px); opacity: 1; }
  93%       { transform: translateY(52px); opacity: 0; }
  93.5%     { transform: translateY(0); opacity: 0; }
  100%      { transform: translateY(0); opacity: 1; }
}

@keyframes serp-b {
  0%, 18%   { transform: translateY(52px); opacity: 1; }
  26%, 88%  { transform: translateY(104px); opacity: 1; }
  93%       { transform: translateY(104px); opacity: 0; }
  93.5%     { transform: translateY(52px); opacity: 0; }
  100%      { transform: translateY(52px); opacity: 1; }
}

/* "#1" chip pops only while the you-row sits at the top */
@keyframes serp-badge {
  0%, 55%   { opacity: 0; transform: scale(0.5); }
  60%, 88%  { opacity: 1; transform: scale(1); }
  93%, 100% { opacity: 0; transform: scale(0.5); }
}

/* --- footer strip --- */
.serp-card__foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--font-condensed);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.serp-card__foot b { color: var(--accent); }

.serp-card__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55);
  animation: serp-dot 2s ease-out infinite;
}

@keyframes serp-dot {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* --- placement guards --- */
/* mid widths: floating cards have no free space, but the in-column card
   (inside the left group) always fits */
@media (max-width: 1279px) and (min-width: 1025px) {
  .serp-card { display: none; }

  .hero__seopp-left-group .serp-card { display: block; }
}

/* stacked mobile hero: card flows in the column */
@media (max-width: 1024px) {
  .serp-card {
    position: static;
    margin: 32px auto 0;
  }

  .hero__seopp-left-group .serp-card { margin: 24px auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  .serp-card *,
  .serp-card__badge {
    animation: none !important;
  }
  .serp-card__type { max-width: 23ch; }
  .serp-card__badge { opacity: 1; transform: none; }
}

/* ==========================================================================
   SCROLL-TRIGGERED ANIMATIONS (case sparklines, revenue chart, process icons,
   3-pack map, sweep-fill stars, floating roof)
   All use the site [data-viz] -> .is-inview reveal system (see initCharts).
   ========================================================================== */

/* --- 4. Mini ranking sparkline on case cards --------------------------------*/
.case-spark {
  width: 100%;
  height: 54px;
  display: block;
  margin-top: auto;
  overflow: visible;
}
.case-spark__area {
  fill: url(#caseSparkFill);
  opacity: 0;
  transition: opacity .6s ease .55s;
}
.case-spark__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.15s cubic-bezier(.4, 0, .2, 1) .1s;
}
.case-spark__dot {
  fill: var(--accent);
  opacity: 0;
  transition: opacity .3s ease 1.1s;
  filter: drop-shadow(0 0 5px rgba(255, 92, 0, .8));
}
.case-spark.is-inview .case-spark__line { stroke-dashoffset: 0; }
.case-spark.is-inview .case-spark__area { opacity: 1; }
.case-spark.is-inview .case-spark__dot { opacity: 1; }

/* --- 5. Self-drawing revenue chart ------------------------------------------*/
.revenue-viz {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 56px;
  overflow: hidden;
}
.revenue-viz__kicker {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
}
.revenue-viz__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1;
  margin: 8px 0 26px;
  color: var(--text);
}
.revenue-chart {
  width: 100%;
  height: 300px;
  display: block;
  overflow: visible;
}
.revenue-chart .rgrid { stroke: var(--line); stroke-width: 1; }
.revenue-chart__area {
  fill: url(#revVizFill);
  opacity: 0;
  transition: opacity 1s ease .85s;
}
.revenue-chart__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 92, 0, .55));
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.7s cubic-bezier(.4, 0, .2, 1);
}
.revenue-chart__tip { opacity: 0; transition: opacity .35s ease 1.55s; }
.revenue-viz.is-inview .revenue-chart__line { stroke-dashoffset: 0; }
.revenue-viz.is-inview .revenue-chart__area { opacity: 1; }
.revenue-viz.is-inview .revenue-chart__tip { opacity: 1; }
.revenue-chart__axis {
  display: flex;
  justify-content: space-between;
  color: var(--text-3);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .revenue-viz { padding: 26px 20px; }
  .revenue-chart { height: 220px; }
}

/* --- 6. Animated process step icons -----------------------------------------*/
.proc-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 22px;
}
.proc-icon .pi-stroke {
  stroke: var(--accent);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proc-icon .pi-fill { fill: var(--accent); }
/* magnifier scans */
.proc-icon .pi-lens { transform-box: fill-box; transform-origin: center; }
.proc-icon.is-inview .pi-lens { animation: piMagScan 2.6s ease-in-out infinite; }
@keyframes piMagScan {
  0%, 100% { transform: translate(-5px, -3px); }
  50%      { transform: translate(5px, 3px); }
}
/* gear spins */
.proc-icon .pi-gear { transform-box: fill-box; transform-origin: center; }
.proc-icon.is-inview .pi-gear { animation: piGearSpin 6s linear infinite; }
@keyframes piGearSpin { to { transform: rotate(360deg); } }
/* rocket launches */
.proc-icon .pi-rocket { transform-box: fill-box; transform-origin: center; }
.proc-icon.is-inview .pi-rocket { animation: piRocketUp 1.9s ease-in-out infinite; }
@keyframes piRocketUp {
  0%   { transform: translateY(5px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(5px); }
}
.proc-icon .pi-flame { transform-box: fill-box; transform-origin: center; }
.proc-icon.is-inview .pi-flame { animation: piFlame .3s steps(2) infinite; }
@keyframes piFlame { 0% { opacity: .4; transform: scaleY(.7); } 100% { opacity: 1; transform: scaleY(1.2); } }

/* --- 7. Google Map 3-pack mock ----------------------------------------------*/
.mappack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.mappack__copy .kicker { display: inline-flex; margin-bottom: 14px; }
.mappack__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  color: var(--text);
}
.mappack__copy p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 440px;
}
.map3 {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 2;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #12161c;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
}
.map3__road { position: absolute; background: #1b2129; }
.map3__road--h { height: 14px; left: 0; right: 0; }
.map3__road--v { width: 14px; top: 0; bottom: 0; }
.map3__pin {
  position: absolute;
  width: 34px;
  height: 44px;
  transform: translate(-50%, -100%) translateY(-30px);
  opacity: 0;
}
.map3__pin svg { width: 100%; height: 100%; display: block; }
/* Competitors drop in first, settling into the lower ranks */
.map3.is-inview .map3__pin--2 { animation: pinDrop .55s cubic-bezier(.34, 1.56, .64, 1) forwards; animation-delay: .2s; }
.map3.is-inview .map3__pin--3 { animation: pinDrop .55s cubic-bezier(.34, 1.56, .64, 1) forwards; animation-delay: .45s; }
@keyframes pinDrop {
  0%   { opacity: 0; transform: translate(-50%, -100%) translateY(-30px); }
  70%  { opacity: 1; transform: translate(-50%, -100%) translateY(4px); }
  100% { opacity: 1; transform: translate(-50%, -100%) translateY(0); }
}

/* Client pin rises from the bottom of the pack and LANDS at #1 */
.map3.is-inview .map3__pin--client { animation: pinClimb 1.6s cubic-bezier(.5, .05, .2, 1) forwards; animation-delay: .8s; }
@keyframes pinClimb {
  0%   { opacity: 0; transform: translate(-50%, -100%) translateY(150px) scale(.7); }
  18%  { opacity: 1; transform: translate(-50%, -100%) translateY(150px) scale(.9); }
  75%  { opacity: 1; transform: translate(-50%, -100%) translateY(-6px) scale(1.08); }
  88%  { opacity: 1; transform: translate(-50%, -100%) translateY(3px) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -100%) translateY(0) scale(1); }
}
/* #1 label pops in once the pin has landed */
.map3__pin-label--client { opacity: 0; }
.map3.is-inview .map3__pin-label--client { animation: labelPop .4s cubic-bezier(.34, 1.56, .64, 1) forwards; animation-delay: 2.2s; }
@keyframes labelPop {
  0%   { opacity: 0; transform: translate(-50%, -100%) translateY(6px) scale(.8); }
  100% { opacity: 1; transform: translate(-50%, -100%) translateY(0) scale(1); }
}
.map3__pin--client { filter: drop-shadow(0 0 10px rgba(255, 92, 0, .9)); }
.map3__pin-label {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(-50%, -100%);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .04em;
  background: var(--bg);
  border: 1px solid var(--line-2);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--text-2);
}
.map3__pin-label--client { color: var(--accent); border-color: rgba(255, 92, 0, .5); }
.map3__pulse { transform-box: fill-box; transform-origin: center; }
.map3.is-inview .map3__pin--client .map3__pulse { animation: pinPulse 1.9s ease-out infinite 2.4s; }
@keyframes pinPulse {
  0%   { transform: scale(.4); opacity: .7; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (max-width: 900px) {
  .mappack { grid-template-columns: 1fr; gap: 36px; }
  .map3 { margin: 0 auto; }
}

/* --- 8. Sweep-fill SVG stars ------------------------------------------------*/
.svg-stars { display: inline-flex; gap: 4px; vertical-align: middle; }
.svg-stars .svg-star { width: 1em; height: 1em; }
.svg-stars .ss-bg { fill: rgba(255, 255, 255, 0.15); }
.svg-stars .ss-fill { fill: var(--accent); clip-path: inset(0 100% 0 0); }
.svg-stars.is-inview .ss-fill { animation: starSweep .5s ease forwards; }
.svg-stars.is-inview .svg-star:nth-child(1) .ss-fill { animation-delay: .08s; }
.svg-stars.is-inview .svg-star:nth-child(2) .ss-fill { animation-delay: .20s; }
.svg-stars.is-inview .svg-star:nth-child(3) .ss-fill { animation-delay: .32s; }
.svg-stars.is-inview .svg-star:nth-child(4) .ss-fill { animation-delay: .44s; }
.svg-stars.is-inview .svg-star:nth-child(5) .ss-fill { animation-delay: .56s; }
@keyframes starSweep { to { clip-path: inset(0 0 0 0); } }
/* size to match the contexts they replace */
.reviews-summary__stars.svg-stars { font-size: 18px; }
.testimonials__stars.svg-stars { font-size: 22px; margin-bottom: 32px; }

/* --- 9. Floating roof + upward arrow (decorative) ---------------------------*/
.revenue-chart-wrap { position: relative; }
.float-house {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 112px;
  height: 112px;
  pointer-events: none;
  z-index: 2;
}
.float-house__stack { position: relative; width: 100%; height: 100%; }
.revenue-viz.is-inview .float-house__stack { animation: houseFloat 4s ease-in-out infinite; }
@keyframes houseFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-house svg { width: 100%; height: 100%; filter: drop-shadow(0 10px 24px rgba(255, 92, 0, .35)); }
.float-house .fh-roof { fill: var(--accent); }
.float-house .fh-body { fill: #17181c; stroke: var(--line-2); stroke-width: 2; }
.float-house .fh-door { fill: var(--accent); opacity: .85; }
.float-house .fh-win { fill: var(--accent-2); opacity: .35; }
.float-house__arrow { position: absolute; left: 50%; top: -8px; transform: translateX(-50%); }
.float-house__arrow svg {
  width: 26px;
  height: 58px;
  filter: drop-shadow(0 0 7px rgba(255, 92, 0, .8));
}
.float-house__arrow .fh-astroke { stroke: var(--accent); stroke-width: 6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.revenue-viz.is-inview .float-house__arrow { animation: houseArrow 2.6s ease-in-out infinite; }
@keyframes houseArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%      { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}
@media (max-width: 720px) {
  .float-house { display: none; }
}

/* --- reduced motion: land on final state, no motion ------------------------*/
@media (prefers-reduced-motion: reduce) {
  .case-spark__line, .revenue-chart__line { transition: none !important; stroke-dashoffset: 0 !important; }
  .case-spark__area, .case-spark__dot,
  .revenue-chart__area, .revenue-chart__tip { transition: none !important; opacity: 1 !important; }
  .svg-stars .ss-fill { clip-path: inset(0 0 0 0) !important; animation: none !important; }
  .map3__pin { opacity: 1 !important; transform: translate(-50%, -100%) !important; animation: none !important; }
  .map3__pin-label--client { opacity: 1 !important; transform: translate(-50%, -100%) !important; animation: none !important; }
  .house-svg { animation: none !important; transform: none !important; }
  .proc-icon *, .float-house__stack, .float-house__arrow, .map3__pulse { animation: none !important; }
}
