:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #f7f5f1;
  --muted: #eeeae2;
  --muted-foreground: #57534e;
  --primary: #1e3a8a;
  --primary-hover: #2f55c7;
  --accent-soft: #e3e8f5;
  --border: #e5e1d8;
  --dark: #111827;
  --dark-muted: rgba(255, 255, 255, 0.72);
  --radius: 10px;
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.caption {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-xl,
.display-l,
.display-m,
.brand,
h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.015em;
}

.display-xl {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 750;
}

.display-l {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  font-weight: 720;
}

.display-m {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.16;
  font-weight: 700;
}

.muted {
  color: var(--muted-foreground);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 225, 216, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.header-logo {
  height: 38px;
  filter: brightness(0);
}

.footer-logo {
  height: 44px;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 28px;
}

.desktop-nav a,
.phone-link {
  color: rgba(10, 10, 10, 0.76);
  font-size: 1.05rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.phone-link:hover {
  color: var(--foreground);
}

.desktop-actions {
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(30, 58, 138, 0.18);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  border-color: var(--border);
  background: var(--background);
}

.btn-outline:hover {
  background: var(--muted);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--foreground);
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  padding: 150px 0 104px;
  overflow: hidden;
  background: #080c18;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}

.hero:after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -260px;
  right: -240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.12), transparent 66%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero-inner .display-xl {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  margin-bottom: 32px;
  border: 1px solid rgba(30, 58, 138, 0.16);
  border-radius: 999px;
  background: var(--accent-soft);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 34px;
  color: var(--muted-foreground);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: #1a3a26;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #16a34a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.58);
  pointer-events: none;
}

/* Hero dark overrides */
.hero-inner {
  color: #fff;
}

.hero-inner .hero-copy {
  color: rgba(255, 255, 255, 0.72);
}

.hero-inner .eyebrow-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.hero-inner .caption {
  color: #a5b4fc;
}

.hero .trust-list li {
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(22, 163, 74, 0.4);
  color: #bbf7d0;
}

/* Header transparent over dark hero */
.site-header:not(.is-scrolled):not(.is-open) .desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header:not(.is-scrolled):not(.is-open) .desktop-nav a:hover {
  color: #fff;
}

.site-header:not(.is-scrolled):not(.is-open) .header-logo {
  filter: brightness(0) invert(1);
}

.site-header:not(.is-scrolled):not(.is-open) .menu-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header:not(.is-scrolled):not(.is-open) .menu-toggle span {
  background: #fff;
}

.stats-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.42);
}

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

.stat {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.stat small {
  color: var(--muted-foreground);
}

.logo-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 35s linear infinite;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 700;
}

.logo-chip b {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--primary);
  background: var(--accent-soft);
  font-size: 0.78rem;
}

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

.section-head {
  max-width: 760px;
}

#faq .section-head .display-l {
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
}

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

.section-head p {
  margin: 18px 0 0;
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.vertical-card,
.plain-card,
.faq-item,
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.vertical-card {
  padding: 30px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 9px;
  color: var(--primary);
  background: var(--accent-soft);
}

.vertical-card .icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  margin-bottom: 24px;
}

.vertical-card h3,
.plain-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.vertical-card p,
.plain-card p {
  color: var(--muted-foreground);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li:before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9.2 16.2 4.8 11.8 3.4 13.2l5.8 5.8L21 7.2 19.6 5.8z'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

#contatti .check-list li:before {
  background: #16a34a;
}

.problem-section {
  background: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.problem-list,
.method-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.plain-card {
  padding: 24px;
}

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

.metodo-card {
  border-radius: 22px;
  padding: 32px 28px;
}

.metodo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.metodo-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metodo-bullets li {
  padding-left: 20px;
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.metodo-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.metodo-info-cell .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  width: 38px;
  height: 38px;
}

.metodo-panel {
  background: #111827;
  border-radius: 24px;
  padding: 16px;
}

.metodo-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.metodo-badge {
  display: inline-block;
  margin: 16px 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.metodo-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metodo-info-cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

.metodo-info-cell strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}

.metodo-info-cell span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.dark-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.08), transparent 36%), radial-gradient(circle at 78% 72%, rgba(30, 58, 138, 0.32), transparent 40%);
  pointer-events: none;
}

.dark-section .container {
  position: relative;
}

.dark-section .caption {
  color: #cfd8ff;
}

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

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.case-card h3 {
  margin: 18px 0 14px;
}

.case-card p {
  font-size: 0.95rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.metric strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.2;
}

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

.step-number {
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.4rem;
  font-weight: 760;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 48px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 54px auto 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--foreground);
  text-align: left;
  font-weight: 750;
}

.faq-question:after {
  content: "+";
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 1.35rem;
}

.faq-item.is-open .faq-question:after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted-foreground);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.form-card {
  padding: 30px;
  color: var(--foreground);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--foreground);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

.form-error {
  min-height: 0;
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
}
.form-error:not(:empty) {
  margin-bottom: 12px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  color: #17432b;
  background: #dff3e8;
  font-weight: 700;
}

.form-card.is-sent .form-success {
  display: block;
}

.site-footer {
  padding: 58px 0 34px;
  background: #080808;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.65fr);
  gap: 34px;
}

.footer-brand {
  gap: 10px;
  align-items: center;
}

.footer-brand-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-grid p,
.footer-grid a,
.legal-line {
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.legal-line {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.legal-page {
  padding: 132px 0 80px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted-foreground);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    border-bottom: 1px solid var(--border);
    background: var(--background);
    box-shadow: 0 24px 50px rgba(10, 10, 10, 0.12);
  }

  .site-header.is-open .mobile-panel {
    display: block;
  }

  .mobile-panel .container {
    display: grid;
    gap: 2px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .mobile-panel a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(229, 225, 216, 0.7);
    font-weight: 700;
  }

  .hero-inner,
  .stats-grid,
  .vertical-grid,
  .method-grid,
  .case-grid,
  .process-grid,
  .about-panel,
  .contact-grid,
  .two-col,
  .footer-grid,
  .metodo-layout {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .about-panel {
    padding: 30px;
  }
}

/* ── Lead Calculator card ─────────────────────────────── */
.calc-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px 30px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  color: var(--foreground);
}

.calc-card-label {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-card-title {
  margin: 0 0 7px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.3rem;
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--foreground);
}

.calc-card-sub {
  margin: 0 0 20px;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.4;
}

.calc-fields {
  display: grid;
  gap: 13px;
  margin-bottom: 16px;
}

.calc-field {
  display: grid;
  gap: 5px;
}

.calc-field label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--foreground);
}

.calc-field input,
.calc-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  color: var(--foreground);
  font: inherit;
  transition: border-color 180ms ease;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.calc-error {
  min-height: 0;
  color: #c0392b;
  font-size: 0.82rem;
  font-weight: 600;
}

.calc-error:not(:empty) {
  margin-bottom: 10px;
}

.calc-btn {
  width: 100%;
}

.calc-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  animation: fadeUp 360ms ease;
}

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

.calc-result-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.calc-result-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 10px;
  background: var(--accent-soft);
  border-radius: 10px;
  gap: 4px;
}

.calc-result-metric strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 760;
  color: var(--primary);
  line-height: 1;
}

.calc-result-metric span {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.calc-result-revenue {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2f55c7 100%);
  border-radius: 12px;
  gap: 4px;
}

.calc-revenue-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.calc-result-revenue strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.9rem;
  font-weight: 760;
  color: #fff;
  line-height: 1.1;
}

.calc-revenue-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.calc-disclaimer {
  margin: 0 0 14px;
  font-size: 0.74rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.calc-result-cta {
  display: block;
  width: 100%;
  text-align: center;
}

.calc-email-form {
  padding: 16px;
  margin-bottom: 14px;
  background: var(--muted);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.calc-email-label {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--foreground);
}

.calc-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 12px;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.calc-email-error {
  min-height: 0;
  color: #c0392b;
  font-size: 0.82rem;
  font-weight: 600;
}

.calc-email-error:not(:empty) {
  margin-bottom: 10px;
}

.calc-email-success {
  padding: 12px;
  border-radius: 8px;
  color: #17432b;
  background: #dff3e8;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 128px 0 76px;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-card {
    padding: 22px;
  }
}

/* ── Social Proof (Meta Ads Screenshots) ──────────────────── */
.proof-section {
  background: var(--background);
  color: var(--foreground);
}

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

.proof-section .section-head p {
  color: var(--muted-foreground);
}

.proof-section .caption {
  color: var(--primary);
}

/* Aggregate stats bar */
.proof-aggregate {
  display: flex;
  align-items: stretch;
  margin: 40px 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: #111827;
  background-image: radial-gradient(circle at 78% 72%, rgba(30, 58, 138, 0.32), transparent 40%);
}

.proof-agg-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
}

.proof-agg-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.proof-agg-val {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 760;
  line-height: 1;
  color: #fff;
}

.proof-agg-label {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Cards grid */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  background-image: radial-gradient(circle at 78% 72%, rgba(30, 58, 138, 0.32), transparent 40%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.proof-img-wrap {
  overflow: hidden;
  height: 110px;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-img-wrap img {
  height: 300px;
  width: auto;
  max-width: none;
  display: block;
  margin-top: -185px;
}

.proof-body {
  padding: 14px 16px 13px;
}

.proof-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-stat-val {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 760;
  line-height: 1;
  color: #fff;
}

.proof-stat-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.proof-stat-sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.proof-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.proof-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
}

.proof-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: proof-pulse 2.2s ease-in-out infinite;
}

@keyframes proof-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-aggregate { flex-wrap: wrap; }
  .proof-agg-divider { display: none; }
  .proof-agg-stat { padding: 18px 12px; }
}

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

/* ── WhatsApp bubble ──────────────────────────────────── */
#wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  #wa-bubble {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* Blog */
.blog-hero {
  padding: 132px 0 40px;
}

.blog-hero .display-l {
  margin-top: 14px;
}

.blog-hero p {
  max-width: 680px;
  margin-top: 14px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 96px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.blog-card-meta {
  color: var(--muted-foreground);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.blog-card p {
  color: var(--muted-foreground);
  flex: 1;
}

.blog-card-link {
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
}

.blog-article {
  padding: 132px 0 80px;
}

.blog-article-content {
  max-width: 760px;
}

.blog-back {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-weight: 600;
}

.blog-article-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
}

.blog-article-meta {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.blog-article-content h2 {
  margin: 40px 0 12px;
  font-size: 1.35rem;
}

.blog-article-content p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  margin: 0 0 20px;
}

.blog-closer {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--primary);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  color: var(--foreground);
}

.blog-sources {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.blog-sources p {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.blog-sources a {
  color: var(--primary);
  text-decoration: underline;
}

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

.blog-chart {
  margin: 8px 0 6px;
  padding: 28px 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.blog-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.blog-chart-caption {
  margin: 14px 0 0;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.blog-article-content .check-list {
  margin: 8px 0 6px;
}

.blog-article-content .check-list li {
  color: var(--foreground);
  font-size: 1.02rem;
}
