:root {
  --bg: #0b1410;
  --bg-soft: #101b15;
  --bg-elevated: #142119;

  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.10);

  --text: #f3f6f4;
  --text-soft: #aab7b0;
  --text-muted: #839189;
  --white: #ffffff;

  --green: #2ed573;
  --green-strong: #23c766;
  --green-soft: rgba(46, 213, 115, 0.10);
  --green-border: rgba(46, 213, 115, 0.20);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.34);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 85% 12%, rgba(46,213,115,0.10), transparent 18%),
    radial-gradient(circle at 12% 18%, rgba(46,213,115,0.06), transparent 16%),
    linear-gradient(180deg, #0b1410 0%, #101b15 100%);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
}

h1 { font-size: clamp(3rem, 6.4vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.32rem; }

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

.section {
  padding: 6rem 0;
  position: relative;
}

.section-tight {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.025));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--green);
  background: rgba(46,213,115,0.08);
  border: 1px solid var(--green-border);
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 760px;
  color: var(--text-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 3rem;
}

.narrow-center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

.brand img {
  height: 48px;
  width: auto;
}

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

.site-nav a {
  color: #183226;
  font-weight: 600;
  opacity: .92;
}

.site-nav a:hover,
.site-nav a.active {
  color: #0b1410;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.16);
  color: #0b1410;
  padding: 0;
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 16px;
  padding: 1rem 1.35rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.10) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-sm {
  padding: .9rem 1.2rem;
  font-size: .95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  color: #08110d;
  box-shadow: 0 12px 28px rgba(46,213,115,0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(46,213,115,0.24);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.hero {
  overflow: clip;
  padding-top: 4.8rem;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 3.4rem;
  align-items: center;
}

.hero-grid-premium {
  min-height: calc(100vh - 120px);
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-copy .accent {
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.25rem;
}

.micro-trust {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-soft);
  font-size: .95rem;
  font-weight: 600;
}

.trust-row span::before,
.proof-items span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: .55rem;
}

.glass,
.feature-card,
.metric-card,
.why-card,
.testimonial-card,
.project-card,
.pricing-card,
.contact-card,
.contact-form,
.service-row,
.process-row,
.cta-panel,
.legal-content,
.pain-card,
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.glass {
  border-radius: var(--radius-lg);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.hero-device-stack {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(46,213,115,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-strong);
}

.hero-device-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 26%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  padding: .7rem .95rem;
  border-radius: 999px;
  background: rgba(11,20,16,.76);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}

.floating-badge-top { top: 18px; left: 18px; }
.floating-badge-bottom { bottom: 18px; right: 18px; }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), rgba(0,0,0,.18) 70%, transparent 100%);
  opacity: .34;
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(46,213,115,0.08);
  top: 8rem;
  right: 8%;
}

.orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(46,213,115,0.05);
  bottom: 1rem;
  left: 6%;
}

.proof-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: center;
  color: var(--text-soft);
  font-weight: 600;
}

.card-grid,
.metrics-grid,
.why-grid,
.pricing-grid,
.project-grid,
.services-stack,
.process-stack,
.bullet-stack {
  display: grid;
  gap: 1.25rem;
}

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.metrics-grid,
.why-grid { grid-template-columns: repeat(2, 1fr); }
.project-grid,
.pricing-grid { grid-template-columns: repeat(3, 1fr); }

.feature-card,
.metric-card,
.why-card,
.testimonial-card,
.project-card,
.pricing-card,
.pain-card {
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

.feature-card:hover,
.metric-card:hover,
.why-card:hover,
.testimonial-card:hover,
.project-card:hover,
.pricing-card:hover,
.pain-card:hover,
.showcase-card:hover {
  box-shadow: var(--shadow);
}

.feature-card.emphasis {
  background: linear-gradient(135deg, rgba(46,213,115,0.08), rgba(255,255,255,0.03));
  border-color: var(--green-border);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .86rem;
}

.pain-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025));
}

.bullet-item {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.bullet-item strong {
  color: var(--text);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.timeline-step {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

.timeline-step span,
.process-row span,
.service-index {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-row,
.process-row {
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
}

.project-thumb {
  height: 180px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(46,213,115,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-card {
  position: relative;
}

.pricing-featured {
  background: linear-gradient(180deg, rgba(46,213,115,0.09), rgba(255,255,255,0.04));
  border-color: var(--green-border);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--green);
  color: #07110c;
  font-size: .8rem;
  font-weight: 800;
}

.cta-panel,
.contact-card,
.contact-form,
.legal-content,
.showcase-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(46,213,115,.08), rgba(255,255,255,.03));
  border-color: var(--green-border);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: .55rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 1rem;
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(46,213,115,0.30);
  box-shadow: 0 0 0 4px rgba(46,213,115,0.10);
}

.site-footer {
  padding: 2.8rem 0 2.1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, .65fr) minmax(220px, .75fr);
  gap: 2.6rem;
  align-items: start;
  padding-bottom: 2.2rem;
}

.footer-brand p {
  max-width: 380px;
  color: var(--text-soft);
  line-height: 1.55;
}

.footer-col {
  justify-self: end;
  min-width: 0;
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-grid a {
  display: block;
  color: var(--text-soft);
  margin-bottom: .75rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-meta {
  display: block;
  color: var(--text-soft);
  margin-top: .15rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-soft);
  font-size: .95rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-bottom a {
  color: var(--text-soft);
}

.footer-bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.interactive-card {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.interactive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46,213,115,.16);
}

@media (max-width: 1080px) {
  .card-grid-3,
  .project-grid,
  .pricing-grid,
  .proof-items,
  .timeline,
  .hero-grid,
  .split-grid,
  .contact-grid,
  .service-row,
  .process-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-col {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    min-width: 62px;
    min-height: 62px;
    font-size: 2.2rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + .75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
  }

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

  .proof-items,
  .card-grid-3,
  .project-grid,
  .pricing-grid,
  .why-grid,
  .metrics-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-grid-premium {
    min-height: auto;
  }

  .floating-badge {
    position: static;
    display: inline-flex;
    margin: .8rem .4rem 0 0;
  }
}
.section-light {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

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

.hero-clean {
  padding-top: 4rem;
  padding-bottom: 5.5rem;
  background:
    radial-gradient(circle at 82% 20%, rgba(46,213,115,0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.hero-clean-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-clean-title {
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
  color: #0f172a;
}

.hero-clean-title .accent {
  color: var(--green);
}

.hero-clean-text {
  max-width: 640px;
  font-size: 1.2rem;
  color: #64748b;
  margin-top: 1.5rem;
}

.hero-clean-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-clean-card {
  width: 100%;
  max-width: 560px;
  padding: 1.5rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(240,247,242,0.88));
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 24px 70px rgba(15,23,42,0.08);
}

.hero-clean-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.method-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 11ch;
  line-height: 1.04;
  color: #0f172a;
}

.method-copy .accent {
  color: var(--green);
}

.method-text {
  max-width: 620px;
  font-size: 1.1rem;
  color: #64748b;
  margin: 1.5rem 0 2rem;
}

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

.check-list li {
  position: relative;
  padding-left: 2.3rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-size: .85rem;
  font-weight: 800;
}

.method-media {
  display: grid;
  gap: 1.5rem;
}

.method-image-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
  background: white;
}

.method-image-card img {
  width: 100%;
  display: block;
}

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

.stat-card {
  background: white;
  border: 1px solid rgba(34,166,82,0.20);
  border-radius: 18px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: .55rem;
}

.stat-card span {
  display: block;
  font-size: .95rem;
  color: #64748b;
  line-height: 1.35;
}

.why-clean {
  background:
    radial-gradient(circle at 50% 0%, rgba(46,213,115,0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
}

.why-clean-title {
  color: #0f172a;
}

.why-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-clean-card {
  text-align: center;
  padding: 1rem 1rem 0;
}

.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(34,166,82,0.18);
}

.why-clean-card h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: .75rem;
}

.why-clean-card p {
  color: #000000;
  font-size: 1rem;
  max-width: 240px;
  margin: 0 auto;
}

.projects-clean {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.projects-title {
  color: #16803d;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.projects-clean-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.sector-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(34,166,82,0.18);
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(15,23,42,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15,23,42,0.08);
  border-color: rgba(34,166,82,0.35);
}

.sector-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.sector-card h3 {
  color: #16803d;
  margin-bottom: .45rem;
  font-size: 1.15rem;
}

.sector-card p {
  color: #64748b;
  font-size: .96rem;
  margin: 0;
}

.projects-clean-grid .sector-card:nth-child(5) {
  grid-column: 2 / 3;
}

.projects-clean-grid .sector-card:nth-child(6) {
  grid-column: 3 / 4;
}

@media (max-width: 1080px) {
  .hero-clean-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

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

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

  .projects-clean-grid .sector-card:nth-child(5),
  .projects-clean-grid .sector-card:nth-child(6) {
    grid-column: auto;
  }

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

@media (max-width: 820px) {
  .hero-clean {
    padding-top: 2.5rem;
  }

  .hero-clean-grid {
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-clean-title {
    max-width: none;
  }

  .method-copy h2 {
    max-width: none;
  }

  .why-clean-grid,
  .projects-clean-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO BROWSER DEMO ===== */

.browser-demo {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(10px);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

.address-bar {
  position: relative;
  flex: 1;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;

  background: #ffffff;   /* bianco vero */
  border: 1px solid rgba(15,23,42,0.12);

  color: #0f172a;
  font-size: 0.95rem;
  overflow: hidden;
}

.typed-url {
  white-space: nowrap;
  color: #0f172a;   /* testo scuro */
  font-weight: 600;
}

.typing-caret {
  width: 1px;
  height: 18px;
  margin-left: 2px;
  background: #0f172a;
}

@keyframes blinkCaret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.browser-body {
  position: relative;
  height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(46,213,115,0.10), transparent 18%),
    linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
}

/* loader */
.site-loader {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 3;
}

.site-loader.active {
  opacity: 1;
  transform: translateY(0);
}

.loader-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow: hidden;
}

.loader-progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
}

/* mini site */
.mini-site-content {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity .8s ease, transform .8s ease;
}

.mini-site-content.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mini-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.mini-site-logo {
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}

.mini-site-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-site-links span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.mini-site-hero {
  max-width: 370px;
}

.mini-site-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(46,213,115,0.12);
  color: #15803d;
  border: 1px solid rgba(46,213,115,0.16);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.mini-site-hero h4 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.mini-site-hero p {
  margin: 0 0 16px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #64748b;
}

.mini-site-cta {
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(34,166,82,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mini-site-cta.active {
  transform: scale(1.04);
  box-shadow: 0 16px 28px rgba(34,166,82,0.28);
}

.mini-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-site-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
  border-radius: 18px;
  padding: 16px 14px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.mini-site-card strong {
  display: block;
  font-size: 0.92rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.mini-site-card span {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

.mini-site-card.active {
  transform: translateY(-4px);
  border-color: rgba(34,166,82,0.30);
  box-shadow: 0 16px 28px rgba(15,23,42,0.08);
}

.mini-site-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mini-site-stat {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.05);
}

.mini-site-stat strong {
  display: block;
  color: #16a34a;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-site-stat span {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
}

.mini-estimator-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 26px rgba(15,23,42,0.08);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.mini-estimator-card.active {
  transform: translateY(-4px);
  border-color: rgba(34,166,82,0.34);
  box-shadow: 0 18px 30px rgba(15,23,42,0.12);
}

.mini-estimator-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-estimator-head strong {
  color: #0f172a;
  font-size: 0.94rem;
}

.mini-estimator-head span {
  color: var(--green-strong);
  font-size: 0.75rem;
  font-weight: 700;
}

.mini-estimator-progress {
  width: 100%;
  height: 8px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow: hidden;
}

.mini-estimator-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  transition: width 1.25s linear;
}

.mini-chat-window {
  display: grid;
  gap: 10px;
}

.mini-chat-bubble {
  max-width: 88%;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}

.mini-chat-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

.mini-chat-bubble-user {
  justify-self: end;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.08);
}

.mini-chat-bubble-bot {
  justify-self: start;
  background: rgba(34,166,82,0.10);
  color: #116530;
}

/* cursor */
.demo-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #111827;
  clip-path: polygon(0 0, 0 100%, 28% 72%, 48% 100%, 60% 94%, 40% 66%, 74% 66%);
  z-index: 5;
  pointer-events: none;
  transform: translate(20px, 20px);
  opacity: 0;
  transition: transform 1s ease, opacity .3s ease;
}

/* responsive */
@media (max-width: 1080px) {
  .browser-demo {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .browser-body {
    height: 420px;
  }

  .mini-site-cards {
    grid-template-columns: 1fr;
  }

  .mini-site-stats {
    grid-template-columns: 1fr;
  }

  .mini-site-links {
    display: none;
  }

  .mini-site-hero h4 {
    font-size: 1.65rem;
  }
}

.browser-domain{
  position:absolute;
  right:14px;
  font-size:12px;
  color:#64748b;
}

/* HERO WOW DEMO */

.browser-demo{
max-width:620px;
margin-left:auto;
border-radius:28px;
overflow:hidden;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.1);
box-shadow:0 30px 80px rgba(0,0,0,0.35);
backdrop-filter:blur(8px);
}

.browser-body{
height:460px;
overflow:hidden;
background:
radial-gradient(circle at 85% 15%, rgba(46,213,115,0.1), transparent 18%),
linear-gradient(180deg,#f8fbf8 0%,#eef5f0 100%);
}

.typed-url{
color:#0f172a;
font-weight:600;
}

.typing-caret{
width:1px;
height:18px;
margin-left:2px;
background:#0f172a;
animation:blinkCaret .9s infinite;
}

@keyframes blinkCaret{
0%,50%{opacity:1;}
51%,100%{opacity:0;}
}

.mini-site-content{
opacity:0;
transform:translateY(20px);
transition:all .7s ease;
}

.mini-site-content.visible{
opacity:1;
transform:translateY(0);
}

.demo-cursor{
position:absolute;
width:18px;
height:18px;
background:#111827;
clip-path:polygon(0 0,0 100%,28% 72%,48% 100%,60% 94%,40% 66%,74% 66%);
z-index:10;
pointer-events:none;
opacity:0;
transition:transform 1s ease;
}

/* ===== WOW HERO DEMO ===== */

.hero-clean-visual {
  display: flex;
  justify-content: flex-end;
}

.browser-demo {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

.address-bar {
  position: relative;
  flex: 1;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.12);
  overflow: hidden;
}

.typed-url {
  white-space: nowrap;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
}

.typing-caret {
  width: 1px;
  height: 18px;
  margin-left: 2px;
  background: #0f172a;
  animation: blinkCaret .9s steps(1) infinite;
}

@keyframes blinkCaret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.browser-body {
  position: relative;
  height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(46,213,115,0.10), transparent 18%),
    linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
}

.site-loader {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 4;
}

.site-loader.active {
  opacity: 1;
  transform: translateY(0);
}

.loader-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow: hidden;
}

.loader-progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
}

.mini-site-content {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity .8s ease, transform .8s ease;
}

.mini-site-content.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mini-site-inner {
  position: absolute;
  inset: 0;
  padding: 22px;
  transition: transform 1.2s ease;
}

.mini-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mini-site-logo {
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}

.mini-site-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-site-links span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.mini-site-hero {
  max-width: 370px;
}

.mini-site-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(46,213,115,0.12);
  color: #15803d;
  border: 1px solid rgba(46,213,115,0.16);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.mini-site-hero h4 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.mini-site-hero p {
  margin: 0 0 16px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #64748b;
}

.mini-site-cta {
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-strong) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(34,166,82,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mini-site-cta.active {
  transform: scale(1.04);
  box-shadow: 0 16px 28px rgba(34,166,82,0.28);
}

.mini-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-site-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
  border-radius: 18px;
  padding: 16px 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mini-site-card strong {
  display: block;
  font-size: 0.92rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.mini-site-card span {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

.mini-site-card.active {
  transform: translateY(-4px);
  border-color: rgba(34,166,82,0.30);
  box-shadow: 0 16px 28px rgba(15,23,42,0.08);
}

.mini-site-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mini-site-stat {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.05);
}

.mini-site-stat strong {
  display: block;
  color: #16a34a;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-site-stat span {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
}

.mini-site-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.mini-bottom-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.mini-bottom-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mini-bottom-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.demo-cursor {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #111827;
  clip-path: polygon(0 0, 0 100%, 28% 72%, 48% 100%, 60% 94%, 40% 66%, 74% 66%);
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  transform: translate(24px, 24px);
  transition: transform 1s ease, opacity .25s ease;
}

.cursor-click-ring {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(34,166,82,0.45);
  border-radius: 50%;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  transform: translate(16px, 16px) scale(.6);
}

.cursor-click-ring.active {
  animation: clickPulse .45s ease;
}

@keyframes clickPulse {
  0% {
    opacity: .9;
    transform: translate(var(--ring-x, 16px), var(--ring-y, 16px)) scale(.4);
  }
  100% {
    opacity: 0;
    transform: translate(var(--ring-x, 16px), var(--ring-y, 16px)) scale(1.3);
  }
}

@media (max-width: 1080px) {
  .browser-demo {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .browser-body {
    height: 430px;
  }

  .mini-site-cards,
  .mini-site-stats,
  .mini-site-bottom {
    grid-template-columns: 1fr;
  }

  .mini-site-links {
    display: none;
  }

  .mini-site-hero h4 {
    font-size: 1.65rem;
  }
}
/* ===== HERO SLIDER ===== */

.hero-slider {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.hero-slider-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-height: calc(100vh - 120px);
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.hero-slider-track::-webkit-scrollbar {
  display: none;
}

.hero-slider-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 2rem;
}

.hero-slide.active {
  z-index: 1;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, opacity .25s ease;
  opacity: .9;
}

.hero-dot.active {
  width: 30px;
  background: #ef2c7a;
}

.hero-alt-title {
  max-width: 11ch;
}

.hero-alt-card {
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #2e93c9 0%, #2788bb 100%);
  box-shadow: 0 24px 70px rgba(15,23,42,0.12);
  position: relative;
}

.hero-alt-bg {
  position: absolute;
  inset: 0;
}

.hero-alt-floating {
  position: absolute;
  border-radius: 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
}

.hero-alt-box-1 {
  width: 180px;
  height: 110px;
  top: 70px;
  right: 70px;
}

.hero-alt-box-2 {
  width: 240px;
  height: 150px;
  bottom: 70px;
  left: 50px;
}

.hero-alt-box-3 {
  width: 120px;
  height: 120px;
  bottom: 110px;
  right: 95px;
  border-radius: 50%;
}

.hero-results-card {
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.results-row {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.results-pill {
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(46,213,115,0.10);
  border: 1px solid rgba(46,213,115,0.18);
  color: var(--green);
  font-weight: 700;
  font-size: .82rem;
}

.results-chart {
  height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at 20% 70%, rgba(46,213,115,0.16), transparent 30%);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.results-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .4;
}

.results-chart::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 35px;
  height: 90px;
  border-bottom: 3px solid rgba(46,213,115,0.8);
  border-right: 3px solid transparent;
  clip-path: polygon(0% 80%, 15% 65%, 30% 72%, 48% 40%, 65% 52%, 82% 20%, 100% 0%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(46,213,115,0.20), rgba(46,213,115,0.03));
}

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.results-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1rem;
}

.results-stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: .35rem;
}

.results-stat span {
  color: var(--text-soft);
  font-size: .9rem;
}

@media (max-width: 1080px) {
  .hero-slider-track {
    min-height: auto;
  }

  .hero-slide {
    padding: 2.5rem 0 3rem;
  }
}

@media (max-width: 820px) {
  .hero-slider-track {
    cursor: default;
  }

  .hero-slider {
    padding-bottom: 4rem;
  }

  .hero-slider-dots {
    bottom: .75rem;
  }

  .hero-alt-card,
  .hero-results-card {
    min-height: 320px;
  }

  .results-stats {
    grid-template-columns: 1fr;
  }
}

.hero-slide{
color: #0f172a;
}

.hero-slide p{
color: #64748b;
}

.hero-slide .hero-clean-title{
color:#0f172a;
}

.hero-slide .accent{
color: var(--green);
}

.hero-slide{
background: linear-gradient(
180deg,
#f8fbf8 0%,
#eef5f0 100%
);
}

/* ===== HERO SLIDER: PRIMA SLIDE SCURA ===== */

.hero-slide {
  background: linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
  color: #0f172a;
}

.hero-slide p {
  color: #64748b;
}

.hero-slide .hero-clean-title {
  color: #0f172a;
}

.hero-slide .accent {
  color: var(--green);
}

/* SOLO PRIMA SLIDE */
.hero-slide:first-child {
  background:
    radial-gradient(circle at 82% 18%, rgba(46,213,115,0.12), transparent 20%),
    radial-gradient(circle at 12% 22%, rgba(46,213,115,0.08), transparent 16%),
    linear-gradient(180deg, #0b1410 0%, #101b15 100%);
}

/* Testi sinistra della prima slide */
.hero-slide:first-child .hero-clean-copy,
.hero-slide:first-child .hero-clean-copy p,
.hero-slide:first-child .hero-clean-copy .hero-clean-title,
.hero-slide:first-child .hero-clean-copy .hero-clean-text {
  color: #ffffff;
}

/* Sottotesto leggermente più soft nella prima slide */
.hero-slide:first-child .hero-clean-copy .hero-clean-text {
  color: rgba(255,255,255,0.78);
}

/* Accent della prima slide */
.hero-slide:first-child .hero-clean-copy .accent {
  color: var(--green);
}

/* Bottone secondario nella prima slide */
.hero-slide:first-child .hero-clean-copy .btn-secondary {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
}

.hero-slide:first-child .hero-clean-copy .btn-secondary:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.07);
}

/* Eyebrow prima slide */
.hero-slide:first-child .hero-clean-copy .eyebrow {
  color: var(--green);
  background: rgba(46,213,115,0.08);
  border: 1px solid rgba(46,213,115,0.20);
}

/* Assicura che il browser demo resti chiaro e invariato */
.hero-slide:first-child .browser-demo,
.hero-slide:first-child .browser-demo * {
  color: initial;
}

.hero-slide:first-child .browser-demo .typed-url,
.hero-slide:first-child .browser-demo .mini-site-logo,
.hero-slide:first-child .browser-demo .mini-site-hero h4,
.hero-slide:first-child .browser-demo .mini-site-card strong,
.hero-slide:first-child .browser-demo .mini-bottom-card strong {
  color: #0f172a;
}

.hero-slide:first-child .browser-demo .mini-site-hero p,
.hero-slide:first-child .browser-demo .mini-site-links span,
.hero-slide:first-child .browser-demo .mini-site-card span,
.hero-slide:first-child .browser-demo .mini-site-stat span {
  color: #64748b;
}



/* posizionamento note negative */
.before-card .ba-note:nth-child(1) {
  top: 8%;
  left: -10%;
}

.before-card .ba-note:nth-child(2) {
  top: 42%;
  left: -14%;
}

.before-card .ba-note:nth-child(3) {
  bottom: 8%;
  left: -8%;
}

/* posizionamento note positive */
.after-card .ba-note:nth-child(1) {
  top: 7%;
  left: -6%;
}

.after-card .ba-note:nth-child(2) {
  top: 26%;
  right: -6%;
}

.after-card .ba-note:nth-child(3) {
  bottom: 26%;
  left: -4%;
}

.after-card .ba-note:nth-child(4) {
  bottom: 11%;
  right: -5%;
}

.after-card .ba-note:nth-child(5) {
  top: 58%;
  right: 6%;
  font-size: .95rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(255,255,255,0.98));
}

/* animazione quando la slide 2 è attiva */
.hero-before-after.active .before-card {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: .35s;
}

.hero-before-after.active .after-card {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: .55s;
}

.hero-before-after.active .before-card .ba-note,
.hero-before-after.active .after-card .ba-note {
  opacity: 1;
  transform: translateY(0);
}

.hero-before-after.active .before-card .ba-note:nth-child(1) { transition: .45s ease .85s; }
.hero-before-after.active .before-card .ba-note:nth-child(2) { transition: .45s ease 1s; }
.hero-before-after.active .before-card .ba-note:nth-child(3) { transition: .45s ease 1.15s; }

.hero-before-after.active .after-card .ba-note:nth-child(1) { transition: .45s ease .95s; }
.hero-before-after.active .after-card .ba-note:nth-child(2) { transition: .45s ease 1.1s; }
.hero-before-after.active .after-card .ba-note:nth-child(3) { transition: .45s ease 1.25s; }
.hero-before-after.active .after-card .ba-note:nth-child(4) { transition: .45s ease 1.4s; }
.hero-before-after.active .after-card .ba-note:nth-child(5) { transition: .5s ease 1.55s; }

@media (max-width: 1080px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .before-after-stage {
    min-height: 660px;
    margin-top: 1rem;
  }

  .before-card {
    left: 0;
    top: 190px;
    width: 42%;
  }

  .after-card {
    right: 0;
    top: 70px;
    width: 82%;
  }
}

@media (max-width: 820px) {
  .before-after-stage {
    min-height: auto;
    display: grid;
    gap: 1.5rem;
  }

  .before-card,
  .after-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .ba-label {
    display: none;
  }

  .ba-note {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: .75rem;
    display: inline-flex;
  }

  .ba-notes {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .75rem;
  }

  .hero-before-after.active .before-card,
  .hero-before-after.active .after-card,
  .hero-before-after.active .before-card .ba-note,
  .hero-before-after.active .after-card .ba-note {
    transition: none;
  }
}

/* attivazione */
.hero-before-after.active .ba-transform {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .72s;
}

@media (max-width: 1080px) {
  .ba-transform {
    left: 39%;
    width: 20%;
    top: 46%;
  }

  .ba-transform-badge {
    top: -34px;
    font-size: .72rem;
  }
}

@media (max-width: 820px) {
  .ba-transform {
    display: none;
  }
}

/* ===== HERO 2 SHOWCASE REBUILD COMPLETO ===== */

.hero-showcase {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.85), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(46,213,115,0.08), transparent 22%),
    linear-gradient(180deg, #f9fbf8 0%, #eef4f0 100%);
  overflow: hidden;
}

.hero-showcase-wrap {
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-rows: 560px auto;
  gap: 4.4rem;
  align-items: start;
}

.hero-showcase-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: visible;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 24px 80px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.hero-showcase-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.05);
  background:
    radial-gradient(circle at 24% 38%, rgba(239,68,68,0.05), transparent 24%),
    radial-gradient(circle at 76% 32%, rgba(34,197,94,0.08), transparent 24%);
  pointer-events: none;
}

.hero-showcase-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero-showcase.active .hero-showcase-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.hero-showcase-copy .eyebrow {
  margin: 0 auto 1rem;
}

.hero-showcase-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #64748b;
}

/* chips */

.showcase-chip {
  position: absolute;
  z-index: 10;
  padding: .58rem 1rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.07);
}

.showcase-chip-before {
  top: 22px;
  left: 28px;
  background: rgba(255,255,255,0.88);
  color: #b42318;
  border: 1px solid rgba(239,68,68,0.14);
}

.showcase-chip-after {
  top: 22px;
  right: 28px;
  background: rgba(255,255,255,0.9);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.16);
}

/* BEFORE */

.showcase-before {
  position: absolute;
  left: 32px;
  top: 92px;
  width: 35%;
  z-index: 3;
  opacity: 0;
  transform: translateX(-24px) scale(.97);
  transition: opacity .7s ease, transform .7s ease;
}

.hero-showcase.active .showcase-before {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: .25s;
}

.showcase-before img {
  width: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 24px 54px rgba(15,23,42,0.12);
  filter: grayscale(.36) brightness(.93);
}

/* AFTER */

.showcase-after {
  position: absolute;
  right: 28px;
  top: 48px;
  width: 47%;
  z-index: 6;
  opacity: 0;
  transform: translateX(28px) scale(.975);
  transition: opacity .75s ease, transform .75s ease;
}

.hero-showcase.active .showcase-after {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: .45s;
}

.showcase-after,
.showcase-after::before,
.showcase-after::after,
.showcase-after img {
  outline: none !important;
}

.showcase-after img {
  width: 100%;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow:
    0 30px 70px rgba(15,23,42,0.14),
    0 8px 24px rgba(15,23,42,0.06);
}

/* transizione centrale */

.showcase-transition {
  position: absolute;
  left: 39.2%;
  top: 188px;
  width: 86px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity .5s ease, transform .5s ease;
}

.hero-showcase.active .showcase-transition {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .62s;
}

.showcase-bridge-arrow {
  position: relative;
  display: block;
  width: 86px;
  height: 42px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,249,246,0.82)),
    linear-gradient(90deg, rgba(18,97,49,0.10) 0%, rgba(34,197,94,0.16) 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow:
    0 14px 28px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,0.88);
  animation: showcaseArrowPulse 2.6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.showcase-bridge-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21,128,61,0.3), #22c55e 70%);
  transform: translateY(-50%);
}

.showcase-bridge-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #22c55e;
  border-right: 3px solid #22c55e;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}

@keyframes showcaseArrowPulse {
  0%, 100% {
    transform: translateX(0);
    box-shadow:
      0 14px 28px rgba(15,23,42,0.08),
      inset 0 1px 0 rgba(255,255,255,0.88);
  }
  50% {
    transform: translateX(5px);
    box-shadow:
      0 18px 30px rgba(15,23,42,0.10),
      inset 0 1px 0 rgba(255,255,255,0.94);
  }
}

/* points base */

.showcase-points {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.showcase-point {
  padding: .88rem 1.08rem;
  border-radius: 16px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(15,23,42,0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
}

.hero-showcase.active .showcase-point {
  opacity: 1;
  transform: translateY(0);
}

.showcase-points-negative .showcase-point {
  background: rgba(255,255,255,0.94);
  color: #b42318;
  border: 1px solid rgba(239,68,68,0.14);
}

.showcase-points-positive .showcase-point {
  background: rgba(255,255,255,0.95);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.16);
}

/* box sotto il PRIMA */

.showcase-before .showcase-points {
  bottom: -108px;
  width: 100%;
  max-width: 420px;
}

.showcase-before .showcase-point:nth-child(1) {
  transition: .42s ease .78s;
}

.showcase-before .showcase-point:nth-child(2) {
  transition: .42s ease .9s;
}

.showcase-before .showcase-point:nth-child(3) {
  transition: .42s ease 1.02s;
}

/* box sotto il DOPO */

.showcase-after .showcase-points {
  bottom: -118px;
  width: calc(100% - 36px);
  max-width: 540px;
  gap: 12px 14px;
}

.showcase-after .showcase-point:nth-child(1) {
  transition: .42s ease .86s;
}

.showcase-after .showcase-point:nth-child(2) {
  transition: .42s ease .98s;
}

.showcase-after .showcase-point:nth-child(3) {
  transition: .42s ease 1.1s;
}

.showcase-after .showcase-point:nth-child(4) {
  transition: .42s ease 1.22s;
}

.showcase-after .showcase-point:nth-child(5) {
  transition: .48s ease 1.34s;
  font-size: 1rem;
  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.16),
    rgba(255,255,255,0.98)
  );
}

/* responsive */

@media (max-width: 1280px) {
  .hero-showcase-wrap {
    grid-template-rows: 530px auto;
    gap: 3.8rem;
  }

  .showcase-before {
    width: 33%;
  }

  .showcase-after {
    width: 48%;
    right: 24px;
  }

  .showcase-transition {
    left: 38.2%;
    width: 80px;
  }
}

@media (max-width: 1080px) {
  .hero-showcase-wrap {
    grid-template-rows: 490px auto;
    gap: 3.2rem;
  }

  .showcase-before {
    width: 32%;
    top: 92px;
  }

  .showcase-after {
    width: 48%;
    right: 18px;
    top: 56px;
  }

  .showcase-transition {
    left: 37.8%;
    top: 194px;
    width: 72px;
  }

  .showcase-point {
    font-size: .88rem;
    padding: .78rem .94rem;
  }

  .showcase-after .showcase-points {
    max-width: 470px;
  }
}

@media (max-width: 900px) {
  .hero-showcase-wrap {
    grid-template-rows: auto auto;
    gap: 2.2rem;
  }

  .hero-showcase-stage {
    min-height: auto;
    display: grid;
    gap: 2rem;
    padding: 1.15rem;
  }

  .showcase-before,
  .showcase-after {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .showcase-transition,
  .showcase-chip {
    display: none;
  }

  .showcase-points {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .9rem;
  }

  .showcase-point {
    opacity: 1;
    transform: none;
    white-space: normal;
  }

  .hero-showcase-copy {
    text-align: left;
    opacity: 1;
    transform: none;
  }

  .hero-showcase-title,
  .hero-showcase-text {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.before-after-headline {
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 960px;
  margin: 0 auto 24px;
  text-align: center;
  color: #0f172a;
}

.accent {
  color: #22c55e;
  font-weight: 800;
}

/* ===== HERO 3 FULL VISUAL ===== */

.hero-results-visual {
  background:
    radial-gradient(circle at 20% 20%, rgba(46,213,115,0.08), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(46,213,115,0.10), transparent 20%),
    linear-gradient(180deg, #f8fbf8 0%, #eef5f0 100%);
  overflow: hidden;
}

.hero-results-wrap {
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-rows: 4fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-results-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

.hero-results-image {
  width: min(100%, 1280px);
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 28px 55px rgba(30, 80, 45, 0.16));
  transform: scale(1.02);
}

.hero-results-bottom {
  display: flex;
  align-items: end;
  padding-bottom: .5rem;
}

.hero-results-stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-results-stat-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(34,166,82,0.16);
  border-radius: 22px;
  padding: 1.15rem 1.15rem 1.1rem;
  box-shadow: 0 12px 26px rgba(15,23,42,0.06);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-results-visual.active .hero-results-stat-card {
  opacity: 1;
  transform: translateY(0);
}

.hero-results-visual.active .hero-results-stat-card:nth-child(1) { transition-delay: .35s; }
.hero-results-visual.active .hero-results-stat-card:nth-child(2) { transition-delay: .48s; }
.hero-results-visual.active .hero-results-stat-card:nth-child(3) { transition-delay: .61s; }
.hero-results-visual.active .hero-results-stat-card:nth-child(4) { transition-delay: .74s; }

.hero-results-stat-card:hover {
  box-shadow: 0 18px 34px rgba(15,23,42,0.08);
  border-color: rgba(34,166,82,0.26);
  transform: translateY(-4px);
}

.hero-results-stat-label {
  display: inline-flex;
  align-items: center;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(46,213,115,0.10);
  border: 1px solid rgba(46,213,115,0.18);
  color: #15803d;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}

.hero-results-stat-card strong {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  color: #0f172a;
  margin-bottom: .6rem;
  letter-spacing: -0.04em;
}

.hero-results-stat-card p {
  margin: 0;
  color: #64748b;
  font-size: .95rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .hero-results-wrap {
    grid-template-rows: auto auto;
    gap: 1.2rem;
  }

  .hero-results-top {
    padding-top: 0;
  }

  .hero-results-image {
    width: 100%;
  }

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

@media (max-width: 820px) {
  .hero-results-wrap {
    min-height: auto;
    gap: .85rem;
  }

  .hero-results-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-results-top {
    align-items: flex-start;
    padding-top: 0;
  }

  .hero-results-image {
    width: 112%;
    max-width: none;
    transform: translateY(-20px) translateX(-3%);
    transform-origin: top center;
  }

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

  .hero-results-stat-card {
    opacity: 1;
    transform: none;
  }
}

/* ===== PREMIUM LOGOS MARQUEE FIXED ===== */

.logos-strip-section {
  padding: 5.5rem 0 5rem;
  background: #ffffff;
  overflow: hidden;
}

.logos-strip-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logos-strip-head {
  text-align: left;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.logos-strip-head h2 {
  color: #0f172a;
  margin-bottom: 0;
}

.logos-static-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.2rem;
  flex: 1 1 auto;
}

.logos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-marquee-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  width: 240px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .82;
  transition: transform .25s ease, opacity .25s ease;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.02);
}

.logo-item img {
  display: block;
  max-width: 85%;
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-item-static {
  width: 220px;
  height: 110px;
  opacity: 1;
}

.logo-item-static:hover {
  transform: translateY(-2px) scale(1.02);
}

.logo-item-mullini {
  width: 300px;
  height: 126px;
}

.logo-item-mullini img {
  max-width: 94%;
  max-height: 88%;
}

@media (max-width: 900px) {
  .logos-strip-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .logos-static-list {
    width: 100%;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .logos-marquee-track {
    gap: 3rem;
  }

  .logo-item {
    width: 180px;
    height: 68px;
  }

  .logo-item-static {
    width: 180px;
    height: 86px;
  }

  .logo-item-mullini {
    width: 240px;
    height: 100px;
  }
}

/* ===== RESPONSIVE POLISH ===== */

html,
body {
  overflow-x: clip;
}

@media (max-width: 1100px) {
  .section {
    padding: 5rem 0;
  }

  .hero-slide {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-clean-grid,
  .method-grid,
  .hero-showcase-wrap,
  .hero-results-wrap {
    min-height: auto;
  }

  .hero-clean-grid {
    gap: 2.4rem;
  }

  .browser-demo {
    max-width: 100%;
  }

  .browser-body {
    height: 430px;
  }

  .hero-showcase-wrap {
    grid-template-rows: auto auto;
    gap: 2.6rem;
  }

  .hero-showcase-stage {
    min-height: auto;
    display: grid;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .showcase-before,
  .showcase-after {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .showcase-transition,
  .showcase-chip {
    display: none;
  }

  .showcase-points {
    position: static;
    transform: none;
    justify-content: flex-start;
    gap: .65rem;
    margin-top: .95rem;
  }

  .showcase-point {
    opacity: 1;
    transform: none;
    white-space: normal;
  }

  .hero-showcase-copy {
    opacity: 1;
    transform: none;
    text-align: left;
  }

  .before-after-headline {
    margin: 0 0 1.1rem;
    text-align: left;
  }

  .hero-showcase-text {
    max-width: none;
    margin: 0;
  }

  .hero-results-image {
    width: 100%;
    transform: none;
  }

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

  .logos-strip-section {
    padding: 4.5rem 0;
  }

  .logos-strip-shell {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .logos-strip-head {
    text-align: center;
  }

  .logos-static-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .logo-item-static,
  .logo-item-mullini {
    width: min(100%, 260px);
    height: 110px;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,0.08);
    background: #f8fbf8;
    box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 4rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

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

  .brand img {
    height: 42px;
  }

  .site-nav {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

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

  h1,
  .hero-clean-title,
  .before-after-headline {
    line-height: 1.02;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-slider {
    padding-bottom: 4.5rem;
  }

  .hero-slide {
    padding: 2rem 0 3.75rem;
  }

  .hero-slider-dots {
    bottom: .85rem;
  }

  .browser-top {
    padding: 12px;
    gap: 10px;
  }

  .address-bar {
    min-height: 38px;
    padding: 0 12px;
  }

  .typed-url {
    font-size: .82rem;
  }

  .browser-body {
    height: 400px;
  }

  .mini-site-inner {
    padding: 16px;
  }

  .mini-site-hero {
    max-width: none;
  }

  .mini-site-hero h4 {
    font-size: 1.48rem;
  }

  .mini-site-card,
  .mini-site-stat,
  .mini-estimator-card,
  .hero-results-stat-card,
  .sector-card,
  .why-clean-card,
  .stat-card {
    border-radius: 18px;
  }

  .stats-grid,
  .why-clean-grid,
  .projects-clean-grid,
  .hero-results-stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-logo {
    height: 64px;
  }

  .footer-bottom {
    font-size: .92rem;
  }

  .logos-static-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .logo-item-static,
  .logo-item-mullini {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 0;
  }

  .eyebrow {
    font-size: .72rem;
    letter-spacing: .1em;
    padding: .5rem .8rem;
  }

  .lead,
  .hero-clean-text,
  .hero-showcase-text,
  .method-text {
    font-size: 1rem;
  }

  .nav-toggle {
    min-width: 54px;
    min-height: 54px;
    font-size: 2rem;
  }

  .btn {
    padding: .95rem 1.1rem;
  }

  .browser-body {
    height: 360px;
  }

  .mini-site-inner {
    padding: 14px;
  }

  .mini-site-badge {
    margin-bottom: 10px;
  }

  .mini-site-hero h4 {
    font-size: 1.3rem;
  }

  .mini-site-hero p,
  .mini-site-card span,
  .mini-site-stat span,
  .hero-results-stat-card p,
  .sector-card p {
    font-size: .9rem;
  }

  .hero-results-stat-card,
  .sector-card,
  .why-clean-card {
    padding: 1.1rem;
  }

  .showcase-point {
    width: 100%;
  }

  .logos-strip-section {
    padding: 3.5rem 0;
  }
}
