/* ========= MyCondominio · sito marketing ========= */
/* Design tokens da Figma library "MyCondominio Tokens" */

:root {
  /* Brand */
  --brand-30: #a4cafe;
  --brand-60: #375dfb;
  --brand-70: #1743a6;
  --brand-90: #111729;
  --brand-200: #c0d5ff;

  /* Neutral */
  --neutral-white: #ffffff;
  --neutral-10: #f3f4f6;
  --neutral-30: #e5e7eb;
  --neutral-40: #d1d5db;
  --neutral-50: #9ca3af;
  --neutral-70: #4b5563;
  --neutral-90: #111928;

  /* Surface */
  --surface-bg: #ffffff;
  --surface-bg-soft: #f9fafb;
  --surface-border: #e5e7eb;

  /* Status */
  --status-red: #d92d20;
  --status-red-soft: #fff0ee;
  --status-red-text: #b42318;
  --status-orange: #ef7d00;
  --status-orange-soft: #fff2e2;
  --status-orange-text: #b45309;
  --status-green: #1f7a55;
  --status-green-soft: #d1fae5;
  --status-green-text: #065f46;
  --status-info: #0ea5e9;
  --status-info-soft: #e0f2fe;
  --status-info-text: #0369a1;
  --status-purple: #6d28d9;
  --status-purple-soft: #ede9fe;
  --status-purple-text: #5b21b6;
  --status-yellow: #facc15;

  /* Chart (Nexus-style solidi) */
  --chart-indigo: #5b21b6;
  --chart-indigo-2: #7c3aed;
  --chart-purple: #6d28d9;
  --chart-purple-2: #a78bfa;
  --chart-teal: #0d9488;
  --chart-cyan: #2dd4bf;
  --chart-cyan-2: #67e8f9;
  --chart-mint: #a7f3d0;
  --chart-violet-1: #c4b5fd;
  --chart-violet-2: #ddd6fe;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-30: 120px;

  /* Radius */
  --radius-nav: 5px;
  --radius-control: 8px;
  --radius-panel: 10px;
  --radius-support: 12px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1280px;
  --container-pad: 80px;
}

/* ========= Reset minimale ========= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--neutral-90);
  background: var(--surface-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ========= Tipografia ========= */
.h1   { font-size: 72px; line-height: 76px; font-weight: 700; letter-spacing: -0.03em; }
.h2   { font-size: 56px; line-height: 62px; font-weight: 700; letter-spacing: -0.02em; }
.h3   { font-size: 42px; line-height: 48px; font-weight: 700; letter-spacing: -0.02em; }
.h4   { font-size: 28px; line-height: 34px; font-weight: 700; letter-spacing: -0.02em; }
.lead { font-size: 20px; line-height: 32px; color: var(--neutral-70); }
.body { font-size: 15px; line-height: 24px; }
.small{ font-size: 13px; line-height: 20px; color: var(--neutral-50); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; }
.eyebrow--blue   { background: var(--brand-200);          color: var(--brand-70); }
.eyebrow--blue   .dot { background: var(--brand-60); }
.eyebrow--green  { background: var(--status-green-soft);  color: var(--status-green-text); }
.eyebrow--green  .dot { background: var(--status-green); }
.eyebrow--orange { background: var(--status-orange-soft); color: var(--status-orange-text); }
.eyebrow--orange .dot { background: var(--status-orange); }
.eyebrow--purple { background: var(--status-purple-soft); color: var(--status-purple-text); }
.eyebrow--purple .dot { background: var(--status-purple); }
.eyebrow--dark   { background: var(--brand-70);           color: var(--brand-30); }
.eyebrow--dark   .dot { background: var(--brand-30); }
.eyebrow--teal   { background: var(--status-info-soft);   color: var(--chart-teal); }
.eyebrow--teal   .dot { background: var(--chart-teal); }
.eyebrow--info   { background: var(--status-info-soft);   color: var(--status-info-text); }
.eyebrow--info   .dot { background: var(--status-info); }

.accent-brand { color: var(--brand-60); }

/* ========= Layout ========= */
.section { padding: var(--space-30) var(--container-pad); }
.section--snug { padding: var(--space-16) var(--container-pad); }
.section--soft { background: var(--surface-bg-soft); }
.section--dark { background: var(--brand-90); color: var(--neutral-white); }
.container { max-width: var(--container); margin: 0 auto; }
.center { text-align: center; }
.section-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.section-head .lead { margin-top: var(--space-1); }
.section-head + * { margin-top: var(--space-16); }

/* ========= Top Nav ========= */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 22px 64px;
  background: var(--surface-bg);
  border-bottom: 1px solid var(--surface-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-60);
  color: var(--neutral-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; letter-spacing: -0.04em;
}
.wordmark { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--neutral-90); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-70);
  transition: background .12s ease, color .12s ease;
}
.nav-link:hover { color: var(--neutral-90); background: var(--neutral-10); }

.nav-cta { display: flex; align-items: center; gap: 6px; }

/* ========= Button ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease, transform .06s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary    { background: var(--brand-60); color: var(--neutral-white); }
.btn--primary:hover { background: var(--brand-70); }
.btn--secondary  { background: var(--surface-bg); color: var(--brand-60); border: 1px solid var(--surface-border); }
.btn--secondary:hover { background: var(--brand-200); }
.btn--ghost      { color: var(--brand-60); padding: 8px 12px; }
.btn--ghost:hover{ color: var(--brand-70); }
.btn--light      { background: var(--neutral-white); color: var(--brand-70); }
.btn--light:hover{ background: var(--brand-200); }
.btn--lg         { padding: 16px 24px; font-size: 15px; }

/* ========= Hero ========= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px var(--container-pad) 120px;
  background: var(--surface-bg);
}
.hero-copy { display: flex; flex-direction: column; gap: var(--space-8); }
.hero-cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.avatar-stack { position: relative; display: flex; }
.avatar-stack .avatar { margin-left: -10px; box-shadow: 0 0 0 2px var(--neutral-white); }
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--neutral-white);
}
.avatar--indigo { background: var(--chart-indigo); }
.avatar--teal   { background: var(--chart-teal); }
.avatar--purple { background: var(--status-purple); }
.avatar--orange { background: var(--status-orange); }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--status-yellow); }
.stars svg { width: 14px; height: 14px; }
.rating { margin-left: 6px; font-size: 13px; font-weight: 600; color: var(--neutral-90); }
.trust-label { font-size: 13px; font-weight: 500; color: var(--neutral-50); }

/* Hero mockup (recreated in HTML/CSS, no images) */
.mockup {
  background: var(--brand-90);
  border-radius: 18px;
  padding: 14px;
}
.mockup-screen {
  background: var(--surface-bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mockup-titlebar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface-bg-soft);
}
.mockup-dots { display: flex; gap: 8px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ef4444; }
.mockup-dot.y { background: #f59e0b; }
.mockup-dot.g { background: #10b981; }
.mockup-urlpill {
  flex: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  font-size: 11px;
  color: var(--neutral-70);
}
.mockup-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.mockup-header-row { display: flex; align-items: center; justify-content: space-between; }
.mockup-title { font-size: 16px; font-weight: 600; }
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  background: var(--status-green-soft);
  color: var(--status-green-text);
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
}
.live-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--status-green); }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi {
  padding: 12px;
  border-radius: var(--radius-panel);
  display: flex; flex-direction: column; gap: 4px;
}
.kpi-label { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; }
.kpi-value { font-size: 22px; font-weight: 700; color: var(--neutral-90); }
.kpi-sub   { font-size: 10px; color: var(--neutral-50); }
.kpi--info   { background: var(--status-info-soft); }   .kpi--info   .kpi-label { color: var(--status-info-text); }
.kpi--green  { background: var(--status-green-soft); }  .kpi--green  .kpi-label { color: var(--status-green-text); }
.kpi--orange { background: var(--status-orange-soft); } .kpi--orange .kpi-label { color: var(--status-orange-text); }
.kpi--purple { background: var(--status-purple-soft); } .kpi--purple .kpi-label { color: var(--status-purple-text); }

.chart-card {
  background: var(--surface-bg-soft);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-panel);
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.chart-head { display: flex; align-items: center; justify-content: space-between; }
.chart-title { font-size: 12px; font-weight: 600; }
.chart-total { font-size: 12px; font-weight: 600; color: var(--brand-60); }
.chart-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  height: 96px;
}
.chart-bars span {
  background: var(--chart-violet-1);
  border-radius: 4px;
  display: block;
}
.chart-bars span.active { background: var(--chart-indigo); }
.chart-x { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.chart-x span {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--neutral-50);
}
.chart-x span.active { color: var(--chart-indigo); }

.minicards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.minicard {
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-panel);
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.minicard-l { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; color: var(--neutral-50); }
.minicard-v { font-size: 17px; font-weight: 700; }
.minicard-s { font-size: 10px; color: var(--neutral-50); }
.minicard-v.brand    { color: var(--brand-60); }
.minicard-v.orange   { color: var(--status-orange-text); }
.minicard-v.green    { color: var(--status-green-text); }

/* ========= Social Proof ========= */
.social-proof {
  display: flex; flex-direction: column; gap: 28px; align-items: center;
}
.social-proof-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em;
  color: var(--neutral-50); text-align: center;
}
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 56px; }
.logo-chip { display: inline-flex; align-items: center; gap: 10px; color: var(--neutral-50); font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.logo-chip .mark { width: 28px; height: 28px; border-radius: 6px; background: var(--neutral-30); color: var(--neutral-70); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

/* ========= Pillars ========= */
.pillars-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pillar {
  display: flex; flex-direction: column; gap: 24px;
  padding: 28px;
  border-radius: 18px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
}
.pillar-title { font-size: 26px; font-weight: 700; line-height: 32px; letter-spacing: -0.02em; }
.pillar p { font-size: 15px; line-height: 24px; color: var(--neutral-70); }
.pillar .link { font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.pillar .link.blue   { color: var(--brand-70); }
.pillar .link.green  { color: var(--status-green-text); }
.pillar .link.purple { color: var(--status-purple-text); }

/* Pillar mini-mockups */
.pmini {
  padding: 18px;
  border-radius: var(--radius-support);
  display: flex; flex-direction: column; gap: 12px;
}
.pmini--blue   { background: var(--brand-200); }
.pmini--green  { background: var(--status-green-soft); }
.pmini--purple { background: var(--status-purple-soft); }

.pmini-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; }
.pmini-total   { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; color: var(--brand-90); }
.pmini-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--surface-bg);
  border-radius: var(--radius-control);
  font-size: 12px;
}
.pmini-row .l { color: var(--neutral-70); font-weight: 500; }
.pmini-row .v { color: var(--brand-70); font-weight: 600; }

.pmini-chat {
  display: flex; align-items: center; gap: 10px;
}
.pmini-chat .name { font-size: 13px; font-weight: 600; color: var(--status-green-text); }
.pmini-chat .meta { font-size: 11px; color: var(--neutral-70); }
.pmini-bubble {
  padding: 10px 14px;
  background: var(--surface-bg);
  border-radius: var(--radius-panel);
  font-size: 12px;
  line-height: 18px;
}
.pmini-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  background: var(--status-orange-soft);
  color: var(--status-orange-text);
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
}
.pmini-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--status-orange); }

.pmini-doc {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--surface-bg);
  border-radius: var(--radius-panel);
}
.pmini-doc .code {
  width: 44px; height: 28px; border-radius: 6px;
  background: var(--status-purple-soft);
  color: var(--status-purple-text);
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
}
.pmini-doc .label { flex: 1; font-size: 12px; font-weight: 500; }
.pmini-doc .chip {
  display: inline-flex; padding: 3px 9px; border-radius: var(--radius-pill);
  font-size: 9px; font-weight: 600; letter-spacing: 0.04em;
}
.chip--green  { background: var(--status-green-soft);  color: var(--status-green-text); }
.chip--orange { background: var(--status-orange-soft); color: var(--status-orange-text); }
.chip--info   { background: var(--status-info-soft);   color: var(--status-info-text); }
.chip--purple { background: var(--status-purple-soft); color: var(--status-purple-text); }
.chip--warn   { background: var(--status-orange-soft); color: var(--status-orange-text); }
.chip--red    { background: #fee2e2;                   color: #b91c1c; }

/* ========= Mock list (rows usate nei mockup feature pages) ========= */
.mock-list { display: flex; flex-direction: column; gap: 8px; }
.mock-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
}
.mock-row .avatar {
  width: 30px; height: 30px;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.mock-row .row-main { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mock-row .row-title {
  font-size: 13px; font-weight: 600; color: var(--neutral-90);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-row .row-sub {
  font-size: 11px; color: var(--neutral-50);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-row .amount { font-size: 13px; font-weight: 700; color: var(--neutral-90); flex-shrink: 0; }
.mock-row .chip {
  display: inline-flex; padding: 3px 9px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.avatar--info  { background: var(--status-info); }
.avatar--green { background: var(--status-green); }
.avatar--red   { background: #ef4444; }

.mockup-screen--mobile {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 22px;
}

/* ========= Tour prodotto ========= */
.tour-blocks { display: flex; flex-direction: column; gap: 120px; }
.tour-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tour-block.reverse .tour-copy { order: 2; }
.tour-block.reverse .tour-mock { order: 1; }
.tour-copy { display: flex; flex-direction: column; gap: 24px; }
.tour-copy h3 { font-size: 42px; line-height: 48px; font-weight: 700; letter-spacing: -0.02em; }
.tour-copy p  { font-size: 17px; line-height: 28px; color: var(--neutral-70); }
.bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet { display: flex; align-items: flex-start; gap: 12px; }
.bullet-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--brand-200);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.bullet-icon svg { width: 14px; height: 14px; color: var(--brand-60); }
.bullet-text { font-size: 15px; line-height: 24px; font-weight: 500; color: var(--neutral-90); }
.stat-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--brand-200);
  border-radius: var(--radius-support);
}
.stat-pill .v { font-size: 26px; font-weight: 700; color: var(--brand-70); letter-spacing: -0.02em; }
.stat-pill .t { font-size: 13px; line-height: 18px; color: var(--brand-70); font-weight: 500; }

/* Tour mockups */
.tour-mock-frame {
  background: var(--brand-90);
  border-radius: 18px;
  padding: 14px;
}
.tour-mock-screen {
  background: var(--surface-bg);
  border-radius: 12px;
  overflow: hidden;
}

.cruscotto-screen { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.cruscotto-head { display: flex; justify-content: space-between; align-items: center; }
.cruscotto-greet { font-size: 12px; letter-spacing: 0.06em; color: var(--neutral-50); }
.cruscotto-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.filter-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--surface-bg-soft);
  border: 1px solid var(--surface-border);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--neutral-70);
}
.calendar { display: flex; flex-direction: column; gap: 8px; }
.calendar-head { display: flex; justify-content: space-between; }
.calendar-head .l { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--neutral-70); }
.calendar-head .r { font-size: 12px; font-weight: 600; color: var(--neutral-50); }
.calendar-row { display: grid; grid-template-columns: repeat(14, 1fr); gap: 6px; }
.cal-day {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px;
  border-radius: 6px;
  background: var(--surface-bg-soft);
}
.cal-day.event { background: var(--brand-200); }
.cal-day .n { font-size: 11px; font-weight: 600; color: var(--neutral-50); }
.cal-day.event .n { color: var(--brand-70); }
.cal-day .pip { width: 4px; height: 4px; border-radius: 50%; background: transparent; }
.cal-day.event .pip { background: var(--brand-60); }

.lavori-screen { display: flex; flex-direction: column; }
.lavori-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px 14px;
}
.lavori-titlebar h4 { font-size: 18px; font-weight: 700; }
.lavori-newbtn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 6px;
  background: var(--brand-60); color: var(--neutral-white);
  font-size: 12px; font-weight: 600;
}
.lavori-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 10px 22px;
  background: var(--surface-bg-soft);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--neutral-50);
}
.lavori-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 22px;
  border-bottom: 1px solid var(--surface-border);
}
.lavori-row:last-child { border-bottom: 0; }
.lavori-row .cmd .l { font-size: 13px; font-weight: 600; }
.lavori-row .cmd .s { font-size: 11px; color: var(--neutral-50); }
.lavori-row .euro { font-size: 12px; font-weight: 600; text-align: right; }
.lavori-row .fornitore { font-size: 12px; color: var(--neutral-70); }

.status-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
}
.status-chip .dot { width: 5px; height: 5px; border-radius: 50%; }
.status-chip.info   { background: var(--status-info-soft);   color: var(--status-info-text); }
.status-chip.info   .dot { background: var(--status-info); }
.status-chip.green  { background: var(--status-green-soft);  color: var(--status-green-text); }
.status-chip.green  .dot { background: var(--status-green); }
.status-chip.orange { background: var(--status-orange-soft); color: var(--status-orange-text); }
.status-chip.orange .dot { background: var(--status-orange); }
.status-chip.purple { background: var(--status-purple-soft); color: var(--status-purple-text); }
.status-chip.purple .dot { background: var(--status-purple); }

.portale-screen { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.portale-greet { display: flex; align-items: center; gap: 12px; }
.portale-greet .avatar { width: 44px; height: 44px; font-size: 16px; }
.portale-greet .name { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.portale-greet .where { font-size: 13px; color: var(--neutral-50); }
.portale-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pstat { padding: 14px; border-radius: var(--radius-support); display: flex; flex-direction: column; gap: 4px; }
.pstat-l { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; }
.pstat-v { font-size: 22px; font-weight: 700; }
.pstat--green  { background: var(--status-green-soft); }  .pstat--green  .pstat-l { color: var(--status-green-text); }
.pstat--info   { background: var(--status-info-soft); }   .pstat--info   .pstat-l { color: var(--status-info-text); }
.pstat--orange { background: var(--status-orange-soft); } .pstat--orange .pstat-l { color: var(--status-orange-text); }

.ann {
  padding: 14px 16px;
  background: var(--brand-200);
  border-radius: var(--radius-support);
  display: flex; flex-direction: column; gap: 10px;
}
.ann-top { display: flex; align-items: center; justify-content: space-between; }
.ann-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px;
  background: var(--brand-60); color: var(--neutral-white);
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
}
.ann-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-30); }
.ann-date { font-size: 11px; color: var(--brand-70); }
.ann-title { font-size: 16px; font-weight: 700; color: var(--brand-90); letter-spacing: -0.02em; }
.ann-desc  { font-size: 13px; line-height: 20px; color: var(--brand-70); }
.ann-actions { display: flex; gap: 8px; }
.ann-btn {
  padding: 7px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
}
.ann-btn.primary   { background: var(--brand-70); color: var(--neutral-white); }
.ann-btn.secondary { background: var(--neutral-white); color: var(--brand-70); }

/* ========= Stats Dark band ========= */
.bigstats { display: flex; flex-direction: column; align-items: center; gap: 56px; }
.bigstats-head { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 900px; text-align: center; }
.bigstats-head h2 { color: var(--neutral-white); }
.bigstats-row { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; align-items: center; width: 100%; }
.bigstats-row .div { width: 1px; height: 120px; background: var(--brand-70); justify-self: center; }
.bigstat { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bigstat .dot { width: 8px; height: 8px; border-radius: 50%; }
.bigstat .v { font-size: 76px; line-height: 80px; font-weight: 700; letter-spacing: -0.04em; color: var(--neutral-white); }
.bigstat .l { font-size: 14px; font-weight: 600; color: var(--brand-30); text-align: center; }
.bigstat .s { font-size: 12px; color: var(--neutral-50); text-align: center; }
.bigstats-footer { font-size: 15px; color: var(--brand-30); text-align: center; }

/* ========= Sicurezza (split big card) ========= */
.sec-card {
  display: grid;
  grid-template-columns: 1fr 440px;
  border-radius: 22px;
  background: var(--surface-bg-soft);
  border: 1px solid var(--surface-border);
  overflow: hidden;
}
.sec-left { padding: 56px 40px 56px 56px; display: flex; flex-direction: column; gap: 40px; }
.sec-left-head { display: flex; flex-direction: column; gap: 16px; }
.sec-left-head h2 { font-size: 44px; line-height: 52px; }
.sec-left-head p { font-size: 17px; line-height: 28px; color: var(--neutral-70); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 18px; }
.benefit { display: flex; align-items: center; gap: 14px; }
.benefit-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-panel); display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-icon.green  { background: var(--status-green-soft); color: var(--status-green-text); }
.benefit-icon.info   { background: var(--status-info-soft); color: var(--status-info-text); }
.benefit-icon.purple { background: var(--status-purple-soft); color: var(--status-purple-text); }
.benefit-icon.brand  { background: var(--brand-200); color: var(--brand-70); }
.benefit-icon.orange { background: var(--status-orange-soft); color: var(--status-orange-text); }
.benefit-icon.teal   { background: var(--status-info-soft); color: var(--chart-teal); }
.benefit-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.benefit-sub   { font-size: 13px; color: var(--neutral-50); }

.sec-right {
  background: var(--brand-90);
  color: var(--neutral-white);
  padding: 56px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.sec-right h3 { font-size: 28px; line-height: 34px; font-weight: 700; letter-spacing: -0.02em; }
.sec-right p { font-size: 14px; line-height: 22px; color: var(--brand-30); }
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px 7px 10px;
  background: var(--brand-70);
  border-radius: var(--radius-control);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.cert-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--chart-cyan); }

/* ========= Testimonials ========= */
.featured-quote {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding: 56px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  align-items: center;
}
.q-left { display: flex; flex-direction: column; gap: 32px; }
.q-mark { font-size: 140px; line-height: 60px; font-weight: 700; color: var(--brand-200); letter-spacing: -0.10em; }
.q-text { font-size: 26px; line-height: 38px; font-weight: 600; letter-spacing: -0.01em; color: var(--neutral-90); }
.q-author { display: flex; align-items: center; gap: 16px; }
.q-author .avatar { width: 56px; height: 56px; font-size: 18px; font-weight: 700; }
.q-name { font-size: 16px; font-weight: 700; }
.q-role { font-size: 14px; color: var(--neutral-50); }
.q-stat {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 28px;
  background: var(--brand-200);
  border-radius: 14px;
}
.q-stat .l { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--brand-70); }
.q-stat .v { font-size: 72px; line-height: 72px; font-weight: 700; letter-spacing: -0.04em; color: var(--brand-70); }
.q-stat .d { font-size: 14px; line-height: 22px; color: var(--brand-70); }

.testimonials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 56px; }
.testi {
  display: flex; flex-direction: column; gap: 20px;
  padding: 28px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
}
.testi-quote { font-size: 15px; line-height: 24px; color: var(--neutral-90); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar { width: 40px; height: 40px; font-size: 13px; font-weight: 600; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 13px; color: var(--neutral-50); }

/* ========= Pricing ========= */
.toggle {
  align-self: center;
  display: inline-flex;
  padding: 6px;
  background: var(--surface-bg-soft);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  margin-top: 24px;
}
.toggle button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  color: var(--neutral-70);
}
.toggle button.active { background: var(--neutral-white); color: var(--neutral-90); box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.toggle .save {
  padding: 2px 6px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
  background: var(--status-green-soft); color: var(--status-green-text);
}

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 56px; }
.plan {
  display: flex; flex-direction: column; gap: 28px;
  padding: 32px;
  border-radius: 18px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
}
.plan--hl { background: var(--brand-90); color: var(--neutral-white); border: 0; box-shadow: 0 8px 24px rgba(17,23,41,.18); }
.plan-head { display: flex; flex-direction: column; gap: 12px; }
.plan-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px 7px 10px;
  background: var(--brand-60); color: var(--neutral-white);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
}
.plan-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-30); }
.plan-name { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--neutral-50); }
.plan--hl .plan-name { color: var(--brand-30); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price .v { font-size: 56px; line-height: 60px; font-weight: 700; letter-spacing: -0.03em; color: var(--neutral-90); }
.plan--hl .plan-price .v { color: var(--neutral-white); }
.plan-price .per { font-size: 16px; color: var(--neutral-50); }
.plan--hl .plan-price .per { color: var(--brand-30); }
.plan-desc { font-size: 14px; line-height: 22px; color: var(--neutral-70); }
.plan--hl .plan-desc { color: var(--brand-30); }
.plan hr { border: 0; border-top: 1px solid var(--surface-border); margin: 0; }
.plan--hl hr { border-top: 1px solid var(--brand-70); }
.plan-feats { display: flex; flex-direction: column; gap: 12px; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 22px; }
.plan-feat svg { width: 16px; height: 16px; color: var(--status-green); flex-shrink: 0; }
.plan--hl .plan-feat svg { color: var(--brand-30); }
.plan-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: var(--radius-panel);
  background: var(--brand-60); color: var(--neutral-white);
  font-size: 14px; font-weight: 600;
}
.plan--hl .plan-cta { background: var(--neutral-white); color: var(--brand-70); }
.reass { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding-top: 24px; }
.reass-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--neutral-70); }
.reass-item svg { width: 16px; height: 16px; color: var(--status-green); }

/* ========= FAQ ========= */
.faq {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { display: flex; flex-direction: column; gap: 28px; }
.faq-left h2 { font-size: 56px; line-height: 62px; }
.faq-left p { font-size: 16px; line-height: 26px; color: var(--neutral-70); }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px 16px 20px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-support);
}
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius-control); background: var(--brand-200); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; color: var(--brand-70); }
.contact-title { font-size: 14px; font-weight: 600; }
.contact-sub { font-size: 13px; color: var(--neutral-50); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  padding: 24px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--brand-200); }

/* reset marker default di <summary> */
.faq-q { list-style: none; cursor: pointer; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-num {
  flex-shrink: 0;
  width: 40px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--neutral-40);
  transition: color .15s ease;
}
.faq-item[open] .faq-num { color: var(--brand-60); }
.faq-q-text {
  flex: 1;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--neutral-90);
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-control);
  background: var(--surface-bg-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.faq-toggle svg {
  width: 16px; height: 16px;
  color: var(--neutral-50);
  transition: color .15s ease;
}
.faq-toggle .ic-minus { display: none; }
.faq-toggle .ic-plus  { display: block; }
.faq-item[open] .faq-toggle { background: var(--brand-200); }
.faq-item[open] .faq-toggle svg { color: var(--brand-70); }
.faq-item[open] .faq-toggle .ic-minus { display: block; }
.faq-item[open] .faq-toggle .ic-plus  { display: none; }

.faq-a {
  margin-top: 12px;
  padding-left: 60px;            /* allinea sotto la domanda, oltre il numero */
  font-size: 15px;
  line-height: 24px;
  color: var(--neutral-70);
}
@media (max-width: 1100px) {
  .faq-a { padding-left: 0; }
}

/* ========= Final CTA ========= */
.final-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-dots { display: flex; align-items: center; gap: 12px; }
.cta-dots span { display: block; border-radius: 50%; }
.cta-dots span:nth-child(1) { width: 8px;  height: 8px;  background: var(--chart-cyan); }
.cta-dots span:nth-child(2) { width: 10px; height: 10px; background: var(--chart-mint); }
.cta-dots span:nth-child(3) { width: 14px; height: 14px; background: var(--status-yellow); }
.cta-dots span:nth-child(4) { width: 10px; height: 10px; background: var(--chart-violet-1); }
.cta-dots span:nth-child(5) { width: 8px;  height: 8px;  background: var(--chart-cyan-2); }
.final-cta h2 { font-size: 88px; line-height: 92px; font-weight: 700; letter-spacing: -0.04em; max-width: 1100px; color: var(--neutral-white); }
.final-cta .sub { font-size: 20px; line-height: 32px; color: var(--brand-30); max-width: 680px; }
.final-form { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.final-input {
  width: 360px; height: 56px;
  background: var(--brand-70);
  border: 1px solid var(--brand-60);
  border-radius: var(--radius-support);
  padding: 0 20px;
  color: var(--neutral-white);
  font-size: 15px;
}
.final-input::placeholder { color: var(--brand-30); }
.final-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 220px; height: 56px;
  background: var(--brand-60);
  color: var(--neutral-white);
  border-radius: var(--radius-support);
  font-size: 15px; font-weight: 600;
}
.final-reass { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 8px; }
.final-reass .item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--brand-30); }
.final-reass .item svg { width: 16px; height: 16px; color: var(--brand-30); }

/* ========= Footer ========= */
.footer { background: var(--brand-90); color: var(--neutral-white); }
.footer-top {
  display: grid;
  grid-template-columns: 340px repeat(4, 1fr);
  gap: 80px;
  padding: 80px var(--container-pad) 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-brand .wordmark { color: var(--neutral-white); font-size: 20px; }
.footer-brand p { font-size: 14px; line-height: 22px; color: var(--brand-30); }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--brand-30); }
.footer-col a { display: block; font-size: 14px; color: var(--neutral-40); }
.footer-col a:hover { color: var(--neutral-white); }
.footer-divider { height: 1px; background: var(--brand-70); margin: 0 var(--container-pad); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px var(--container-pad);
}
.footer-copy { font-size: 13px; color: var(--neutral-50); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--neutral-40); }
.footer-legal a:hover { color: var(--neutral-white); }

/* ========= Subpage hero + breadcrumb ========= */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 14px var(--container-pad);
  background: var(--surface-bg-soft);
  border-bottom: 1px solid var(--surface-border);
  font-size: 13px;
  color: var(--neutral-50);
}
.breadcrumb a { color: var(--neutral-70); }
.breadcrumb a:hover { color: var(--brand-60); }
.breadcrumb .sep { color: var(--neutral-40); }
.breadcrumb .current { color: var(--neutral-90); font-weight: 600; }

.subhero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px var(--container-pad) 96px;
  background: var(--surface-bg);
}
.subhero-copy { display: flex; flex-direction: column; gap: 24px; }
.subhero h1 { font-size: 56px; line-height: 62px; font-weight: 700; letter-spacing: -0.025em; }
.subhero h1 .accent-brand { color: var(--brand-60); }
.subhero p.lead { font-size: 19px; line-height: 30px; }
.subhero-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.subhero-bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.subhero-bullet svg { width: 18px; height: 18px; color: var(--status-green); flex-shrink: 0; }
.subhero-cta-row { display: flex; gap: 12px; margin-top: 8px; }

.subhero-mock {
  background: var(--brand-90);
  border-radius: 18px;
  padding: 14px;
}

/* ========= Feature blocks (alternating, sub-pages) ========= */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feat-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
}
.feat-card .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feat-card .ic svg { width: 20px; height: 20px; }
.feat-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.feat-card p { font-size: 15px; line-height: 24px; color: var(--neutral-70); }
.ic--blue   { background: var(--brand-200); color: var(--brand-70); }
.ic--green  { background: var(--status-green-soft); color: var(--status-green-text); }
.ic--orange { background: var(--status-orange-soft); color: var(--status-orange-text); }
.ic--purple { background: var(--status-purple-soft); color: var(--status-purple-text); }
.ic--info   { background: var(--status-info-soft); color: var(--status-info-text); }
.ic--teal   { background: var(--status-info-soft); color: var(--chart-teal); }

/* ========= Long-form content blocks ========= */
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px; line-height: 28px;
  color: var(--neutral-70);
}
.prose h2 { font-size: 36px; line-height: 44px; margin: 56px 0 20px; color: var(--neutral-90); letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 24px; line-height: 32px; margin: 40px 0 12px; color: var(--neutral-90); letter-spacing: -0.01em; }
.prose p  { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--neutral-90); font-weight: 600; }
.prose .callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--brand-200);
  border-radius: var(--radius-support);
  font-size: 15px; color: var(--brand-70);
  border-left: 4px solid var(--brand-60);
}
.prose .callout strong { color: var(--brand-90); }

/* ========= Hub feature page ========= */
.hub-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.hub-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  background: var(--surface-bg);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.hub-card:hover { border-color: var(--brand-200); transform: translateY(-2px); }
.hub-card .ic { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hub-card .ic svg { width: 22px; height: 22px; }
.hub-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.hub-card p { font-size: 14px; line-height: 22px; color: var(--neutral-70); }
.hub-card .link { font-size: 13px; font-weight: 600; color: var(--brand-60); margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }

/* ========= Cookie consent banner ========= */
.cc-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--brand-90);
  color: var(--neutral-white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: opacity .25s ease, transform .25s ease;
}
.cc-banner.cc-hide { opacity: 0; transform: translateY(8px); }
.cc-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.cc-text { flex: 1; font-size: 14px; line-height: 22px; color: rgba(255,255,255,0.92); }
.cc-text strong { color: var(--neutral-white); font-weight: 600; }
.cc-text a { color: var(--brand-30); text-decoration: underline; }
.cc-text a:hover { color: var(--neutral-white); }
.cc-actions { flex-shrink: 0; }
.cc-btn {
  font: inherit; cursor: pointer; border: 0;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  background: var(--neutral-white); color: var(--brand-90);
  transition: background .15s ease;
}
.cc-btn:hover { background: var(--brand-30); }
@media (max-width: 700px) {
  .cc-inner { flex-direction: column; align-items: stretch; gap: 14px; text-align: center; }
  .cc-actions { display: flex; justify-content: center; }
}

/* ========= Responsive (light tablet/mobile fallback) ========= */
@media (max-width: 1100px) {
  :root { --container-pad: 40px; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 72px; }
  .pillars-row, .testimonials-row, .plans { grid-template-columns: 1fr; }
  .tour-block, .tour-block.reverse { grid-template-columns: 1fr; gap: 40px; }
  .tour-block.reverse .tour-copy, .tour-block.reverse .tour-mock { order: initial; }
  .sec-card { grid-template-columns: 1fr; }
  .sec-right { padding: 32px; }
  .featured-quote { grid-template-columns: 1fr; padding: 32px; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .bigstats-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bigstats-row .div { display: none; }
  .nav-links { display: none; }
  .subhero { grid-template-columns: 1fr; padding: 56px var(--container-pad); }
  .feat-grid { grid-template-columns: 1fr; }
  .hub-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .h1 { font-size: 44px; line-height: 50px; }
  .h2 { font-size: 36px; line-height: 42px; }
  .h3 { font-size: 28px; line-height: 34px; }
  .topnav { padding: 16px; }
  .final-cta h2 { font-size: 52px; line-height: 58px; }
  .final-form { flex-direction: column; }
  .final-input, .final-submit { width: 100%; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .minicards { grid-template-columns: 1fr; }
}
