/* ================================================================
   PLANEA IMPACT — style.css
   Brand: Verde foresta #2D6A4F / Verde acqua #95D5B2 / Sabbia #F4ECD8
   Font: Plus Jakarta Sans (headings) + Inter (body)
   ================================================================ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --green-dark:    #1B4332;
  --green-forest:  #2D6A4F;
  --green-mid:     #40916C;
  --green-light:   #52B788;
  --green-soft:    #95D5B2;
  --green-pale:    #B7E4C7;
  --green-ultra:   #D8F3DC;
  --sand:          #F4ECD8;
  --sand-dark:     #E8D5B0;
  --green-passaggio:#d9f3dd;
  --warm-white:    #FAFAF8;
  --text-dark:     #1A2E1F;
  --text-mid:      #3D5A47;
  --text-light:    #6E8B76;
  --text-muted:    #9DB5A3;
  --border:        rgba(45, 106, 79, 0.12);
  --shadow-sm:     0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md:     0 8px 32px rgba(27, 67, 50, 0.12);
  --shadow-lg:     0 20px 60px rgba(27, 67, 50, 0.16);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:     1200px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.75; }
.lead { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); line-height: 1.65; }

/* ─── SHARED COMPONENTS ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  padding: 0.85em 1.8em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(45, 106, 79, 0.06);
  color: var(--green-forest);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--green-ultra);
  border-color: var(--green-soft);
}
.btn-outline {
  border: 2px solid var(--green-forest);
  color: var(--green-forest);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-forest);
  color: #fff;
}
.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 1em 2em; }

/* ─── ANIMATIONS — SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero specific — starts invisible, animates in on load */
.animate-up { opacity: 0; transform: translateY(28px); }
.animate-up.loaded { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.delay-0.loaded { transition-delay: 0s; }
.delay-1.loaded { transition-delay: 0.15s; }
.delay-2.loaded { transition-delay: 0.3s; }
.delay-3.loaded { transition-delay: 0.45s; }
.delay-4.loaded { transition-delay: 0.6s; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding 0.35s ease;
}
.navbar.scrolled .nav-container { padding: 0.8rem 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 1.15rem; color: var(--text-dark); text-decoration: none; }
.logo-hex { font-size: 1.4rem; color: var(--green-forest); line-height: 1; }
.logo-text strong { color: var(--green-forest); }
.logo-img { display: block; height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-head); font-size: 0.88rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--green-forest); }
.nav-cta-btn {
  background: var(--green-forest);
  color: #fff !important;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-md);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta-btn:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--warm-white) 55%, var(--green-ultra) 100%);
  padding: 7rem 0 5rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 12s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: var(--green-soft); top: -120px; right: -80px; animation-delay: 0s; }
.orb-2 { width: 380px; height: 380px; background: var(--green-pale); bottom: -80px; left: 10%; animation-delay: -4s; }
.orb-3 { width: 260px; height: 260px; background: var(--sand); top: 40%; right: 20%; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-30px) scale(1.04); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-inner {
  position: relative;
  max-width: 750px;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.2rem;
}
.hero-h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.typewriter-container {
  display: inline;
  color: var(--green-forest);
  font-style: italic;
}
.typewriter-text { display: inline; }
.cursor {
  display: inline-block;
  color: var(--green-light);
  font-style: normal;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(149, 213, 178, 0.25);
  border: 1px solid var(--green-pale);
  padding: 0.35em 0.8em;
  border-radius: 100px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-mid), transparent);
  animation: scrollbar 2s ease-in-out infinite;
}
@keyframes scrollbar { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.5; } }

/* ─── URGENCY ────────────────────────────────────────────────── */
.urgency {
  padding: 6rem 0;
  background: var(--warm-white);
}
.urgency-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.urgency-left { padding-top: 1rem; }
.urgency-left h2 { margin: 0.5rem 0 1rem; }
.urgency-left p { margin-bottom: 2rem; }
.urgency-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.urgency-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.urgency-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.u-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.urgency-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.urgency-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--green-ultra);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-visual-inner {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.blob-bg {
  position: absolute;
  inset: 0;
}
.blob-bg svg {
  width: 100%;
  height: 100%;
  animation: blobmorph 10s ease-in-out infinite;
}
.blob-bg path { fill: var(--green-soft); opacity: 0.35; }
@keyframes blobmorph {
  0%,100% { d: path("M44.7,-62.5C57.1,-53.6,65.7,-39.1,70.2,-23.4C74.7,-7.7,75.1,9.3,69.3,23.8C63.5,38.2,51.5,50.1,37.7,57.5C23.9,64.9,8.4,67.7,-7.4,66.7C-23.2,65.7,-39.3,60.8,-51.5,51.1C-63.8,41.4,-72.3,26.9,-74.1,11.3C-75.9,-4.4,-71.1,-21.2,-61.8,-34.3C-52.6,-47.4,-38.9,-56.8,-24.5,-63.8C-10.1,-70.7,4.9,-75.3,19.2,-72.2C33.5,-69.2,32.3,-71.5,44.7,-62.5Z"); }
  50%  { d: path("M50,-68C63.8,-57.9,73.4,-43,76.2,-27C79,-11,75,6.2,68.2,21.2C61.4,36.2,52,49.1,39.7,57.3C27.4,65.5,12.2,69.1,-3.2,68.1C-18.6,67.1,-34.8,61.5,-47.4,51.6C-60,41.7,-69,27.4,-72.1,11.9C-75.2,-3.6,-72.4,-20.3,-64.8,-34.2C-57.2,-48.1,-44.8,-59.2,-31,-66C-17.2,-72.8,-2.1,-75.3,12.1,-72.1C26.3,-68.9,36.2,-78.1,50,-68Z"); }
}

.about-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
  height: 100%;
  align-content: center;
}
.a-stat {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}
.a-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-forest);
  line-height: 1;
}
.a-plus { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--green-forest); }
.a-stat p { font-size: 0.75rem; color: var(--text-light); margin-top: 0.3rem; line-height: 1.4; }

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.value-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.chip {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--green-pale);
  padding: 0.4em 0.9em;
  border-radius: 100px;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding: 6rem 0;
  background: var(--warm-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-soft), var(--green-forest));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-soft); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.svc-wide-content { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.svc-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.svc-icon {
  width: 52px; height: 52px;
  color: var(--green-forest);
  margin-bottom: 1.2rem;
}
.svc-card--wide .svc-icon { width: 64px; height: 64px; margin-bottom: 0; flex-shrink: 0; }
.svc-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--green-ultra);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1.5px solid rgba(64,145,108,0.18);
}
.svc-icon-wrap .svc-icon { width: 52px; height: 52px; margin: 0; }
.svc-card h3 { margin-bottom: 0.75rem; }
.svc-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.7; }
.svc-list { margin-bottom: 1.5rem; }
.svc-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  padding-left: 1.2em;
  position: relative;
}
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; font-size: 0.75rem; }
.svc-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-forest);
  transition: gap 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}
.svc-link:hover { color: var(--green-dark); gap: 0.5em; }
.svc-list-link { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--green-mid); transition: color 0.2s; }
.svc-list-link:hover { color: var(--green-forest); }
.svc-rating-note { font-size: 0.82rem; color: var(--text-light); margin-top: 0.75rem; line-height: 1.5; }
.svc-rating-note a { color: var(--green-forest); font-weight: 600; text-decoration: none; }
.svc-rating-note a:hover { text-decoration: underline; }

/* ─── PROCESS ─────────────────────────────────────────────────── */
.process {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--warm-white), var(--green-ultra));
}
.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--green-pale), var(--green-soft), var(--green-pale));
  z-index: 0;
}
.process-step { position: relative; text-align: center; }
.step-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-forest);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.step-body h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.step-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.step-time {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  padding: 0.3em 0.8em;
  border-radius: 100px;
}

/* ─── WHY US ──────────────────────────────────────────────────── */
.why-us {
  padding: 6rem 0;
  background: var(--green-passaggio);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.why-text h2 { margin-bottom: 1rem; }
.why-text .lead { margin-bottom: 2rem; }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.wp-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.why-point h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.why-point p { font-size: 0.875rem; color: var(--text-light); }

.brand-teaser-inline {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.brand-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-forest);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.25s ease, color 0.2s ease;
}
.brand-teaser-link:hover {
  color: var(--green-dark);
  gap: 0.6rem;
}

.why-visual { display: flex; justify-content: center; align-items: center; }
.float-badges {
  position: relative;
  width: 360px;
  height: 360px;
}
.fb-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 110px; height: 110px;
  background: var(--green-forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45,106,79,0.35);
  z-index: 2;
}
.fb-core { color: #fff; font-family: var(--font-head); }
.fb-core span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.fb-core strong { display: block; font-size: 1.4rem; font-weight: 800; }
.fb-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 8s ease-in-out infinite;
}
.fb-icon { font-size: 1.1rem; }
.fb-top-left  { top: 10%; left: -5%; animation-delay: 0s; }
.fb-top-right { top: 10%; right: -5%; animation-delay: -2s; }
.fb-bot-left  { bottom: 10%; left: -5%; animation-delay: -4s; }
.fb-bot-right { bottom: 10%; right: -5%; animation-delay: -6s; }

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
.social-proof {
  padding: 6rem 0;
  background: var(--green-forest);
  color: #fff;
}
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}
.pn-value {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pn-value span:last-child { font-size: 2rem; }
.pn-stat p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(4px);
}
.testi-quote {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--green-soft);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -1rem;
}
.testi-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--green-mid);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: #fff; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ─── ESG INSIGHT ────────────────────────────────────────────── */
.esg-insight {
  padding: 5rem 0;
  background: var(--green-dark);
}
.insight-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3.5rem;
  align-items: center;
}
.insight-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(149,213,178,0.15);
  padding: 0.3em 0.9em;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.insight-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.insight-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.insight-content p strong { color: #fff; }
.insight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-soft);
  text-decoration: none;
  transition: gap 0.25s ease;
}
.insight-cta:hover { gap: 0.7rem; color: #fff; }

.insight-visual { flex-shrink: 0; }
.insight-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  min-width: 220px;
  text-align: center;
}
.ic-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.5rem;
}
.ic-rate {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.ic-rate--before { color: rgba(255,255,255,0.45); text-decoration: line-through; }
.ic-rate--after { color: var(--green-soft); }
.ic-arrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-soft);
  padding: 0.85rem 0;
}
.ic-top { margin-bottom: 0.25rem; }
.ic-bottom { margin-top: 0.25rem; }

@media (max-width: 768px) {
  .insight-inner { grid-template-columns: 1fr; gap: 2rem; }
  .insight-card { min-width: 0; }
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 6rem 0;
  background: var(--warm-white);
}
.faq .section-header { text-align: left; max-width: none; margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 860px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--green-soft); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-forest); }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-ultra);
  color: var(--green-forest);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--green-forest); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--green-ultra);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-promises { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cp-item {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-direct { display: flex; flex-direction: column; gap: 0.6rem; }
.ct-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-forest);
  transition: color 0.2s;
}
.ct-link:hover { color: var(--green-dark); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; gap: 1rem; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.req { color: var(--green-forest); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; }
.form-privacy { margin-bottom: 1.5rem; }
.privacy-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; }
.privacy-label input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--green-forest); }
.privacy-label span { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.privacy-label a { color: var(--green-forest); text-decoration: underline; }
.form-feedback {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
}
.form-feedback.success { color: var(--green-mid); }
.form-feedback.error { color: #c0392b; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-hex { color: var(--green-soft); }
.footer-brand .logo-text { color: rgba(255,255,255,0.9); }
.footer-brand .logo-text strong { color: var(--green-soft); }
.footer-brand .logo-img { filter: brightness(0) invert(1); opacity: 0.88; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-social { margin-top: 1.25rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
  font-style: italic;
}
.social-link:hover { background: var(--green-mid); color: #fff; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .urgency-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-inner { max-width: 320px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-card--wide { grid-template-columns: auto 1fr; }
  .svc-card--wide .svc-link { grid-column: 1 / -1; }
  .svc-wide-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  /* rimuovi backdrop-filter prima che crei un containing block per i fixed children */
  .navbar.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 9999;
    padding: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 10000; position: relative; }
  .urgency-cards-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--wide { display: block; }
  .svc-card--wide .svc-icon { margin-bottom: 1rem; }
  .svc-wide-content { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .process-track::before { display: none; }
  .process-step { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; }
  .step-bubble { flex-shrink: 0; margin: 0; }
  .proof-numbers { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .urgency-layout { gap: 2rem; }
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .urgency-cards-grid { grid-template-columns: 1fr; }
  .proof-numbers { grid-template-columns: 1fr 1fr; }
  .pn-value { font-size: 2.2rem; }
}

/* ─── ACCESSIBILITY ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green-forest);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .orb { animation: none; }
}
