/* =========================================================
   Fluxo Energy — Design System v2
   Energia · Premium editorial style
   ========================================================= */

:root {
  /* Brand */
  --primary: #00B1D3;
  --primary-600: #009BB8;
  --primary-700: #00839B;
  --primary-800: #006B80;
  --primary-50: #EAFBFF;
  --primary-100: #C9F2F8;
  --primary-200: #92E2EE;

  --accent: #00AA4F;
  --accent-hi: #D7F3E4;
  --accent-deep: #007A39;

  --ink: #2F4045;
  --ink-2: #3C4B50;
  --ink-3: #5C6D72;
  --muted: #718289;
  --muted-2: #96A9AF;
  --line: #D7EEF2;
  --line-2: #EEF9FB;

  --bg: #FFFFFF;
  --bg-soft: #F4FCFD;
  --bg-cream: #FAFEFE;

  /* Legacy aliases (pagine privacy / condizioni) */
  --text-dark: var(--ink);
  --text-secondary: var(--muted);
  --text-muted: var(--muted-2);
  --bg-page: var(--bg);
  --border: var(--line);
  --secondary: #00AA4F;

  --grad-primary: linear-gradient(135deg, #006B80 0%, #009BB8 45%, #00B1D3 100%);
  --grad-accent: linear-gradient(120deg, #63D7A0 0%, #00AA4F 45%, #007A39 100%);
  --grad-aurora: radial-gradient(60% 80% at 20% 0%, rgba(0,177,211,.24) 0%, transparent 60%),
                 radial-gradient(50% 60% at 90% 20%, rgba(255,255,255,.12) 0%, transparent 60%),
                 radial-gradient(70% 80% at 50% 100%, rgba(72,72,73,.10) 0%, transparent 60%),
                 linear-gradient(180deg, #006B80 0%, #00839B 50%, #00B1D3 100%);

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(11,18,32,.04);
  --shadow-sm: 0 8px 24px rgba(53,95,105,.08);
  --shadow-md: 0 18px 40px rgba(53,95,105,.12);
  --shadow-lg: 0 28px 70px rgba(53,95,105,.14);
  --shadow-glow: 0 20px 60px -12px rgba(0,177,211,.34);
  --shadow-lime: 0 18px 40px -10px rgba(0,170,79,.26);

  --gutter: 28px;
  --section: 120px;
  --maxw: 1240px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0,177,211,.08), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F4FCFD 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}

a { color: inherit; }

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

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

/* =========================================================
   Utilities
   ========================================================= */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 8px 14px; border-radius: var(--r-pill);
}
.eyebrow-light {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-700);
  box-shadow: 0 0 0 4px rgba(0,177,211,.18);
}

.divider-line {
  width: 56px; height: 3px;
  background: var(--grad-accent);
  border-radius: 4px;
  margin: 20px 0 28px;
}

/* =========================================================
   Header
   ========================================================= */
.main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.84);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,177,211,.18);
  padding: 14px 24px;
}
.header-container {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 42px; width: auto; object-fit: contain; display: block; }
.logo-icon { width: 40px; height: 40px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.22)); }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.logo-text span { color: var(--primary-800); }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 2px; background: var(--primary); border-radius: 2px;
  transition: right .25s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { right: 0; }

.header-cta .btn-primary { padding: 11px 22px; font-size: 14px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn-primary, .btn-secondary, .btn-ghost {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-lime);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgba(0,177,211,.34);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.72);
  color: var(--primary);
  border: 1.5px solid var(--primary-100);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--primary);
}

.btn-arrow { transition: transform .25s var(--ease); }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================
   Hero — aurora mesh
   ========================================================= */
.hero {
  position: relative;
  min-height: 840px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  display: flex; align-items: center;
  padding: 0;
}

/* Slider implementation */
.hero-slider {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-slides {
  position: relative; width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease, transform 1.2s ease;
  display: flex; align-items: center;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1; visibility: visible;
  transform: scale(1);
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,107,128,.82) 0%, rgba(0,131,155,.48) 58%, rgba(0,177,211,.08) 100%);
  z-index: 1;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
}

.hero-slider-dots {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 10;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: all .3s var(--ease);
}
.hero-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(0,177,211,.7);
}

.hero::before {
  content: '';
  position: absolute; inset: -20% -10% -10% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10) 0, transparent 20%),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,.06) 0, transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(0,177,211,.28) 0, transparent 35%);
  filter: blur(40px);
  z-index: -1;
  animation: aurora 18s ease-in-out infinite alternate;
}

@keyframes aurora {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-4%, 3%) scale(1.05); }
  100% { transform: translate(3%,-2%) scale(.98); }
}

/* =========================================================
   Home redesign — portal editoriale Action
   ========================================================= */
.pl-home { --red-soft: #EAFBFF; --red-warm: #F4FCFD; --red-highlight: #C9F2F8; }
.pl-home { overflow: hidden; background: #fff; color: var(--ink); }
.pl-home em { color: var(--primary-700); font-style: normal; }
.pl-hero { min-height: 680px; position: relative; display: flex; align-items: center; background: #3d7f8c; color: #fff; isolation: isolate; }
.pl-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 18% 25%, rgba(255,255,255,.14), transparent 28%), linear-gradient(110deg, #285761 0%, #4a94a2 62%, #93d7df 100%); }
.pl-hero-copy { width: min(51%, 700px); margin-left: max(6vw, calc((100vw - var(--maxw)) / 2)); padding: 90px 0 100px; position: relative; z-index: 2; }
.pl-hero h1 { max-width: 650px; margin: 22px 0; font-size: clamp(48px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; color: #fff; }
.pl-hero h1 em { color: #d3f5f7; }
.pl-hero-copy > p { max-width: 510px; margin: 0 0 34px; color: rgba(255,255,255,.86); font-size: 19px; line-height: 1.6; }
.pl-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.pl-text-link { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 4px; }
.pl-text-link span { margin-left: 8px; }
.pl-hero-art { position: absolute; right: 5vw; bottom: 0; width: min(43vw, 650px); height: 92%; z-index: 1; }
.pl-hero-art::after { content: ''; position: absolute; inset: 6% -12% 0 10%; border-radius: 50% 50% 0 0; background: rgba(255,255,255,.13); z-index: -1; }
.pl-hero-art img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; border-radius: 64px 64px 64px 170px; clip-path: inset(0 round 64px 64px 64px 170px); mix-blend-mode: multiply; filter: saturate(.9) contrast(1.02); }
.pl-hero-badge { position: absolute; left: 2%; bottom: 18%; display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: #fff; color: var(--ink); box-shadow: 0 18px 50px rgba(23,56,62,.25); border-radius: 12px; transform: rotate(-4deg); }
.pl-hero-badge strong { color: var(--primary-700); font-size: 28px; line-height: 1; }.pl-hero-badge span { font-size: 12px; font-weight: 700; line-height: 1.15; }
.pl-hero-bottom { position: absolute; bottom: 26px; left: max(6vw, calc((100vw - var(--maxw)) / 2)); z-index: 3; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }.pl-scroll-line { width: 48px; height: 1px; background: rgba(255,255,255,.55); }
.pl-section-intro { margin-bottom: 42px; }.pl-section-intro h2 { margin: 16px 0 0; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.03; letter-spacing: -.045em; }.pl-section-intro p { max-width: 520px; margin: 20px auto 0; color: var(--muted); line-height: 1.65; font-size: 17px; }.pl-centered { text-align: center; }
.pl-audience { padding-top: 110px; padding-bottom: 110px; }.pl-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.pl-audience-card { min-height: 365px; position: relative; overflow: hidden; padding: 42px; display: flex; align-items: flex-start; color: var(--ink); text-decoration: none; border-radius: 20px; }.pl-audience-card > div { position: relative; z-index: 2; max-width: 48%; }.pl-audience-card h3 { margin: 18px 0 52px; font-size: clamp(30px, 2.6vw, 40px); line-height: 1; letter-spacing: -.05em; }.pl-audience-card img { position: absolute; right: 24px; bottom: 24px; width: 44%; height: calc(100% - 48px); object-fit: cover; object-position: center; border-radius: 42px 42px 42px 120px; clip-path: inset(0 round 42px 42px 42px 120px); box-shadow: 0 16px 30px rgba(23,56,62,.16); transition: transform .35s ease; }.pl-audience-card:hover img { transform: scale(1.04) rotate(1deg); }.pl-audience-home { background: #dff4f5; }.pl-audience-business { background: #f2eeda; }.pl-card-kicker { color: var(--primary-800); font-size: 11px; font-weight: 800; letter-spacing: .14em; }.pl-arrow { font-size: 14px; font-weight: 800; }.pl-arrow b { display: inline-flex; margin-left: 8px; font-size: 19px; }
.pl-offer-band { padding: 90px 0; background: #f3f8f8; }.pl-offer-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }.pl-offer-visual { height: 420px; overflow: hidden; border-radius: 22px; background: #d8edf0; }.pl-offer-visual img { width: 100%; height: 100%; object-fit: cover; }.pl-offer-copy h2 { max-width: 600px; margin: 18px 0; font-size: clamp(35px, 4vw, 56px); line-height: 1.03; letter-spacing: -.05em; }.pl-offer-copy p { max-width: 520px; margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }.btn-dark { display: inline-flex; gap: 16px; align-items: center; padding: 15px 22px; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; transition: transform .2s ease, background .2s ease; }.btn-dark:hover { transform: translateY(-2px); background: var(--primary-800); }.btn-dark span { font-size: 19px; }
.pl-services { padding-top: 115px; padding-bottom: 120px; }.pl-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.pl-service-card { position: relative; min-height: 430px; overflow: hidden; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; text-decoration: none; border-radius: 18px; background: var(--ink); isolation: isolate; }.pl-service-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(26,45,49,.96) 0%, rgba(34,65,71,.32) 60%, transparent 100%); }.pl-service-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }.pl-service-card:hover img { transform: scale(1.07); }.pl-service-card > span { position: absolute; top: 25px; right: 25px; font-weight: 700; color: rgba(255,255,255,.75); }.pl-service-card h3 { margin: 10px 0 8px; font-size: 34px; letter-spacing: -.04em; }.pl-service-card p { max-width: 260px; margin: 0 0 18px; color: rgba(255,255,255,.78); line-height: 1.45; }.pl-service-card b { font-size: 13px; color: #c9f0f2; }
.pl-story { padding: 110px 0; background: #e4f4f4; }.pl-story-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }.pl-story-copy h2 { margin: 18px 0 22px; font-size: clamp(36px, 4vw, 56px); line-height: 1.03; letter-spacing: -.05em; }.pl-story-copy p { max-width: 500px; margin: 0 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }.pl-story-image { height: 475px; position: relative; }.pl-story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }.pl-story-note { position: absolute; left: -35px; bottom: 28px; padding: 18px 22px; background: #fff; color: var(--ink); border-radius: 12px; box-shadow: var(--shadow-md); font-size: 13px; line-height: 1.4; }.pl-story-note strong { color: var(--primary-800); }
.pl-steps { padding-top: 110px; padding-bottom: 110px; }.pl-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }.pl-step { padding: 27px 30px 10px 0; border-right: 1px solid var(--line); }.pl-step + .pl-step { padding-left: 30px; }.pl-step:last-child { border-right: 0; }.pl-step > span { color: var(--primary-700); font-size: 14px; font-weight: 800; }.pl-step h3 { margin: 38px 0 10px; font-size: 25px; letter-spacing: -.03em; }.pl-step p { max-width: 250px; margin: 0; color: var(--muted); line-height: 1.55; }
.pl-final-cta { padding: 110px 0 125px; background: var(--ink); color: #fff; text-align: center; }.pl-final-cta h2 { margin: 20px 0 16px; font-size: clamp(43px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; }.pl-final-cta h2 em { color: #c7f1f3; }.pl-final-cta p { margin: 0 0 30px; color: rgba(255,255,255,.75); font-size: 17px; }
@media (max-width: 900px) { .pl-hero { min-height: 760px; align-items: flex-start; }.pl-hero-copy { width: auto; margin: 0; padding: 80px 24px 0; }.pl-hero h1 { font-size: clamp(45px, 11vw, 70px); }.pl-hero-art { right: -7%; width: 75vw; height: 48%; }.pl-hero-bottom { left: 24px; bottom: 22px; }.pl-audience-grid, .pl-offer-layout, .pl-story-layout { grid-template-columns: 1fr; gap: 35px; }.pl-audience { padding-top: 80px; padding-bottom: 80px; }.pl-audience-card { min-height: 320px; }.pl-offer-layout { gap: 35px; }.pl-offer-visual { height: 330px; }.pl-services, .pl-story, .pl-steps { padding-top: 80px; padding-bottom: 80px; }.pl-service-grid { grid-template-columns: 1fr 1fr; }.pl-service-card:last-child { grid-column: span 2; }.pl-story-image { height: 380px; }.pl-step-grid { grid-template-columns: 1fr; }.pl-step, .pl-step + .pl-step { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }.pl-step h3 { margin-top: 18px; } }
@media (max-width: 560px) { .pl-hero { min-height: 700px; }.pl-hero-copy { padding-top: 58px; }.pl-hero-copy > p { font-size: 16px; }.pl-hero-art { width: 92vw; right: -16%; height: 43%; }.pl-hero-art img { border-radius: 34px 34px 34px 90px; clip-path: inset(0 round 34px 34px 34px 90px); }.pl-hero-badge { left: 4%; bottom: 16%; }.pl-audience-card { min-height: 300px; padding: 28px; }.pl-audience-card > div { max-width: 48%; }.pl-audience-card img { right: 16px; bottom: 16px; width: 44%; height: calc(100% - 32px); border-radius: 30px 30px 30px 80px; clip-path: inset(0 round 30px 30px 30px 80px); }.pl-service-grid { grid-template-columns: 1fr; }.pl-service-card, .pl-service-card:last-child { grid-column: auto; min-height: 360px; }.pl-story-note { left: 12px; bottom: 18px; }.pl-story-image { height: 320px; }.pl-offer-band { padding: 65px 0; } }

/* Explicit red accents used by the redesigned home. */
.pl-hero { background: var(--primary-800); }
.pl-hero::before { background: radial-gradient(circle at 18% 25%, rgba(255,255,255,.14), transparent 28%), linear-gradient(110deg, #006B80 0%, #00839B 62%, #63D7E8 100%); }
.pl-hero h1 em { color: #D7F3E4; }
.pl-audience-home { background: var(--red-soft); }
.pl-audience-business { background: #f5eee6; }
.pl-service-card b { color: var(--red-highlight); }
.pl-story { background: var(--red-warm); }
.pl-final-cta h2 em { color: var(--red-highlight); }

/* Chi siamo — stesso linguaggio visivo della home, contenuti invariati. */
.pl-about-page { background: #fff; overflow: hidden; }
.pl-about-hero { min-height: 560px !important; background: var(--primary-800); }
.pl-about-hero::before { background: linear-gradient(100deg, rgba(0,70,84,.9) 0%, rgba(0,107,128,.72) 52%, rgba(0,177,211,.18) 100%); }
.pl-about-hero .hero-slide-bg { filter: saturate(.78) contrast(1.02); }
.pl-about-hero .hero-content { max-width: 720px; padding: 40px 0; }
.pl-about-hero .hero h1, .pl-about-hero h1 { font-size: clamp(46px, 6vw, 78px); letter-spacing: -.055em; }
.pl-about-hero h1 .accent { background: linear-gradient(120deg, #fff 0%, #C9F2F8 75%); }
.pl-about-hero h1 .accent::after { background: rgba(0,177,211,.34); }
.pl-about-hero .lede { max-width: 650px; }
.pl-about-page > .section { padding-top: 105px; padding-bottom: 105px; }
.pl-about-page > .section:nth-of-type(2) { background: #fffafa; }
.pl-about-page .split { gap: 80px; }
.pl-about-page .split-visual { min-height: 470px; border-radius: 22px; overflow: hidden; box-shadow: 0 22px 60px rgba(0,177,211,.12); }
.pl-about-page .split-visual img { transition: transform .5s var(--ease); }
.pl-about-page .split-visual:hover img { transform: scale(1.04); }
.pl-about-page .section-title { font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -.05em; }
.pl-about-page .split-tile { border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 26px rgba(0,177,211,.05); }
.pl-about-page .split-tile:hover { border-color: var(--primary-200); box-shadow: 0 16px 32px rgba(0,177,211,.1); }
.pl-about-page .stat-strip { background: var(--ink); border-top: 0; border-bottom: 0; }
.pl-about-page .stat-strip .n { color: #C9F2F8; }
.pl-about-page .features { background: #fff; }
.pl-about-page .section-head { max-width: 760px; margin-left: auto; margin-right: auto; }
.pl-about-page .features-staggered { gap: 28px; }
.pl-about-page .stagger-item { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 12px 35px rgba(0,177,211,.06); background: #fff; }
.pl-about-page .stagger-item:nth-child(even) { background: #fff8f7; }
.pl-about-page .stagger-visual { min-height: 280px; }
.pl-about-page .stagger-content { padding: 30px 32px 34px; }
.pl-about-page .stagger-content h4 { font-size: 28px; margin-top: 16px; }
.pl-about-page .stagger-content p { color: var(--muted); }
.pl-about-page .quote-banner { margin: 0; padding: 110px 24px; background: linear-gradient(135deg, #007A39 0%, #00AA4F 58%, #63D7A0 100%); }
.pl-about-page .quote-banner h2 { max-width: 920px; font-size: clamp(32px, 4.5vw, 54px); letter-spacing: -.045em; }
@media (max-width: 900px) {
  .pl-about-page .split { gap: 42px; }
  .pl-about-page > .section { padding-top: 78px; padding-bottom: 78px; }
  .pl-about-page .split-visual { min-height: 360px; }
}
@media (max-width: 560px) {
  .pl-about-hero { min-height: 620px !important; }
  .pl-about-hero .hero-content { padding: 25px 0; }
  .pl-about-page .split-visual { min-height: 300px; }
  .pl-about-page .stagger-content { padding: 24px; }
  .pl-about-page .quote-banner { padding: 78px 24px; }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative; z-index: 5;
  pointer-events: none;
}
.hero .container > * { pointer-events: auto; }

.hero-content { max-width: 640px; }

.hero h1 {
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 800;
  color: #fff;
  margin: 24px 0 24px;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 .accent {
  position: relative;
  background: linear-gradient(120deg, #FFFFFF 0%, #C7F1F8 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px;
  background: rgba(0,177,211,.22); border-radius: 4px; z-index: -1;
}

.hero p.lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 0 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats .stat { color: #fff; }
.hero-stats .stat .n {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-stats .stat .l {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 4px;
}

/* Hero visual right side */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1; max-width: 520px; margin: 0 auto;
}

.bolt-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  color: #fff;
  width: 320px;
  height: 200px;
  animation: float 7s ease-in-out infinite;
}
.bolt-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.bolt-card .l {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 6px;
}
.bolt-card .v {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -.02em;
}
.bolt-card .u {
  font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px;
}

.bolt-1 { top: 8%; left: 6%; animation-delay: -1s; }
.bolt-2 { bottom: 18%; right: 0%; animation-delay: -3s; }
.bolt-3 { bottom: 6%; left: 14%; animation-delay: -5s; }

.bolt-orb {
  position: absolute; inset: 18% 18% 18% 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45) 0%, rgba(255,255,255,.0) 60%),
              radial-gradient(circle at 70% 70%, rgba(161,161,170,.45) 0%, rgba(161,161,170,.0) 65%),
              conic-gradient(from 220deg at 50% 50%, rgba(255,255,255,.20), rgba(113,113,122,.30), rgba(255,255,255,.20));
  filter: blur(6px);
  box-shadow: inset 0 0 80px rgba(255,255,255,.1), 0 30px 80px rgba(0,0,0,.35);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.bolt-orb::after {
  content: ''; position: absolute; inset: 22%;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  display: flex;
}
.bolt-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.bolt-icon svg { width: 110px; height: 110px; filter: drop-shadow(0 10px 30px rgba(0,0,0,.35)); }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; z-index: 2;
}
.hero-wave svg { width: 100%; height: 100%; }
.hero-wave path { fill: #fff; }

/* =========================================================
   Trust marquee
   ========================================================= */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
}
.trust-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink-3); font-size: 14px; font-weight: 600;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); }
.trust-item::after {
  content: ''; display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--muted-2);
  margin-left: 56px;
}

/* =========================================================
   Section titles
   ========================================================= */
.section {
  padding: var(--section) 0;
}
.section-head {
  max-width: 760px; margin: 0 auto 64px; text-align: center;
}
.section-head.left { margin: 0 0 56px; text-align: left; }
.section-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 16px 0 18px;
}
.section-title .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title .underline {
  position: relative; display: inline-block;
  color: var(--primary);
}
.section-title .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 10px;
  background: var(--primary-50); border-radius: 4px; z-index: -1;
}
.section-sub {
  font-size: 18px; color: var(--muted); margin: 0; line-height: 1.65;
}
.section-on-dark .section-title { color: #fff; }
.section-on-dark .section-title .accent {
  background: linear-gradient(120deg, #FFFFFF 0%, #C7F1F8 75%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-on-dark .section-sub { color: rgba(255,255,255,.78); }

/* =========================================================
   Feature cards
   ========================================================= */
.features {
  background:
    radial-gradient(circle at 0% 0%, rgba(0,177,211,.10), transparent 22%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
}
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(242,251,253,.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
  text-align: center;
}
.feature-card::before {
  content: '';
  position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,177,211,.18);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
  border: 1px solid var(--primary-100);
  color: var(--primary);
}
.feature-icon.warm {
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
  border-color: var(--primary-100);
  color: var(--accent-deep);
}
.feature-icon svg { width: 30px; height: 30px; }

.feature-card h4 {
  font-size: 22px; font-weight: 700; color: var(--ink);
  margin: 0 0 12px; letter-spacing: -.02em;
}
.feature-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* =========================================================
   How it works
   ========================================================= */
.how-it-works {
  position: relative;
  background: var(--grad-primary);
  color: #fff;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.16) 0%, transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(0,177,211,.18) 0%, transparent 40%);
  pointer-events: none;
}
.how-it-works > .container { position: relative; z-index: 2; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.hiw-step {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.hiw-step:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.4);
}
.hiw-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--primary-800);
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.5);
}
.hiw-step h5 {
  font-size: 17px; font-weight: 700; color: #fff;
  margin: 0 0 10px;
}
.hiw-step p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   Split section (perché GR)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Staggered Features */
.features-staggered {
  display: flex; flex-direction: column; gap: 100px;
}
.stagger-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.stagger-item:nth-child(even) { direction: rtl; }
.stagger-item:nth-child(even) > * { direction: ltr; }

.stagger-visual {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.stagger-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Vertical Timeline */
.timeline {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,.1); transform: translateX(-50%);
}
.timeline-item {
  position: relative; margin-bottom: 60px; width: 50%;
  padding: 0 40px;
}
.timeline-item:nth-child(odd) { margin-left: 50%; }
.timeline-item:nth-child(even) { text-align: right; }

.timeline-dot {
  position: absolute; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff;
  border: 4px solid rgba(255,255,255,.22);
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot { left: -12px; }
.timeline-item:nth-child(even) .timeline-dot { right: -12px; }

.timeline-content {
  background: rgba(255,255,255,.05);
  padding: 30px; border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s var(--ease);
}
.timeline-item:hover .timeline-content { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.timeline-content h5 { color: #fff; font-size: 17px; margin: 0 0 10px; }
.timeline-content p { color: rgba(255,255,255,.78); line-height: 1.6; margin: 0; }
.split-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
}
.split-tile {
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  border-radius: var(--r-md);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.split-tile:hover { transform: translateY(-3px); border-color: var(--primary-100); }
.split-tile .ico {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary-100);
}
.split-tile .ico svg { width: 18px; height: 18px; }
.split-tile.warm .ico { color: var(--accent-deep); border-color: var(--line); background: var(--bg-soft); }
.split-tile h5 { font-size: 16px; margin: 0 0 4px; color: var(--ink); }
.split-tile p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

.split-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.svc-disc {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,177,211,.16), transparent 60%),
              linear-gradient(135deg, #F4FCFD 0%, #C9F2F8 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 60px rgba(0,0,0,.05), 0 30px 60px -20px rgba(0,0,0,.18);
}
.svc-disc::before {
  content: ''; position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(0,0,0,.22);
  animation: spin 40s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0); } to { transform: rotate(360deg); }
}
.svc-core {
  text-align: center; position: relative; z-index: 2;
}
.svc-core .ico {
  width: 140px; height: 140px; margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.25);
}
.svc-core .ico img { width: 100%; height: 100%; object-fit: cover; }
.svc-core .ico svg { width: 56px; height: 56px; color: #fff; }
.svc-core .t {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--primary); letter-spacing: -.02em;
}
.svc-core .s { font-size: 14px; color: var(--muted); margin-top: 6px; }

.svc-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.svc-chip .ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50); color: var(--primary);
}
.svc-chip .ico svg { width: 16px; height: 16px; }
.svc-chip .l { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.svc-chip .v { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink); }

.svc-chip.tl { top: 4%; left: -6%; animation: float 7s ease-in-out infinite; }
.svc-chip.br { bottom: 6%; right: -8%; animation: float 7s ease-in-out -3s infinite; }
.svc-chip.bl { bottom: 30%; left: -8%; animation: float 7s ease-in-out -5s infinite; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews {
  background: var(--bg-soft);
  position: relative;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: stretch;
}
.rv-panel {
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.rv-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 110%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.rv-panel > * { position: relative; z-index: 2; }
.rv-panel .stars { color: var(--accent-hi); font-size: 22px; letter-spacing: .14em; }
.rv-panel h3 { color: #fff; font-size: 30px; margin: 18px 0 12px; letter-spacing: -.02em; }
.rv-panel p { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; line-height: 1.6; }
.rv-panel .big {
  font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 1;
  color: #fff;
  letter-spacing: -.04em;
  margin-top: 32px;
}
.rv-panel .big small { font-size: 18px; font-weight: 600; color: rgba(255,255,255,.7); margin-left: 6px; }

.rv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rv-card {
  background: linear-gradient(180deg, #fff 0%, #F9FDFE 100%);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.rv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rv-card .quote { color: var(--primary-100); font-size: 36px; line-height: 1; font-family: serif; }
.rv-card .stars { color: var(--primary-700); font-size: 14px; letter-spacing: .1em; margin: 6px 0 12px; }
.rv-card h5 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.rv-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }
.rv-card .author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.rv-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.rv-card .author-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.rv-card .author-meta { font-size: 12px; color: var(--muted); }

/* =========================================================
   CTA final
   ========================================================= */
.cta-final {
  position: relative;
  background: var(--grad-primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 110px 0;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(0,177,211,.22), transparent 40%);
  pointer-events: none;
}
.cta-final > .container { position: relative; z-index: 2; max-width: 760px; }
.cta-final h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff; margin: 0 0 18px;
  letter-spacing: -.03em;
}
.cta-final p {
  font-size: 19px;
  color: rgba(255,255,255,.85);
  margin: 0 0 40px;
}
.cta-final .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.main-footer {
  background: linear-gradient(180deg, #424244 0%, #303033 100%);
  color: rgba(255,255,255,.75);
  padding: 90px 24px 32px;
  position: relative;
  overflow: hidden;
}
.main-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-container {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo img {
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 320px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--primary); }

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff; font-size: 14px;
  text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; margin: 0 0 22px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-col a:hover { color: var(--primary); transform: translateX(3px); }

.footer-bottom {
  max-width: var(--maxw); margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}

/* =========================================================
   Page hero (interior)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--grad-aurora);
  color: #fff;
  padding: 120px 24px 140px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::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: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 {
  font-size: clamp(46px, 7vw, 80px);
  color: #fff;
  margin: 22px 0 18px;
  letter-spacing: -.03em;
  line-height: 1.02;
}
.page-hero h1 .accent {
  background: linear-gradient(120deg, #FFFFFF, #C7F1F8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p {
  font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0 auto; max-width: 620px;
}
.page-hero .wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 70px; z-index: 2; }
.page-hero .wave svg { width: 100%; height: 100%; }
.page-hero .wave path { fill: #fff; }

/* =========================================================
   Offers
   ========================================================= */
.tab-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  padding: 8px;
  border-radius: var(--r-pill);
  max-width: max-content;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--line);
}
.tab-btn {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600; font-size: 14px;
  color: var(--muted);
  transition: all .25s var(--ease);
  font-family: var(--font-body);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active {
  background: #fff; color: var(--primary-800);
  box-shadow: var(--shadow-sm);
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.offers-grid .offer-card {
  flex: 0 1 calc((100% - (var(--offer-cols) - 1) * 24px) / var(--offer-cols));
  min-width: 320px;
  max-width: 420px;
}
@media (max-width: 720px) {
  .offers-grid .offer-card { flex-basis: 100%; max-width: none; }
}

.offer-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.offer-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: var(--ribbon-color, var(--primary));
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.offer-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0,177,211,.55), 0 18px 50px -12px rgba(0,177,211,.22);
}
.offer-card.featured::before {
  background: var(--grad-accent);
  height: 6px;
}

.offer-ribbon {
  padding: 28px 32px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ribbon-text, var(--primary));
}
.offer-ribbon .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--ribbon-bg, var(--primary-50));
  color: var(--ribbon-text, var(--primary));
  border-radius: var(--r-pill);
  border: 1px solid var(--ribbon-border, var(--primary-100));
}
.offer-ribbon .pill svg {
  width: 16px; height: 16px; flex: none;
}
.offer-ribbon .pill.warm {
  background: var(--bg-soft); color: var(--accent-deep); border-color: var(--line);
}
.offer-ribbon .lock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--accent-deep);
  background: var(--bg-soft); padding: 6px 12px;
  border-radius: var(--r-pill); border: 1px solid var(--line);
}

.offer-card-body { padding: 12px 32px 32px; display: flex; flex-direction: column; flex: 1; }

.offer-operator {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
}
.offer-operator span {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2);
}
.offer-operator img {
  height: 30px; width: auto; max-width: 130px; object-fit: contain;
  background: var(--ink); padding: 6px 10px; border-radius: 8px;
  box-sizing: content-box;
}

.offer-supplier {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.offer-supplier-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.offer-supplier-logo {
  height: 24px; width: auto; object-fit: contain;
}

.offer-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
  margin: 0 0 6px;
}
.offer-type { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

.price-block {
  background: linear-gradient(180deg, #fff 0%, var(--primary-50) 100%);
  border-radius: var(--r-md);
  padding: 22px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.price-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.price-main {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--primary); letter-spacing: -.02em;
  line-height: 1.1;
}
.price-alt {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 14px; color: var(--muted);
}
.price-locked {
  margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}

.offer-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.offer-features li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-3);
}
.offer-features li svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.offer-features ul { padding: 0; margin: 0; }

.offer-note {
  font-size: 12.5px; color: var(--muted);
  background: var(--bg-soft);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  border-left: 3px solid var(--primary-100);
  line-height: 1.5;
}

.offer-card .btn-primary { width: 100%; margin-top: auto; }

/* =========================================================
   Glossary cards (tariffe)
   ========================================================= */
.glossary {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.glossary-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.glossary-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.glossary-card:hover { transform: translateY(-4px); border-color: var(--primary-100); }
.glossary-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50); color: var(--primary);
  margin-bottom: 18px;
}
.glossary-card .ico svg { width: 22px; height: 22px; }
.glossary-card h4 {
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
}
.glossary-card p {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.6; margin: 0;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50); color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item .ico svg { width: 22px; height: 22px; }
.contact-info-item .label { font-weight: 700; color: var(--ink); margin-bottom: 2px; font-size: 14px; }
.contact-info-item .meta { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.contact-info-item a {
  color: var(--primary); font-weight: 700; font-size: 15px;
  text-decoration: none;
}
.contact-info-item a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-card-cta {
  margin-top: 32px;
  background: var(--grad-primary);
  border-radius: var(--r-xl);
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-card-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.contact-card-cta > * { position: relative; z-index: 2; }
.contact-card-cta .label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.contact-card-cta .name { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 10px 0 16px; }
.contact-card-cta .price {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  background: linear-gradient(120deg, #FFFFFF 0%, #C7F1F8 75%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.02em;
}
.contact-card-cta .price small { font-size: 13px; color: rgba(255,255,255,.75); margin-left: 6px; -webkit-text-fill-color: rgba(255,255,255,.75); }
.contact-card-cta .note { font-size: 13px; color: rgba(255,255,255,.7); margin: 4px 0 20px; }
.contact-card-cta a.see-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff; font-weight: 700;
  padding: 10px 18px; border-radius: var(--r-pill);
  text-decoration: none; font-size: 14px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s var(--ease);
}
.contact-card-cta a.see-all:hover { background: rgba(255,255,255,.22); }

.contact-form {
  background: linear-gradient(180deg, #fff 0%, #FBFEFE 100%);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 28px; margin: 0 0 8px;
  color: var(--ink); letter-spacing: -.02em;
}
.contact-form .sub {
  color: var(--muted); font-size: 15px; margin: 0 0 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,177,211,.18);
}
.form-input.textarea { resize: vertical; min-height: 140px; line-height: 1.5; }

.consent-label {
  display: flex; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  align-items: flex-start; line-height: 1.5;
}
.consent-label a { color: var(--primary); }

.success-msg {
  display: none;
  margin-top: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  color: var(--ink);
}
.success-msg .ico {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary-700);
  color: #fff;
}

/* =========================================================
   About: stats, mission
   ========================================================= */
.stat-strip {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 24px;
}
.stat-strip-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -.04em;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-item .l {
  margin: 12px 0 0;
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}

.quote-banner {
  position: relative;
  background: var(--grad-primary);
  color: #fff;
  text-align: center;
  padding: 110px 24px;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 50%);
}
.quote-banner > * { position: relative; z-index: 2; }
.quote-banner .mark {
  font-family: var(--font-display);
  font-size: 80px; line-height: 0.5;
  color: var(--primary-200);
  margin-bottom: 24px;
}
.quote-banner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 auto 24px;
  max-width: 820px;
  letter-spacing: -.02em;
}
.quote-banner .by { color: rgba(255,255,255,.7); font-size: 16px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero { padding: 100px 0 140px; min-height: auto; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; }
  .features-container { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rv-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  :root { --section: 90px; }
}

@media (max-width: 720px) {
  .features-container { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .rv-cards { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .nav-links { display: none; }
  .header-cta .btn-primary { padding: 9px 16px; font-size: 13px; }
  .hero h1 { font-size: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .split-tiles { grid-template-columns: 1fr; }
  .svc-chip { display: none; }
  :root { --section: 72px; }
  .section-head { margin-bottom: 40px; }
  .tab-bar { padding: 6px; }
  .tab-btn { padding: 9px 16px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1; transform: none;
}


/* Submit button disabled state (shared visual cue) */
#btnSubmit:disabled,
#btnSubmit[disabled] {
  opacity: 0.55;
  filter: grayscale(70%);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
#btnSubmit:disabled:hover,
#btnSubmit[disabled]:hover {
  opacity: 0.55;
  filter: grayscale(70%);
  transform: none;
  box-shadow: none;
}

/* =========================================================
   Homepage refresh — editorial utility layout
   ========================================================= */
.pl-home {
  --home-dark: #063B47;
  --home-dark-2: #082C35;
  --home-cyan: #00B1D3;
  --home-green: #00AA4F;
  background: #F5FBFC;
  color: var(--ink);
}
.pl-home .container { max-width: 1320px; }
.pl-home .section { padding-top: 128px; padding-bottom: 128px; }

.pl-home .pl-hero {
  min-height: 760px;
  padding: 100px max(6vw, 36px) 72px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  background: var(--home-dark);
  isolation: isolate;
}
.pl-home .pl-hero::after {
  content: '';
  position: absolute;
  right: -8%; top: -20%; width: 58vw; height: 90%;
  border: 1px solid rgba(127,235,244,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
  z-index: -1;
}
.pl-home .pl-hero-copy { max-width: 650px; position: relative; z-index: 2; }
.pl-home .pl-hero-copy h1 { max-width: 620px; margin: 26px 0 28px; font-size: clamp(54px, 7vw, 104px); line-height: .91; letter-spacing: -.07em; color: #fff; }
.pl-home .pl-hero-copy h1 em { color: #8CE8F0; }
.pl-home .pl-hero-copy > p { max-width: 520px; color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.65; }
.pl-home .pl-hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.pl-home .btn-primary { background: var(--home-green); box-shadow: 0 18px 45px rgba(0,170,79,.28); }
.pl-home .btn-primary:hover { background: #008F43; }
.pl-home .pl-hero-art { position: relative; min-height: 540px; }
.pl-home .pl-hero-art::before { content: ''; position: absolute; inset: 7% -6% -5% 8%; background: var(--home-cyan); border-radius: 38% 62% 58% 42% / 38% 35% 65% 62%; transform: rotate(7deg); opacity: .85; }
.pl-home .pl-hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 28px 28px 28px 150px; box-shadow: 0 32px 80px rgba(0,0,0,.28); }
.pl-home .pl-hero-badge { left: -32px; bottom: 44px; z-index: 3; padding: 18px 22px; background: #fff; color: var(--home-dark); box-shadow: 0 20px 45px rgba(0,0,0,.18); transform: rotate(-3deg); }
.pl-home .pl-hero-badge strong { color: var(--home-green); }
.pl-home .pl-hero-bottom { bottom: 32px; left: max(6vw, 36px); color: rgba(255,255,255,.6); }
.pl-home .pl-scroll-line { background: var(--home-cyan); }

/* Hero home: proporzioni e allineamento più puliti */
.pl-home .pl-hero {
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 6vw, 96px);
}
.pl-home .pl-hero-copy { max-width: 610px; }
.pl-home .pl-hero-copy h1 { font-size: clamp(52px, 6.5vw, 94px); }
.pl-home .pl-hero-art { min-height: 560px; margin-right: clamp(0px, 2vw, 28px); }
.pl-home .pl-hero-art::before { inset: 5% -5% -4% 7%; opacity: .9; }
.pl-home .pl-hero-art img { border: 8px solid rgba(255,255,255,.12); border-radius: 34px 34px 34px 160px; }
.pl-home .pl-hero-badge { left: -22px; bottom: 34px; }
.pl-home .pl-hero-bottom { left: clamp(24px, 5vw, 72px); }

.pl-home .pl-audience { background: #fff; }
.pl-home .pl-section-intro { max-width: 760px; margin-bottom: 52px; }
.pl-home .pl-section-intro h2 { margin-top: 18px; font-size: clamp(40px, 5vw, 72px); line-height: .98; letter-spacing: -.065em; }
.pl-home .pl-section-intro h2 em { color: var(--home-green); }
.pl-home .pl-audience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.pl-home .pl-audience-card { min-height: 400px; padding: 42px; border-radius: 28px; box-shadow: 0 14px 40px rgba(6,59,71,.08); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pl-home .pl-audience-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(6,59,71,.15); }
.pl-home .pl-audience-home { background: #DDF8FB; }
.pl-home .pl-audience-business { background: #E2F7EB; }
.pl-home .pl-card-kicker { color: var(--home-green); }
.pl-home .pl-audience-card h3 { font-size: clamp(32px, 3vw, 48px); }

.pl-home .pl-offer-band { padding: 128px 0; background: #F5FBFC; }
.pl-home .pl-offer-layout { grid-template-columns: .9fr 1.1fr; gap: clamp(44px, 8vw, 110px); }
.pl-home .pl-offer-visual { height: 500px; border-radius: 24px 150px 24px 24px; box-shadow: 0 24px 60px rgba(6,59,71,.14); }
.pl-home .pl-offer-copy h2 { font-size: clamp(40px, 5vw, 72px); letter-spacing: -.065em; }
.pl-home .btn-dark { background: var(--home-dark); }

.pl-home .pl-services { background: var(--home-dark-2); color: #fff; }
.pl-home .pl-services h2 { color: #fff; }
.pl-home .pl-services .pl-section-intro > p { color: rgba(255,255,255,.68); }
.pl-home .pl-service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.pl-home .pl-service-card { min-height: 470px; border-radius: 20px; background: #0C4652; }
.pl-home .pl-service-card::before { background: linear-gradient(0deg, rgba(4,38,46,.98) 0%, rgba(4,38,46,.82) 48%, rgba(4,38,46,.28) 78%, rgba(4,38,46,.08) 100%); }
.pl-home .pl-service-card > span,
.pl-home .pl-service-card h3,
.pl-home .pl-service-card p,
.pl-home .pl-service-card b { position: relative; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.pl-home .pl-service-card > span { color: #C9F2F8; }
.pl-home .pl-service-card h3 { color: #FFFFFF; }
.pl-home .pl-service-card p { color: rgba(255,255,255,.96); }
.pl-home .pl-service-card b { color: #8CE8F0; }

.pl-home .pl-story { background: #fff; }
.pl-home .pl-story-layout { gap: clamp(48px, 9vw, 140px); }
.pl-home .pl-story-copy h2 { font-size: clamp(42px, 5vw, 72px); letter-spacing: -.065em; }
.pl-home .pl-story-copy h2 em { color: var(--home-green); }
.pl-home .pl-story-image { height: 540px; }
.pl-home .pl-story-image img { border-radius: 150px 24px 24px 24px; }
.pl-home .pl-story-note strong { color: var(--home-green); }

.pl-home .pl-steps { background: #E2F7EB; }
.pl-home .pl-steps .pl-section-intro { margin-left: auto; margin-right: auto; }
.pl-home .pl-step-grid { border-top-color: rgba(0,170,79,.25); }
.pl-home .pl-step { border-right-color: rgba(0,170,79,.25); }
.pl-home .pl-step > span { color: var(--home-green); font-size: 15px; }
.pl-home .pl-step h3 { font-size: 30px; }

.pl-home .pl-final-cta { padding: 132px 0 145px; background: var(--home-cyan); }
.pl-home .pl-final-cta h2 { color: var(--home-dark); font-size: clamp(48px, 7vw, 94px); }
.pl-home .pl-final-cta h2 em { color: #fff; }
.pl-home .pl-final-cta p { color: rgba(6,59,71,.78); }
.pl-home .pl-final-cta .btn-primary { background: var(--home-dark); box-shadow: 0 18px 45px rgba(6,59,71,.2); }

@media (max-width: 800px) {
  .pl-home .pl-hero { min-height: auto; padding: 84px 24px 90px; grid-template-columns: 1fr; gap: 54px; }
  .pl-home .pl-hero-art { min-height: 380px; }
  .pl-home .pl-hero-badge { left: 12px; bottom: 22px; }
  .pl-home .pl-hero-art { margin-right: 0; }
  .pl-home .pl-hero-art img { border-width: 5px; border-radius: 28px 28px 28px 100px; }
  .pl-home .pl-audience-grid, .pl-home .pl-service-grid { grid-template-columns: 1fr; }
  .pl-home .pl-audience-card { min-height: 340px; }
  .pl-home .pl-offer-layout, .pl-home .pl-story-layout { grid-template-columns: 1fr; gap: 46px; }
  .pl-home .pl-offer-visual, .pl-home .pl-story-image { height: 390px; }
  .pl-home .pl-step-grid { grid-template-columns: 1fr; border-top: 0; }
  .pl-home .pl-step, .pl-home .pl-step + .pl-step { padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(0,170,79,.25); }
  .pl-home .pl-step:last-child { border-bottom: 0; }
}

/* Alternate homepage hero: bright editorial composition */
.pl-home .pl-hero {
  min-height: 740px;
  background: linear-gradient(135deg, #F4FCFD 0%, #E6F9FB 52%, #DDF7EA 100%);
  color: var(--home-dark);
  isolation: isolate;
}
.pl-home .pl-hero::after {
  right: -14%; top: -28%; width: 60vw; height: 125%;
  border-color: rgba(0,177,211,.2);
  z-index: -1;
}
.pl-home .pl-hero-copy { max-width: 620px; }
.pl-home .pl-hero-copy h1 { color: var(--home-dark); }
.pl-home .pl-hero-copy h1 em { color: var(--home-cyan); }
.pl-home .pl-hero-copy > p { color: #48666D; }
.pl-home .pl-hero .eyebrow-light { color: var(--home-green); background: rgba(0,170,79,.1); border-color: rgba(0,170,79,.2); }
.pl-home .pl-hero .eyebrow-light .dot { background: var(--home-green); }
.pl-home .pl-text-link { color: var(--home-dark); }
.pl-home .pl-hero-art { min-height: 570px; }
.pl-home .pl-hero-art::before { background: var(--home-green); opacity: .8; transform: rotate(9deg); }
.pl-home .pl-hero-art::after {
  content: '';
  position: absolute;
  left: -20px; top: 34px; width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 0 14px rgba(0,177,211,.12);
}
.pl-home .pl-hero-art img { border: 0; box-shadow: 0 28px 70px rgba(6,59,71,.2); border-radius: 34px 34px 160px 34px; }
.pl-home .pl-hero-badge { left: -26px; bottom: 30px; }
.pl-home .pl-hero-bottom { color: #48666D; }
.pl-home .pl-scroll-line { background: var(--home-green); }

@media (max-width: 800px) {
  .pl-home .pl-hero { min-height: auto; }
  .pl-home .pl-hero-art { min-height: 390px; }
  .pl-home .pl-hero-art img { border-radius: 28px 28px 110px 28px; }
  .pl-home .pl-hero-art::after { left: 4px; top: 20px; width: 54px; height: 54px; }
  .pl-home .pl-hero-badge { left: 12px; bottom: 18px; }
}

/* Final homepage hero: dark high-contrast version */
.pl-home .pl-hero {
  min-height: 760px;
  background: var(--home-dark);
  color: #fff;
}
.pl-home .pl-hero::after {
  right: -8%; top: -20%; width: 58vw; height: 90%;
  border-color: rgba(140,232,240,.22);
}
.pl-home .pl-hero-copy { max-width: 570px; }
.pl-home .pl-hero-copy h1 {
  max-width: 560px;
  margin: 24px 0 24px;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: .94;
  color: #fff;
}
.pl-home .pl-hero-copy h1 em { color: #8CE8F0; }
.pl-home .pl-hero-copy > p { max-width: 490px; color: rgba(255,255,255,.82); }
.pl-home .pl-hero .eyebrow-light { color: rgba(255,255,255,.92); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.pl-home .pl-hero .eyebrow-light .dot { background: var(--home-cyan); }
.pl-home .pl-text-link { color: #fff; }
.pl-home .pl-hero-art { min-height: 550px; }
.pl-home .pl-hero-art::before { background: #8CE8F0; opacity: .38; }
.pl-home .pl-hero-art::after { display: none; }
.pl-home .pl-hero-art img { border: 8px solid rgba(255,255,255,.12); border-radius: 34px 34px 34px 160px; box-shadow: 0 32px 80px rgba(0,0,0,.28); }
.pl-home .pl-hero-badge { left: -22px; bottom: 34px; }
.pl-home .pl-hero-bottom { color: rgba(255,255,255,.6); }
.pl-home .pl-scroll-line { background: var(--home-cyan); }

@media (max-width: 800px) {
  .pl-home .pl-hero { min-height: auto; }
  .pl-home .pl-hero-copy { max-width: 100%; }
  .pl-home .pl-hero-copy h1 { font-size: clamp(50px, 12vw, 76px); }
  .pl-home .pl-hero-art { min-height: 380px; }
  .pl-home .pl-hero-art img { border-width: 5px; border-radius: 28px 28px 28px 100px; }
  .pl-home .pl-hero-badge { left: 12px; bottom: 22px; }
}

/* Hero copy in a wider horizontal composition */
@media (min-width: 1101px) {
  .pl-home .pl-hero {
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
    gap: clamp(28px, 4vw, 58px);
  }
  .pl-home .pl-hero-copy { max-width: 720px; }
  .pl-home .pl-hero-copy h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(34px, 3.45vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
  }
  .pl-home .pl-hero-copy h1 em {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--home-green);
    text-decoration-thickness: .08em;
    text-underline-offset: .12em;
  }
  .pl-home .pl-hero-copy > p { max-width: 650px; }
}

/* =========================================================
   About page refresh — same visual system as homepage
   ========================================================= */
.pl-about-page {
  --about-dark: #063B47;
  --about-dark-2: #082C35;
  --about-cyan: #00B1D3;
  --about-green: #00AA4F;
  background: #F5FBFC;
  color: var(--ink);
}
.pl-about-page .section { padding-top: 128px; padding-bottom: 128px; }
.pl-about-page .container { max-width: 1320px; }

.pl-about-page .pl-about-hero {
  min-height: 700px !important;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--about-dark);
  isolation: isolate;
}
.pl-about-page .pl-about-hero::after {
  content: '';
  position: absolute;
  right: -12%; top: -24%; width: 62%; height: 120%;
  border: 1px solid rgba(140,232,240,.22);
  border-radius: 50%;
  transform: rotate(-16deg);
  z-index: 0;
}
.pl-about-page .pl-about-hero .hero-slides,
.pl-about-page .pl-about-hero .hero-slide { position: absolute; inset: 0; }
.pl-about-page .pl-about-hero .hero-slide-bg {
  left: 52%; width: 48%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(.9) contrast(1.05);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.pl-about-page .pl-about-hero .hero-slide::after {
  content: '';
  position: absolute; inset: 0 48% 0 0;
  background: linear-gradient(90deg, var(--about-dark) 0%, rgba(6,59,71,.96) 52%, rgba(6,59,71,.2) 100%);
  z-index: 1;
}
.pl-about-page .pl-about-hero .hero-slide > .container { position: relative; z-index: 3; max-width: 1320px; margin-left: 0; margin-right: auto; padding-left: clamp(24px, 5vw, 72px); }
.pl-about-page .pl-about-hero .hero-content { max-width: 660px; padding: 0; transform: none; }
.pl-about-page .pl-about-hero h1 { max-width: 640px; margin: 24px 0 26px; font-size: clamp(54px, 7vw, 100px); line-height: .92; letter-spacing: -.07em; color: #fff; }
.pl-about-page .pl-about-hero h1 .accent { color: #8CE8F0; background: none; -webkit-text-fill-color: currentColor; }
.pl-about-page .pl-about-hero .lede { max-width: 560px; color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.65; }
.pl-about-page .pl-about-hero .hero-wave { z-index: 4; }
.pl-about-page .pl-about-hero .hero-wave path { fill: #F5FBFC; }

.pl-about-page > .section:nth-of-type(2) { background: #fff; }
.pl-about-page .split { gap: clamp(48px, 8vw, 120px); }
.pl-about-page .section-title { font-size: clamp(40px, 5vw, 72px); line-height: .98; letter-spacing: -.065em; }
.pl-about-page .section-title .accent,
.pl-about-page .section-title .underline { color: var(--about-green); background: none; text-decoration-color: var(--about-cyan); }
.pl-about-page .divider-line { background: linear-gradient(90deg, var(--about-cyan), var(--about-green)); }
.pl-about-page .split-visual { min-height: 500px; border-radius: 28px 150px 28px 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(6,59,71,.14); }
.pl-about-page .split-visual img { width: 100%; height: 100%; object-fit: cover; }
.pl-about-page .split-tiles { gap: 14px; }
.pl-about-page .split-tile { padding: 22px; border-radius: 18px; background: #F5FBFC; border-color: #D7EEF2; box-shadow: none; }
.pl-about-page .split-tile.warm { background: #E2F7EB; }
.pl-about-page .split-tile h5 { color: var(--about-dark); }
.pl-about-page .split-tile .ico { color: var(--about-green); }

.pl-about-page .stat-strip { padding: 38px 0; background: var(--about-dark-2); }
.pl-about-page .stat-strip-grid { gap: 0; }
.pl-about-page .stat-item { border-right-color: rgba(255,255,255,.16); }
.pl-about-page .stat-item:last-child { border-right: 0; }
.pl-about-page .stat-item .n { color: #8CE8F0; }
.pl-about-page .stat-item .l { color: rgba(255,255,255,.72); }

.pl-about-page .features { background: #F5FBFC; }
.pl-about-page .section-head { max-width: 760px; margin-bottom: 54px; }
.pl-about-page .section-head .section-title { margin-top: 18px; }
.pl-about-page .section-sub { color: var(--muted); }
.pl-about-page .features-staggered { gap: 18px; }
.pl-about-page .stagger-item { border: 0; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 14px 40px rgba(6,59,71,.08); }
.pl-about-page .stagger-visual { height: 265px; }
.pl-about-page .stagger-visual img { width: 100%; height: 100%; object-fit: cover; }
.pl-about-page .stagger-content { padding: 28px; }
.pl-about-page .stagger-content h4 { color: var(--about-dark); }
.pl-about-page .stagger-content p { color: var(--muted); }
.pl-about-page .feature-icon { color: var(--about-cyan); }
.pl-about-page .feature-icon.warm { color: var(--about-green); }

.pl-about-page > .section:nth-of-type(4) { background: #fff; }
.pl-about-page > .section:nth-of-type(4) .split-visual { order: 0; border-radius: 150px 28px 28px 28px; }
.pl-about-page > .section:nth-of-type(4) .btn-primary { background: var(--about-green); }
.pl-about-page .quote-banner { padding: 128px 24px 142px; background: var(--about-cyan); }
.pl-about-page .quote-banner .mark { color: rgba(255,255,255,.7); }
.pl-about-page .quote-banner h2 { max-width: 980px; color: var(--about-dark); font-size: clamp(40px, 5vw, 70px); line-height: .98; letter-spacing: -.06em; }

@media (max-width: 800px) {
  .pl-about-page .pl-about-hero { min-height: 760px !important; align-items: flex-start; padding-top: 90px; }
  .pl-about-page .pl-about-hero .hero-slide-bg { left: 0; top: 48%; width: 100%; height: 52%; clip-path: none; }
  .pl-about-page .pl-about-hero .hero-slide::after { inset: 0; background: linear-gradient(180deg, var(--about-dark) 0%, rgba(6,59,71,.86) 48%, rgba(6,59,71,.12) 100%); }
  .pl-about-page .pl-about-hero h1 { font-size: clamp(50px, 13vw, 76px); }
  .pl-about-page .pl-about-hero .lede { font-size: 17px; }
  .pl-about-page .pl-about-hero .hero-slide > .container { margin-left: auto; margin-right: auto; padding-left: 24px; }
  .pl-about-page .split { gap: 44px; }
  .pl-about-page .split-visual { min-height: 380px; }
  .pl-about-page .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-about-page .stat-item:nth-child(2) { border-right: 0; }
  .pl-about-page .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .pl-about-page .stagger-visual { height: 240px; }
}
