:root {
  --bg: #0d1014;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #bcc2cc;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --shadow-premium: 0 28px 90px rgba(0, 0, 0, 0.34);
  --orange: #f79413;
  --blue: #1e97c7;
  --green: #6bbd4b;
  --red: #ef1624;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247, 148, 19, 0.1), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(30, 151, 199, 0.08), transparent 20%),
    linear-gradient(180deg, #0a0c10 0%, #12161d 48%, #0f1319 100%);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 12, 16, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  animation: logoIntro 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
  will-change: transform, opacity;
}

.brand:hover .brand-mark {
  transform: scale(1.04);
  transition: transform 0.28s ease;
}

@keyframes logoIntro {
  0% {
    transform: rotate(-18deg) scale(0.94);
    opacity: 0;
  }

  60% {
    transform: rotate(2deg) scale(1.02);
    opacity: 1;
  }

  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  animation: brandFade 0.8s ease-out both;
  animation-delay: 0.15s;
}

@keyframes brandFade {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  color: #111;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-sm {
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.btn-mini {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.section {
  padding: 5.2rem 0;
}

.hero {
  padding: 4.8rem 0 3.2rem;
}

.hero-grid,
.split-grid,
.premium-reputation-grid,
.cta-box,
.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.cta-copy h2 {
  margin: 0 0 1rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  text-wrap: balance;
}

.section-heading h2,
.split-copy h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
}

.hero-text,
.section-heading p,
.split-copy p,
.cta-copy p,
.highlight-card span,
.trust-card p,
.service-card p,
.process-card p,
.floating-card p,
.nextdoor-text,
.nextdoor-location,
.mini-review p,
.hero-social-card span,
.reputation-lead-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-actions,
.cta-actions,
.hero-social-actions,
.reputation-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-proof-banner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}

.proof-pill,
.nextdoor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-pill {
  color: #111;
  background: linear-gradient(135deg, var(--orange), #ffbf66);
}

.nextdoor-badge {
  background: rgba(247, 148, 19, 0.12);
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.facebook-badge {
  background: rgba(30, 151, 199, 0.14);
  color: #6cd1ff;
}

.hero-social-card,
.highlight-card,
.trust-card,
.service-card,
.process-card,
.gallery-card,
.visual-main,
.image-card,
.cta-box,
.floating-card,
.reputation-lead-card,
.platform-card,
.facebook-embed-card,
.mini-review {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
}

.hero-social-card,
.reputation-lead-card,
.platform-card,
.facebook-embed-card {
  padding: 1.3rem;
}

.hero-social-card {
  margin-top: 1.35rem;
  max-width: 100%;
  padding: 1.35rem;
}

.hero-social-card strong,
.reputation-lead-card strong,
.mini-review strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.hero-highlights,
.trust-grid,
.service-grid,
.process-grid,
.mini-review-wrap {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

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

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

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.highlight-card,
.trust-card,
.service-card,
.process-card,
.mini-review {
  padding: 1.2rem;
}

.highlight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
}

.highlight-card strong,
.trust-card h3,
.service-card h3,
.process-card h3,
.platform-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  line-height: 1.22;
  text-wrap: balance;
}

.service-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--orange);
}

.service-card.accent-blue::before {
  background: var(--blue);
}

.service-card.accent-green::before {
  background: var(--green);
}

.service-card.accent-red::before {
  background: var(--red);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding-bottom: 1rem;
}

.visual-main {
  position: absolute;
  inset: 0 0 1.25rem 10%;
  overflow: hidden;
  border-radius: 34px;
}

.visual-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(10, 12, 16, 0.42));
}

.visual-main img,
.image-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.gallery-card:hover img,
.image-card:hover img,
.visual-main:hover img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  max-width: 285px;
  padding: 1.05rem 1.15rem;
  background: rgba(13, 16, 20, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.floating-top {
  top: 28px;
  left: 0;
}

.floating-proof-panel {
  position: absolute;
  right: 18px;
  bottom: 1rem;
  width: min(360px, calc(100% - 1rem));
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 13, 17, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-premium);
  z-index: 2;
}

.floating-proof-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.floating-proof-head strong {
  font-size: 1.02rem;
}

.floating-proof-links {
  display: grid;
  gap: 0.65rem;
}

.floating-proof-links a,
.platform-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0.78rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-proof-links a:hover,
.platform-inline-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.stars {
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 640px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
}

.image-large {
  inset: 0 16% 0 0;
}

.image-top {
  width: 42%;
  height: 42%;
  top: 2%;
  right: 0;
}

.image-bottom {
  width: 45%;
  height: 38%;
  right: 2%;
  bottom: 4%;
}

.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li,
.nextdoor-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before,
.nextdoor-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery-card {
  min-height: 300px;
  overflow: hidden;
}

.gallery-card.large {
  min-height: 620px;
}

.area-grid {
  margin-top: 0;
}

.centered-heading {
  text-align: center;
  margin-inline: auto;
}

.reputation-top-actions {
  justify-content: center;
  margin: -0.4rem 0 2rem;
}

.premium-reputation-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.reputation-lead-card {
  margin-bottom: 1rem;
}

.social-proof-stack {
  display: grid;
  gap: 1rem;
}

.platform-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.platform-card-head h3 {
  margin: 0;
}

.nextdoor-location {
  margin-top: -0.2rem;
  margin-bottom: 1rem;
}

.nextdoor-text {
  margin-bottom: 1rem;
}

.nextdoor-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.facebook-embed-wrap {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  min-height: 620px;
  background: #fff;
}

.facebook-embed-wrap iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
}

.process-step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(247, 148, 19, 0.12);
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-box {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 2.3rem;
  border-radius: 34px;
  background: radial-gradient(circle at top right, rgba(247, 148, 19, 0.1), transparent 22%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.18s;
}

.delay-3 {
  animation-delay: 0.28s;
}

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

@media (max-width: 1080px) {

  .hero-grid,
  .split-grid,
  .premium-reputation-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .trust-grid,
  .service-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 560px;
  }

  .visual-main {
    inset: 0;
  }

  .floating-proof-panel {
    right: 0;
    bottom: 0;
    width: min(340px, calc(100% - 1rem));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-tag,
  .nav-secondary {
    display: none;
  }

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

  .brand-name {
    font-size: 0.9rem;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: rgba(12, 13, 16, 0.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .btn-sm {
    width: 100%;
  }

  .hero {
    padding: 3.2rem 0 2.2rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-highlights,
  .trust-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .mini-review-wrap {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .hero-social-actions,
  .reputation-top-actions {
    display: grid;
  }

  .hero-visual,
  .image-stack {
    min-height: auto;
  }

  .hero-copy {
    gap: 0.95rem;
  }

  .hero-social-card {
    padding: 1.15rem;
  }

  .highlight-card {
    min-height: auto;
  }

  .visual-main,
  .image-large {
    position: relative;
    inset: auto;
    min-height: 420px;
  }

  .floating-card,
  .floating-proof-panel {
    position: static;
    max-width: none;
    width: 100%;
    margin-top: 0.9rem;
  }

  .image-top {
    width: 42%;
    height: 38%;
    top: 0;
    right: 0;
  }

  .image-bottom {
    width: 46%;
    height: 34%;
    right: 0;
    bottom: 0;
  }

  .facebook-embed-wrap,
  .facebook-embed-wrap iframe {
    min-height: 480px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .hero-social-actions .btn {
    width: 100%;
  }

  .cta-box {
    padding: 1.5rem;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-copy>*,
.reputation-intro>* {
  min-width: 0;
}

.hero-grid {
  align-items: stretch;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-visual-stage {
  position: relative;
  min-height: 520px;
}

.hero-summary-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  padding: 1.25rem;
}

.hero-summary-panel--visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.hero-summary-copy strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-summary-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-feature-list span,
.service-area-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.service-area-shell,
.reputation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: start;
}

.service-area-copy,
.reputation-intro {
  max-width: 640px;
}

.service-area-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-premium);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  padding: 1.45rem;
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-area-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.reputation-top-actions {
  justify-content: flex-start;
  margin: 1.25rem 0;
}

.reputation-section .social-proof-stack {
  gap: 1rem;
}

.platform-card,
.facebook-embed-card,
.reputation-lead-card {
  padding: 1.35rem;
}

.platform-card h3,
.section-heading h2,
.cta-copy h2,
.split-copy h2,
.service-area-copy h2,
.reputation-intro h2 {
  text-wrap: balance;
}

.trust-strip,
.split-section,
.gallery-section,
.service-area-section,
.reputation-section,
.process-section,
.cta-section {
  position: relative;
}

@media (max-width: 1080px) {

  .service-area-shell,
  .reputation-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual-stage {
    min-height: 500px;
  }

  .hero-summary-panel--visual {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: auto;
  }

  .hero-visual-stage {
    min-height: auto;
  }

  .hero-summary-panel,
  .service-area-panel {
    padding: 1.15rem;
  }

  .service-area-pills,
  .hero-feature-list {
    gap: 0.65rem;
  }

  .service-area-pills span,
  .hero-feature-list span {
    width: 100%;
    justify-content: center;
  }

  .reputation-top-actions {
    justify-content: stretch;
  }
}


/* Reputation section cleanup */
.reputation-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 2.8vw, 2.3rem);
  align-items: start;
}

.reputation-intro {
  max-width: 420px;
  position: sticky;
  top: 108px;
}

.reputation-intro p {
  margin-bottom: 1.2rem;
}

.reputation-section .social-proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.reputation-lead-card,
.facebook-embed-card,
.facebook-embed-wrap {
  display: none !important;
}

.platform-card {
  height: 100%;
  min-height: 100%;
}

.platform-card-head {
  margin-bottom: 0.8rem;
}

.nextdoor-card,
.facebook-dark-card {
  padding: 1.35rem;
}

.facebook-dark-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.038));
}

.facebook-preview-shell {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(30, 151, 199, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  display: grid;
  gap: 0.95rem;
}

.facebook-preview-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.facebook-preview-top strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.facebook-preview-top span {
  color: var(--muted);
  line-height: 1.55;
  display: block;
}

.facebook-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #dce7ff;
  background: linear-gradient(135deg, rgba(78, 118, 255, 0.25), rgba(78, 118, 255, 0.08));
  border: 1px solid rgba(126, 166, 255, 0.26);
}

.facebook-preview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.facebook-preview-stats span {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.facebook-preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border-radius: 14px;
  background: rgba(126, 166, 255, 0.12);
  border: 1px solid rgba(126, 166, 255, 0.24);
  color: #dce7ff;
  font-weight: 800;
}

.facebook-preview-cta:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .reputation-shell {
    grid-template-columns: 1fr;
  }

  .reputation-intro {
    position: static;
    max-width: 100%;
  }

  .reputation-section .social-proof-stack {
    grid-template-columns: 1fr;
  }
}


/* Hero cleanup: remove redundant cards and let the top composition breathe */
.hero {
  padding: 4.8rem 0 4rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
}

.hero-copy {
  justify-content: center;
  min-height: 100%;
  padding: 0.35rem 0 0.5rem;
}

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

.hero-visual {
  justify-content: center;
}

.hero-visual-stage {
  min-height: 600px;
}

.hero-social-card,
.hero-summary-panel,
.hero-summary-panel--visual {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-copy .hero-text,
  .hero h1 {
    max-width: 100%;
  }

  .hero-visual-stage {
    min-height: auto;
  }
}



@media (prefers-reduced-motion: reduce) {

  .brand-mark,
  .brand-copy {
    animation: none !important;
    transition: none !important;
  }
}