/* =============================================================
   KLICCHI — Main Stylesheet
   ============================================================= */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green:      #0ca84c;
  --green-mid:  #17a843;
  --green-deep: #0b1f10;
  --white:      #ffffff;
  --w80:        rgba(255,255,255,0.80);
  --w60:        rgba(255,255,255,0.60);
  --w35:        rgba(255,255,255,0.35);
  --line:       rgba(255,255,255,0.18);
  --line-deep:  rgba(255,255,255,0.10);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  background: var(--green-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w60);
  margin-bottom: 20px;
}

/* ===== NAV BUTTON VARIANTS ===== */
.nav-cta-left {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
  white-space: nowrap;
  padding: 0;
  justify-self: start;
}
.nav-cta-left:hover { opacity: 0.72; }
.nav-link-btn {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  padding: 0;
}
.nav-link-btn:hover { color: var(--green); }
.nav-mobile-cta {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  padding: 20px 0 12px;
  text-align: left;
  letter-spacing: 0.2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  line-height: 1;
  padding: 14px 28px;
}
.btn-white  { background: var(--white); color: var(--green-deep); }
.btn-white:hover  { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--white); }
.btn-dark { background: var(--green-deep); color: var(--white); }
.btn-dark:hover { opacity: 0.82; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* =============================================================
   NAVBAR
   ============================================================= */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  overflow: hidden;
}
.nav-logo img {
  height: 90px;
  width: auto;
  filter: none;
  margin: -22px 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
  grid-column: 3;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--green); }

.btn-blog {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  color: var(--green) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
.btn-blog:hover {
  background: var(--green) !important;
  color: #fff !important;
}

/* ── Servizi Dropdown ── */
.nav-dd-wrap {
  position: relative;
}
.nav-dd-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
  letter-spacing: .2px;
  font-family: inherit;
}
.nav-dd-trigger:hover,
.nav-dd-trigger[aria-expanded="true"] { color: var(--green); }

.nav-dd-chevron {
  width: 10px;
  height: 7px;
  flex-shrink: 0;
  transition: transform .2s cubic-bezier(0.16,1,0.3,1);
}
.nav-dd-trigger[aria-expanded="true"] .nav-dd-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  padding: 10px;
  width: 320px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s cubic-bezier(0.16,1,0.3,1),
              transform .2s cubic-bezier(0.16,1,0.3,1);
  z-index: 200;
}
.nav-dropdown.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  transition: background .15s;
}
.nav-dd-item:hover {
  background: rgba(12,168,76,.07);
}

.nav-dd-icon {
  width: 28px;
  height: 28px;
  background: rgba(12,168,76,.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.nav-dd-icon svg {
  width: 15px;
  height: 15px;
}

.nav-dd-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
}

.nav-cta-left {
  grid-column: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta-left:hover { opacity: 0.72; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; grid-column: 3; justify-self: end; }
.hamburger span { width: 22px; height: 1.5px; background: var(--green); display: block; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile-menu { display: none; background: var(--white); border-top: 1px solid rgba(0,0,0,0.07); padding: 24px 40px 32px; }
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a { display: block; font-size: 15px; font-weight: 500; color: rgba(0,0,0,0.6); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.2s; }
.nav-mobile-menu a:hover { color: var(--green); }
.nav-mobile-menu a:last-child { border-bottom: none; padding-top: 20px; color: var(--green); font-weight: 600; }


/* =============================================================
   HERO — Animated intro stage
   ============================================================= */
#hero {
  background: var(--green);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Stage fullscreen */
.hero-anim-stage {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Ogni fase occupa tutto lo stage */
.hero-phase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 20vh;
}

/* ── Fase 1: mano ── */
.hero-hand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-hand-svg {
  width: 180px;
  height: 220px;
  color: var(--white);
  filter: drop-shadow(0 0 32px rgba(29,191,78,0.4));
}
.hero-click-ring {
  transform-origin: center;
}

/* ── Fase 2+3: stage principale ── */
#heroPhaseMain {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 24px 40px 30vh;
  height: 100%;
  overflow: hidden;
}
.hero-center-stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-current-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hero-service-icon {
  width: 140px;
  height: 140px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-service-icon svg {
  width: 140px;
  height: 140px;
}
.hero-service-label {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  text-align: center;
  display: block;
}
.hsl-char { display: inline-block; }

.hero-final-logo {
  height: clamp(80px, 14vw, 180px);
  width: auto;
}
.hero-discover-label {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--w60);
  letter-spacing: 0.5px;
  text-align: center;
}
.hero-discover-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w60);
  margin-top: 16px;
  transition: color 0.2s;
}
.hero-discover-arrow:hover { color: var(--white); }
.hero-discover-arrow svg { width: 28px; height: 28px; }

/* ── Barra servizi accumulati ── */
.hero-services-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 0 20px;
  flex-shrink: 0;
}
.hero-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-bar-item:hover { opacity: 0.85 !important; }
.hero-bar-icon {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bar-icon svg { width: 44px; height: 44px; }
.hero-bar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--w60);
  white-space: nowrap;
}

.hero-inner { display: none; }
.hero-bar   { display: none; }


/* =============================================================
   SERVICE PANELS
   ============================================================= */
.service-panels {
  background: var(--white);
}

.service-panel {
  display: none;
  padding: 80px 0 100px;
}

.service-panel.active {
  display: block;
}

/* ── Pannello completo ── */
.sp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Colonna sinistra ── */
.sp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.sp-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.sp-desc {
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 420px;
}

.sp-problems {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sp-problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-problem-icon svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.sp-problem-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.sp-problem-item p {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
}

/* ── Colonna destra ── */
.sp-includes-card {
  background: var(--green-deep);
  padding: 40px;
  border-radius: 4px;
}

.sp-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w35);
  margin-bottom: 24px;
}

.sp-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--line-deep);
}

.sp-includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--w80);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-deep);
}

.sp-includes-list li svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.sp-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-deep);
}

.sp-price-from {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--w35);
  margin-bottom: 4px;
}

.sp-price {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.sp-price-period {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--w60);
}

.sp-price-note {
  display: block;
  font-size: 12px;
  color: var(--w35);
}

.sp-cta {
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.sp-cta:hover { opacity: 0.85; }

/* ── Meta Ads — l'annuncio ── */
.ma-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--green);
  margin-bottom: 48px;
  width: 100%;
  text-align: center;
}
.ma-section-title svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ma-panel {
  background: var(--white);
  padding: 90px 0 110px;
}

.ma-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 96px;
  align-items: center;
}

.ma-title {
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: var(--green-deep);
  margin: 16px 0 20px;
  max-width: 480px;
}
.ma-title em {
  font-style: normal;
  color: var(--green);
}

.ma-desc {
  font-size: 15px;
  color: rgba(0,0,0,0.55);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 44px;
}

.ma-problems {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 440px;
}

.ma-problem {
  border-left: 2px solid var(--green);
  padding-left: 20px;
}

.ma-problem strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.ma-problem p {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.65;
}

.ma-problem--note {
  border-left-color: rgba(0,0,0,0.15);
}
.ma-problem--note strong {
  color: rgba(0,0,0,0.4);
}

/* La card-annuncio */
.ma-ad-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ma-ad {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,0.25);
  padding: 18px 18px 0;
  transform: rotate(-1.5deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ma-ad:hover { transform: rotate(0deg); }

.ma-ad-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ma-ad-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 5px;
}

.ma-ad-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.ma-ad-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
}

.ma-ad-sponsored {
  font-size: 11px;
  color: rgba(0,0,0,0.40);
}

.ma-ad-text {
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  line-height: 1.55;
  margin-bottom: 14px;
}

.ma-ad-creative {
  background: var(--green);
  border-radius: 8px;
  padding: 34px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 14px;
}

.ma-ad-price-from {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.ma-ad-price {
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--white);
}
.ma-ad-price small {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.ma-ad-price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.ma-ad-list {
  list-style: none;
  margin-bottom: 4px;
}

.ma-ad-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  padding: 8px 0 8px 24px;
  position: relative;
}
.ma-ad-list li + li { border-top: 1px solid rgba(0,0,0,0.06); }
.ma-ad-list li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 700;
}

.ma-ad-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 10px -18px 0;
  padding: 14px 18px;
  background: rgba(0,0,0,0.025);
  border-radius: 0 0 14px 14px;
}

.ma-ad-domain {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.ma-ad-cta {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.ma-ad-cta:hover { opacity: 0.85; }

.ma-ad-caption {
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  text-align: center;
}

@media (max-width: 900px) {
  .ma-grid { grid-template-columns: 1fr; gap: 56px; }
  .ma-ad-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
  .ma-desc { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .ma-ad { transform: none; transition: none; }
}

/* ================================================================
   GOOGLE ADS PANEL
================================================================ */

.ga-panel { background: var(--white); padding: 90px 0 110px; }

.ga-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px;
  text-transform: none;
  text-align: center;
}
.ga-section-title svg { width: 28px; height: 28px; flex-shrink: 0; }

.ga-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.ga-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.ga-title em { font-style: normal; color: var(--green); }

.ga-desc {
  font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px;
}

.ga-problems { display: flex; flex-direction: column; gap: 14px; }
.ga-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.ga-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.ga-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }
.ga-problem--note { border-left-color: rgba(0,0,0,.15); }
.ga-problem--note strong { color: rgba(0,0,0,.45); }

/* ── SERP mockup ── */
.ga-serp-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.ga-serp {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  padding: 16px 16px 4px;
  width: 100%;
  transform: rotate(1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ga-serp:hover { transform: rotate(0deg); }

.ga-searchbar {
  display: flex; align-items: center; gap: 10px;
  background: #f1f3f4; border-radius: 24px;
  padding: 8px 14px; margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,.06);
}
.ga-searchbar-g {
  font-size: 15px; font-weight: 900; letter-spacing: -0.02em; flex-shrink: 0;
  background: linear-gradient(135deg, #4285f4 0%, #4285f4 25%, #ea4335 25%, #ea4335 50%, #fbbc05 50%, #fbbc05 75%, #34a853 75%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ga-searchbar-query {
  font-family: 'Outfit', sans-serif; font-size: 12.5px; color: #202124; flex: 1;
}
.ga-searchbar-icon { color: #5f6368; flex-shrink: 0; }

.ga-ad-result {
  padding: 10px 0 12px; border-bottom: 1px solid rgba(0,0,0,.07);
}
.ga-ad-result:last-of-type { border-bottom: none; }

.ga-ad-sponsored {
  display: inline-block; font-size: 10px; font-weight: 600;
  color: rgba(0,0,0,.55); border: 1px solid rgba(0,0,0,.22);
  border-radius: 3px; padding: 1px 5px; margin-bottom: 5px;
  letter-spacing: 0.03em; font-family: 'Outfit', sans-serif;
}
.ga-ad-title {
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  color: #1558d6; line-height: 1.3; margin-bottom: 2px;
}
.ga-ad-url {
  font-size: 11px; color: #0d652d; font-family: 'Outfit', sans-serif; margin-bottom: 4px;
}
.ga-ad-desc {
  font-size: 12px; color: #555; line-height: 1.5; font-family: 'Outfit', sans-serif;
}

.ga-feat-list {
  list-style: none; padding: 0; margin: 7px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px;
}
.ga-feat-list li {
  font-size: 11px; color: #1558d6; font-family: 'Outfit', sans-serif;
  padding: 2px 0; text-decoration: underline; text-underline-offset: 2px;
}

.ga-ad-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,.07);
}
.ga-ad-domain { font-size: 11px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; }
.ga-ad-cta {
  background: var(--green); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 6px; text-decoration: none;
  transition: opacity .2s;
}
.ga-ad-cta:hover { opacity: .85; }

.ga-ad-result--dim { opacity: .32; }
.ga-ad-result--dim .ga-ad-title { font-weight: 500; }

.ga-organic {
  padding: 8px 0 4px; opacity: .2;
}
.ga-organic-url { font-size: 11px; color: #0d652d; font-family: 'Outfit', sans-serif; margin-bottom: 2px; }
.ga-organic-title { font-size: 14px; color: #1558d6; font-family: 'Outfit', sans-serif; }
.ga-organic-desc { font-size: 12px; color: #555; font-family: 'Outfit', sans-serif; }

.ga-serp-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 860px) {
  .ga-grid { grid-template-columns: 1fr; gap: 48px; }
  .ga-serp-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
  .ga-serp { transform: none; transition: none; }
  .ga-desc { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .ga-serp { transform: none; transition: none; }
}

/* ================================================================
   SITI & LANDING PANEL
================================================================ */

.sl-panel { background: var(--white); padding: 90px 0 110px; }

.sl-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px;
  text-transform: none;
  text-align: center;
}
.sl-section-title svg { width: 28px; height: 28px; flex-shrink: 0; stroke: currentColor; }

.sl-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.sl-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.sl-title em { font-style: normal; color: var(--green); }

.sl-desc {
  font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px;
}

.sl-problems { display: flex; flex-direction: column; gap: 14px; }
.sl-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.sl-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.sl-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }
.sl-problem--note { border-left-color: rgba(0,0,0,.15); }
.sl-problem--note strong { color: rgba(0,0,0,.45); }

/* ── Browser mockup ── */
.sl-browser-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.sl-browser {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  width: 100%;
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.sl-browser:hover { transform: rotate(0deg); }

/* Barra browser */
.sl-browser-bar {
  display: flex; align-items: center; gap: 12px;
  background: #f1f3f4; padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.sl-browser-dots { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.sl-dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.sl-dot--red    { background: #ff5f57; }
.sl-dot--yellow { background: #ffbd2e; }
.sl-dot--green  { background: #28c840; }

.sl-browser-url {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: var(--white); border-radius: 6px;
  padding: 5px 10px; font-size: 11px;
  color: rgba(0,0,0,.5); font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(0,0,0,.08);
}
.sl-browser-url svg { color: #34a853; flex-shrink: 0; }

/* Pagina interna simulata */
.sl-page { background: var(--white); }

.sl-page-hero {
  background: var(--green-deep);
  padding: 18px 20px 22px;
}
.sl-page-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.sl-page-logo-pill {
  width: 60px; height: 10px; border-radius: 5px; background: var(--green);
}
.sl-page-nav-cta {
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  background: var(--green); color: var(--white);
  padding: 4px 10px; border-radius: 4px;
  font-family: 'Outfit', sans-serif;
}
.sl-page-headline {
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--white); margin-bottom: 8px;
}
.sl-page-headline em { font-style: normal; color: var(--green); }
.sl-page-sub {
  font-size: 10px; color: rgba(255,255,255,.55);
  font-family: 'Outfit', sans-serif; margin-bottom: 14px;
}
.sl-page-cta-row { display: flex; gap: 8px; align-items: center; }
.sl-page-btn {
  font-size: 9px; font-weight: 700; font-family: 'Outfit', sans-serif;
  padding: 6px 12px; border-radius: 4px; letter-spacing: 0.2px;
}
.sl-page-btn--primary { background: var(--green); color: var(--white); }
.sl-page-btn--ghost {
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7);
}

/* Social proof */
.sl-page-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fafafa;
}
.sl-page-proof-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.sl-page-proof-sep { width: 1px; height: 28px; background: rgba(0,0,0,.08); }
.sl-proof-num {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--green-deep); line-height: 1;
}
.sl-proof-label {
  font-size: 9px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Feature list */
.sl-page-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 10px 16px 14px;
}
.sl-page-feat {
  font-size: 10px; color: rgba(0,0,0,.6); font-family: 'Outfit', sans-serif;
  padding: 5px 0; display: flex; align-items: center; gap: 5px;
}
.sl-feat-check { color: var(--green); font-weight: 800; font-size: 11px; }

/* Price strip */
.sl-browser-price-strip {
  display: flex; align-items: stretch;
  background: var(--green-deep); padding: 12px 16px;
  gap: 0;
}
.sl-bps-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.sl-bps-divider { width: 1px; background: rgba(255,255,255,.1); margin: 0 4px; }
.sl-bps-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.sl-bps-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 12px;
  color: var(--green); letter-spacing: -0.3px;
}

/* Footer */
.sl-browser-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}

.sl-browser-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 860px) {
  .sl-grid { grid-template-columns: 1fr; gap: 48px; }
  .sl-browser-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
  .sl-browser { transform: none; transition: none; }
  .sl-desc { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .sl-browser { transform: none; transition: none; }
}

/* ================================================================
   E-COMMERCE PANEL
================================================================ */

.ec-panel { background: var(--white); padding: 90px 0 110px; }

.ec-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px;
  text-transform: none;
  text-align: center;
}
.ec-section-title svg { width: 28px; height: 28px; flex-shrink: 0; }

.ec-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.ec-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.ec-title em { font-style: normal; color: var(--green); }

.ec-desc {
  font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px;
}

.ec-problems { display: flex; flex-direction: column; gap: 14px; }
.ec-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.ec-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.ec-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }

/* ── Product mockup ── */
.ec-mockup-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.ec-mockup {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  width: 100%;
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ec-mockup:hover { transform: rotate(0deg); }

/* Shop header */
.ec-shop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: var(--white);
}
.ec-shop-logo-pill {
  width: 56px; height: 9px; border-radius: 5px; background: var(--green);
}
.ec-shop-nav-icons {
  display: flex; align-items: center; gap: 14px;
  color: rgba(0,0,0,.55);
}
.ec-cart-icon { position: relative; display: flex; align-items: center; }
.ec-cart-badge {
  position: absolute; top: -6px; right: -7px;
  background: var(--green); color: var(--white);
  font-size: 8px; font-weight: 800;
  width: 14px; height: 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
}

/* Product card */
.ec-product-card {
  display: grid; grid-template-columns: 1fr 1fr;
}

.ec-product-img {
  background: #f4f4f2;
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ec-product-img-inner {
  color: rgba(0,0,0,.25);
}
.ec-product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 4px;
  font-family: 'Outfit', sans-serif; text-transform: uppercase;
}

.ec-product-info {
  padding: 14px 14px 12px; display: flex; flex-direction: column; gap: 8px;
}
.ec-product-category {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(0,0,0,.35); font-family: 'Outfit', sans-serif;
}
.ec-product-name {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 12px;
  color: var(--green-deep); line-height: 1.3; letter-spacing: -0.2px;
}
.ec-product-stars {
  font-size: 11px; color: #f59e0b;
  font-family: 'Outfit', sans-serif;
}
.ec-product-stars span { color: rgba(0,0,0,.4); font-size: 10px; }

.ec-product-price-row {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.ec-product-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--green-deep); letter-spacing: -0.5px; line-height: 1;
}
.ec-product-price small {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0;
}
.ec-product-price-old {
  font-size: 11px; color: rgba(0,0,0,.3); text-decoration: line-through;
  font-family: 'Outfit', sans-serif;
}
.ec-product-discount {
  font-size: 10px; font-weight: 800; color: var(--white);
  background: #ef4444; padding: 2px 5px; border-radius: 3px;
  font-family: 'Outfit', sans-serif;
}

.ec-product-variants {
  display: flex; gap: 5px;
}
.ec-variant {
  width: 24px; height: 24px; border-radius: 4px;
  border: 1px solid rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: rgba(0,0,0,.5);
  font-family: 'Outfit', sans-serif;
}
.ec-variant--active {
  border-color: var(--green); color: var(--green); background: rgba(12,168,76,.06);
}

.ec-product-actions {
  display: flex; gap: 6px; align-items: center;
}
.ec-btn-cart {
  flex: 1; background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.3px;
  padding: 7px 10px; border-radius: 5px; text-align: center;
  font-family: 'Outfit', sans-serif;
}
.ec-btn-wish {
  width: 28px; height: 28px; border: 1px solid rgba(0,0,0,.15); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(0,0,0,.3);
}

.ec-product-trust {
  display: flex; flex-direction: column; gap: 2px;
}
.ec-product-trust span {
  font-size: 9px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif;
}

/* Price strip */
.ec-price-strip {
  display: flex; align-items: stretch;
  background: rgba(12,168,76,.08); padding: 12px 16px;
  border-top: 1px solid rgba(12,168,76,.15);
}
.ec-ps-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.ec-ps-divider { width: 1px; background: rgba(12,168,76,.2); margin: 0 4px; }
.ec-ps-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.ec-ps-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green); letter-spacing: -0.3px;
}

.ec-mockup-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}
.ec-mockup-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 860px) {
  .ec-grid { grid-template-columns: 1fr; gap: 48px; }
  .ec-mockup-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
  .ec-mockup { transform: none; transition: none; }
  .ec-desc { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .ec-mockup { transform: none; transition: none; }
}

/* ================================================================
   AUTOMAZIONI AI PANEL
================================================================ */

.ai-panel { background: var(--white); padding: 90px 0 110px; }

.ai-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px; text-transform: none; text-align: center;
}
.ai-section-title svg { width: 28px; height: 28px; flex-shrink: 0; }

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.ai-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.ai-title em { font-style: normal; color: var(--green); }

.ai-desc { font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px; }

.ai-problems { display: flex; flex-direction: column; gap: 14px; }
.ai-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.ai-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.ai-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }

/* ── Flow mockup ── */
.ai-flow-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.ai-flow {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  width: 100%; overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ai-flow:hover { transform: rotate(0deg); }

/* Header */
.ai-flow-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: #fafafa;
}
.ai-flow-title-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px;
}
.ai-flow-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(0,0,0,.35); font-family: 'Outfit', sans-serif;
}
.ai-flow-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; color: var(--green);
  font-family: 'Outfit', sans-serif;
}
.ai-status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 2px rgba(12,168,76,.25);
  animation: ai-pulse 1.8s ease-in-out infinite;
}
@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(12,168,76,.25); }
  50% { box-shadow: 0 0 0 5px rgba(12,168,76,.1); }
}
@media (prefers-reduced-motion: reduce) { .ai-status-dot { animation: none; } }

.ai-flow-name {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green-deep); letter-spacing: -0.2px;
}

/* Nodi */
.ai-nodes { padding: 14px 16px; display: flex; flex-direction: column; gap: 0; }

.ai-node {
  display: flex; align-items: center; gap: 10px;
  background: #f7f8f7; border-radius: 8px;
  padding: 9px 12px; border: 1px solid rgba(0,0,0,.07);
  position: relative;
}
.ai-node--trigger .ai-node-icon { background: rgba(99,102,241,.12); color: #6366f1; }
.ai-node--ai .ai-node-icon { background: rgba(12,168,76,.12); color: var(--green); }
.ai-node--action .ai-node-icon { background: rgba(245,158,11,.10); color: #f59e0b; }
.ai-node--notify .ai-node-icon { background: rgba(16,185,129,.10); color: #10b981; }

.ai-node-icon {
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ai-node-body { flex: 1; }
.ai-node-name {
  font-size: 11px; font-weight: 700; color: var(--green-deep);
  font-family: 'Outfit', sans-serif; margin-bottom: 1px;
}
.ai-node-desc { font-size: 10px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; }
.ai-node-check {
  font-size: 11px; color: var(--green); font-weight: 800;
  background: rgba(12,168,76,.1); width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-node-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  flex-shrink: 0;
  animation: ai-pulse 1.2s ease-in-out infinite;
}

.ai-connector {
  display: flex; flex-direction: column; align-items: center;
  padding: 2px 0; gap: 2px;
}
.ai-connector-line { width: 1px; height: 10px; background: rgba(0,0,0,.12); }
.ai-connector-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,.15); }

.ai-branch { display: flex; flex-direction: column; gap: 6px; }

/* Stats */
.ai-stats {
  display: flex; align-items: stretch;
  background: rgba(12,168,76,.07); padding: 10px 16px;
  border-top: 1px solid rgba(12,168,76,.12);
}
.ai-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ai-stat-divider { width: 1px; background: rgba(12,168,76,.18); margin: 0 4px; }
.ai-stat-num {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 16px;
  color: var(--green-deep); line-height: 1;
}
.ai-stat-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px;
  color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
  text-align: center;
}

/* Price strip */
.ai-price-strip {
  display: flex; align-items: stretch;
  background: rgba(12,168,76,.08); padding: 12px 16px;
  border-top: 1px solid rgba(12,168,76,.15);
}
.ai-ps-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ai-ps-divider { width: 1px; background: rgba(12,168,76,.2); margin: 0 4px; }
.ai-ps-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.ai-ps-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green); letter-spacing: -0.3px;
}

.ai-flow-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}
.ai-flow-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 860px) {
  .ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-flow-wrap { max-width: 400px; margin: 0 auto; width: 100%; }
  .ai-flow { transform: none; transition: none; }
  .ai-desc { margin-bottom: 36px; }
}

/* ================================================================
   BOT & AUTOMAZIONI PANEL
================================================================ */

.bot-panel { background: var(--white); padding: 90px 0 110px; }

.bot-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px; text-transform: none; text-align: center;
}
.bot-section-title svg { width: 26px; height: 26px; flex-shrink: 0; fill: var(--green); }

.bot-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.bot-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.bot-title em { font-style: normal; color: var(--green); }

.bot-desc { font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px; }

.bot-problems { display: flex; flex-direction: column; gap: 14px; }
.bot-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.bot-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.bot-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }

/* ── Chat mockup ── */
.bot-mockup-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.bot-mockup {
  background: #ece5dd;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  width: 100%; overflow: hidden;
  transform: rotate(1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.bot-mockup:hover { transform: rotate(0deg); }

/* Header WhatsApp */
.bot-chat-header {
  display: flex; align-items: center; gap: 10px;
  background: #075e54; padding: 10px 14px;
}
.bot-chat-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.bot-chat-info { flex: 1; }
.bot-chat-name {
  font-size: 13px; font-weight: 700; color: var(--white);
  font-family: 'Outfit', sans-serif; line-height: 1.2;
}
.bot-chat-status {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: rgba(255,255,255,.7);
  font-family: 'Outfit', sans-serif;
}
.bot-online-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #25d366; flex-shrink: 0;
}
.bot-chat-icons { color: rgba(255,255,255,.7); }

/* Messaggi */
.bot-chat-messages {
  padding: 12px 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%23ece5dd'/%3E%3C/svg%3E");
}

.bot-msg { display: flex; flex-direction: column; }
.bot-msg--user { align-items: flex-end; }
.bot-msg--bot { align-items: flex-start; }

.bot-bubble {
  max-width: 82%; padding: 7px 10px;
  border-radius: 8px; font-size: 11px; line-height: 1.5;
  font-family: 'Outfit', sans-serif;
}
.bot-bubble--user {
  background: #dcf8c6; color: #111;
  border-radius: 8px 8px 2px 8px;
}
.bot-bubble--bot {
  background: var(--white); color: #111;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.bot-bubble strong { color: var(--green-deep); }

.bot-msg-time {
  font-size: 9px; color: rgba(0,0,0,.4);
  font-family: 'Outfit', sans-serif;
  padding: 2px 4px;
}
.bot-msg-time--bot { align-self: flex-start; }

/* Quick reply buttons */
.bot-quickreplies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 4px 0 2px;
}
.bot-qr {
  background: var(--white); color: #075e54;
  border: 1px solid rgba(7,94,84,.25);
  font-size: 10px; font-weight: 600;
  padding: 5px 10px; border-radius: 16px;
  font-family: 'Outfit', sans-serif; cursor: default;
}

/* Bot label */
.bot-powered {
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.04); padding: 6px 10px;
  font-size: 9px; color: rgba(0,0,0,.4);
  font-family: 'Outfit', sans-serif;
  border-top: 1px solid rgba(0,0,0,.06);
}
.bot-powered-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0;
}

/* Price strip */
.bot-price-strip {
  display: flex; align-items: stretch;
  background: rgba(12,168,76,.08); padding: 12px 16px;
  border-top: 1px solid rgba(12,168,76,.15);
}
.bot-ps-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.bot-ps-divider { width: 1px; background: rgba(12,168,76,.2); margin: 0 4px; }
.bot-ps-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.bot-ps-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green); letter-spacing: -0.3px;
}

.bot-mockup-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}
.bot-mockup-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 860px) {
  .bot-grid { grid-template-columns: 1fr; gap: 48px; }
  .bot-mockup-wrap { max-width: 360px; margin: 0 auto; width: 100%; }
  .bot-mockup { transform: none; transition: none; }
  .bot-desc { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .bot-mockup { transform: none; transition: none; }
}

/* ================================================================
   CRM PANEL
================================================================ */

.crm-panel { background: var(--white); padding: 90px 0 110px; }

.crm-section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--green);
  margin-bottom: 48px; width: 100%;
  letter-spacing: -0.5px; text-transform: none; text-align: center;
}
.crm-section-title svg { width: 28px; height: 28px; flex-shrink: 0; }

.crm-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

.crm-title {
  font-family: 'Nexa', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: var(--green-deep); line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.crm-title em { font-style: normal; color: var(--green); }

.crm-desc { font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 28px; }

.crm-problems { display: flex; flex-direction: column; gap: 14px; }
.crm-problem {
  padding: 16px 20px; background: #f7f8f7;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.crm-problem strong { display: block; font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.crm-problem p { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; margin: 0; }

/* ── Kanban mockup ── */
.crm-mockup-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.crm-mockup {
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(11,31,16,.22);
  width: 100%; overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.crm-mockup:hover { transform: rotate(0deg); }

/* Header */
.crm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.crm-header-title {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green-deep); margin-bottom: 2px;
}
.crm-header-sub {
  font-size: 10px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif;
}
.crm-header-btn {
  background: var(--green); color: var(--white);
  font-size: 10px; font-weight: 700; font-family: 'Outfit', sans-serif;
  padding: 5px 12px; border-radius: 5px;
}

/* Kanban */
.crm-kanban {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px; padding: 12px;
}

.crm-col { display: flex; flex-direction: column; gap: 6px; }

.crm-col-header {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 2px 6px;
}
.crm-col-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.crm-col-dot--new     { background: #6366f1; }
.crm-col-dot--contact { background: #f59e0b; }
.crm-col-dot--offer   { background: var(--green); }

.crm-col-name {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  color: rgba(0,0,0,.45); font-family: 'Outfit', sans-serif; flex: 1;
}
.crm-col-count {
  font-size: 9px; font-weight: 700; color: rgba(0,0,0,.3);
  font-family: 'Outfit', sans-serif;
  background: rgba(0,0,0,.07); padding: 1px 5px; border-radius: 8px;
}

.crm-card {
  background: var(--white); border-radius: 7px; padding: 9px 10px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 3px;
}
.crm-card--dim { opacity: .5; }
.crm-card--highlight { border-color: rgba(12,168,76,.3); background: rgba(12,168,76,.03); }

.crm-card-name {
  font-size: 11px; font-weight: 700; color: var(--green-deep);
  font-family: 'Outfit', sans-serif;
}
.crm-card-company {
  font-size: 9px; color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif;
}
.crm-card-value {
  font-size: 11px; font-weight: 700; color: var(--green);
  font-family: 'Nexa', sans-serif; margin-top: 3px;
}
.crm-value--big { font-size: 14px; }

.crm-card-tag {
  font-size: 9px; font-weight: 600; font-family: 'Outfit', sans-serif;
  padding: 2px 6px; border-radius: 4px; display: inline-block; margin-top: 2px;
}
.crm-tag--hot    { background: rgba(239,68,68,.1); color: #ef4444; }
.crm-tag--follow { background: rgba(245,158,11,.1); color: #d97706; }
.crm-tag--close  { background: rgba(12,168,76,.1); color: var(--green); }

/* Price strip */
.crm-price-strip {
  display: flex; align-items: stretch;
  background: rgba(12,168,76,.08); padding: 12px 16px;
  border-top: 1px solid rgba(12,168,76,.15);
}
.crm-ps-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.crm-ps-divider { width: 1px; background: rgba(12,168,76,.2); margin: 0 8px; }
.crm-ps-label {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(0,0,0,.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.crm-ps-price {
  font-family: 'Nexa', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--green); letter-spacing: -0.3px;
}

.crm-mockup-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 12px 16px; border-top: 1px solid rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}
.crm-mockup-caption {
  font-size: 12px; color: rgba(0,0,0,.35);
  font-family: 'Outfit', sans-serif; font-style: italic;
  text-align: center; line-height: 1.6;
}

@media (max-width: 900px) {
  .crm-grid { grid-template-columns: 1fr; gap: 48px; }
  .crm-mockup-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
  .crm-mockup { transform: none; transition: none; }
  .crm-desc { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .crm-mockup { transform: none; transition: none; }
}

/* ── Pannello coming soon ── */
.sp-coming {
  padding: 60px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-coming-text {
  font-size: 15px;
  color: rgba(0,0,0,0.45);
}

.sp-coming-text a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}


/* =============================================================
   MODAL PREVENTIVO
   ============================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.modal-overlay.open {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  pointer-events: all;
}

.modal-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Colonna sinistra verde ── */
.modal-left {
  background: var(--green);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}
.modal-tagline {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.25;
  color: var(--white);
}
.modal-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.modal-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.modal-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.modal-promise {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Colonna destra scura ── */
.modal-right {
  background: var(--green-deep);
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.modal-right-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.modal-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
}
.modal-close {
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--w60);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  margin-left: 16px;
  margin-top: 2px;
}
.modal-close:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.modal-close svg { width: 16px; height: 16px; }

/* ── Form ── */
.modal-form { display: flex; flex-direction: column; flex: 1; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 24px; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--w35);
}

.form-group input,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--w35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(12,168,76,0.06);
}
.form-group input.error { border-color: #e05050; }

.modal-submit {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
}
.modal-submit:hover { opacity: 0.88; }
.modal-submit:active { transform: scale(0.98); }

.form-note {
  font-size: 11px;
  color: var(--w35);
  margin-top: 10px;
  text-align: center;
}
.form-note a { color: var(--w60); text-decoration: underline; }

.form-success {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0;
}
.form-success.visible { display: flex; }
.form-success-icon {
  width: 56px;
  height: 56px;
  color: var(--green);
  margin-bottom: 20px;
}
.form-success-icon svg { width: 56px; height: 56px; }
.form-success h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.form-success p { color: var(--w60); font-size: 15px; }


/* =============================================================
   FOOTER
   ============================================================= */
footer.footer-minimal {
  background: var(--green);
  padding: 16px 0;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}
.footer-legal a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--white); }


/* =============================================================
   BANNER PACCHETTI (dentro ogni service-panel)
   ============================================================= */
.pkg-panel-banner {
  background: #f7faf8;
  border-top: 1px solid rgba(12,168,76,.14);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.pkg-pb-left {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pkg-pb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}
.pkg-pb-text {
  font-size: .82rem;
  color: rgba(0,0,0,.5);
  line-height: 1.45;
}
.pkg-pb-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}
.pkg-pb-pill {
  background: #fff;
  border: 1px solid rgba(12,168,76,.22);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 90px;
}
.pkg-pb-pill-name {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(0,0,0,.4);
}
.pkg-pb-pill-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}
.pkg-pb-pill-tag {
  font-size: .65rem;
  color: rgba(0,0,0,.35);
  letter-spacing: .2px;
}
.pkg-pb-pill--accent {
  background: rgba(12,168,76,.07);
  border-color: rgba(12,168,76,.35);
}
.pkg-pb-pill--accent .pkg-pb-pill-name {
  color: rgba(12,168,76,.7);
}
.pkg-pb-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 20px;
  border-radius: 9px;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.pkg-pb-cta:hover { opacity: .88; transform: translateY(-2px); }

/* =============================================================
   APP MOBILE PANEL
   ============================================================= */
.app-panel { background: #f7fbf8; }

.app-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--green);
  margin-bottom: 48px;
  width: 100%;
  text-align: center;
}
.app-section-title svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--green);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0 56px;
}

/* ---- Copy ---- */
.app-copy { display: flex; flex-direction: column; gap: 0; }

.app-title {
  font-family: 'Nexa', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--green-deep);
  line-height: 1.18;
  margin-bottom: 18px;
}
.app-title em { font-style: normal; color: var(--green); }

.app-desc {
  font-size: .97rem;
  color: rgba(11,31,16,.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.app-problems { display: flex; flex-direction: column; gap: 18px; }

.app-problem {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(11,31,16,.08);
  border-radius: 12px;
}
.app-problem strong {
  display: block;
  font-size: .88rem;
  color: var(--green-deep);
  margin-bottom: 5px;
}
.app-problem p { font-size: .84rem; color: rgba(11,31,16,.55); line-height: 1.55; }

/* ---- Mockup ---- */
.app-mockup-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.app-mockup {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11,31,16,.08);
  box-shadow: 0 12px 48px rgba(11,31,16,.10);
  width: 100%;
}

.app-phone {
  display: flex;
  justify-content: center;
  padding: 28px 20px 20px;
  background: linear-gradient(160deg, #0b1f10 0%, #0d2b15 100%);
  position: relative;
}
.app-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0b1f10;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.app-screen {
  width: 220px;
  background: #f4f6f8;
  border-radius: 36px;
  overflow: hidden;
  border: 6px solid #1a2e1e;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
}

/* Status bar */
.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 4px;
  background: #fff;
}
.app-status-time { font-size: 10px; font-weight: 700; color: #0b1f10; }
.app-status-icons { display: flex; align-items: center; gap: 5px; color: #0b1f10; }

/* App header bar */
.app-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 10px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.app-header-logo { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #0b1f10; }
.app-logo-dot { width: 16px; height: 16px; background: var(--green); border-radius: 50%; }
.app-header-bell { position: relative; color: #666; }
.app-notif-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  border: 1.5px solid #fff;
}

/* Hero greeting */
.app-screen-hero {
  padding: 14px 14px 10px;
  background: #fff;
}
.app-greeting { font-size: 13px; font-weight: 700; color: #0b1f10; }
.app-greeting-sub { font-size: 10px; color: rgba(11,31,16,.5); margin-top: 2px; }

/* Quick actions */
.app-quick-actions {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  padding: 10px 10px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.app-qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 10px;
  cursor: pointer;
  background: #f4f6f8;
}
.app-qa--active { background: rgba(12,168,76,.12); }
.app-qa-icon { font-size: 16px; line-height: 1; }
.app-qa-label { font-size: 8px; font-weight: 600; color: #0b1f10; text-align: center; }

/* Push notification */
.app-push-notif {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 10px 0;
  padding: 10px 10px;
  background: rgba(12,168,76,.08);
  border: 1px solid rgba(12,168,76,.2);
  border-radius: 10px;
  font-size: 9px;
}
.app-push-icon { font-size: 14px; line-height: 1; flex-shrink: 0; }
.app-push-title { font-weight: 700; color: #0b1f10; margin-bottom: 2px; }
.app-push-text { color: rgba(11,31,16,.6); line-height: 1.4; }

/* Upcoming card */
.app-upcoming {
  padding: 10px 10px 4px;
}
.app-upcoming-label { font-size: 9px; font-weight: 700; color: rgba(11,31,16,.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.app-upcoming-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(0,0,0,.07);
}
.app-upcoming-service { font-size: 10px; font-weight: 700; color: #0b1f10; }
.app-upcoming-date { font-size: 9px; color: rgba(11,31,16,.5); margin-top: 2px; }
.app-upcoming-status { font-size: 8.5px; font-weight: 700; color: var(--green); white-space: nowrap; }

/* Bottom nav */
.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-top: 10px;
}
.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(11,31,16,.35);
}
.app-nav-item span { font-size: 8px; font-weight: 600; }
.app-nav-item--active { color: var(--green); }
.app-nav-item--active svg { stroke: var(--green); }

/* Price strip */
.app-price-strip {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(11,31,16,.07);
  background: #fff;
}
.app-ps-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
}
.app-ps-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(11,31,16,.45); }
.app-ps-price { font-size: .88rem; font-weight: 700; color: var(--green-deep); }
.app-ps-divider { width: 1px; background: rgba(11,31,16,.07); flex-shrink: 0; }

.app-mockup-footer {
  padding: 14px 20px 18px;
  background: #fff;
  border-top: 1px solid rgba(11,31,16,.07);
}
.app-mockup-cta {
  display: block;
  text-align: center;
  background: var(--green-deep);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: 11px;
  border-radius: 10px;
  transition: opacity .2s, transform .2s;
}
.app-mockup-cta:hover { opacity: .85; transform: translateY(-2px); }

.app-mockup-caption {
  font-size: .78rem;
  color: rgba(11,31,16,.4);
  text-align: center;
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-phone { padding: 20px 16px; }
  .app-screen { width: 200px; }
}
@media (max-width: 600px) {
  .app-screen { width: 180px; }
}

/* =============================================================
   RESPONSIVE — tablet
   ============================================================= */
@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .sp-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-desc { max-width: 100%; }
  .modal-card { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-left { display: none; }
}

/* ─── PANEL BLOG LINKS STRIP ─────────────────────────────────────────────── */
.pbl-strip {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.pbl-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pbl-strip__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}
.pbl-strip__all {
  font-size: 12px;
  font-weight: 600;
  color: var(--green, #3aaa5c);
  text-decoration: none;
  transition: opacity 0.15s;
}
.pbl-strip__all:hover { opacity: 0.75; }
.pbl-strip__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pbl-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  transition: opacity 0.15s;
}
.pbl-link:last-child { border-bottom: none; }
.pbl-link:hover { opacity: 0.65; }
.pbl-link__title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.75);
  line-height: 1.4;
  flex: 1;
}
.pbl-link__arrow {
  font-size: 13px;
  color: var(--green, #3aaa5c);
  flex-shrink: 0;
}
.pbl-strip {
  border-top-color: rgba(0,0,0,0.08);
}

/* =============================================================
   RESPONSIVE — mobile
   ============================================================= */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta-left { display: none; }
  .pbl-strip { margin-top: 36px; padding-top: 22px; }

  .hamburger { display: flex; }
  .nav-mobile-menu { padding: 20px; }

  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-card { border-radius: 12px 12px 0 0; max-height: 92vh; }
  .modal-right { padding: 28px 24px 24px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sp-price-row { flex-direction: column; align-items: flex-start; }
  .sp-cta { width: 100%; text-align: center; }

  /* Hero services bar: 8 chips in ≤2 rows on 390px */
  .hero-services-bar { gap: 16px 6px; padding: 0 8px; }
  .hero-bar-item { gap: 5px; width: 68px; }
  .hero-bar-icon { width: 28px; height: 28px; }
  .hero-bar-icon svg { width: 28px; height: 28px; }
  .hero-bar-label { font-size: 8px; letter-spacing: 0.6px; white-space: normal; text-align: center; line-height: 1.25; }
}
