    /* Prevent horizontal overflow (iOS bounce / mobile sideways swipe) */
    html { overflow-x: hidden; overflow-x: clip; }

    .bergamo-landing {
      max-width: 100%;
      overflow-x: hidden;
      overflow-x: clip;
      /* Surfaces — light theme aligned with site brand */
      --bg:#ffffff; --bg-2:#f5f7fa; --bg-3:#eef2f7;
      --surface:#ffffff; --surface-2:#f0f5fb; --surface-3:#e7eef7;
      /* Lines */
      --line:rgba(10,22,40,.10); --line-2:rgba(10,22,40,.16); --line-accent:rgba(0,113,197,.30);
      /* Text */
      --text:#0a1628; --muted:#4a5564; --dim:#6b7280;
      /* Accent — uses site brand blue + cyan */
      --accent:#0071c5; --accent-2:#00a8e8; --cyan:#4dc4ff;
      --accent-soft:rgba(0,168,232,.10); --accent-glow:rgba(0,113,197,.35);
      --green:#16a34a; --amber:#d97706;
      /* Type */
      --display:"Space Grotesk","Segoe UI",sans-serif;
      --body:"Inter","Segoe UI",sans-serif;
      /* Radii */
      --r-sm:8px; --r:14px; --r-lg:20px; --r-xl:28px;
      /* Layout */
      --maxw:1200px; --pad:clamp(20px,5vw,40px);
      --shadow:0 12px 36px -14px rgba(10,22,40,.16), 0 2px 8px -2px rgba(10,22,40,.06);
      --shadow-sm:0 6px 18px -8px rgba(10,22,40,.14);
      --glow:0 0 0 1px rgba(0,113,197,.20),0 18px 40px -14px rgba(0,113,197,.35);

      position: relative;
      padding-top: 80px;
      font-family: var(--body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    .bergamo-landing * { box-sizing: border-box; }
    .bergamo-landing h1, .bergamo-landing h2, .bergamo-landing h3, .bergamo-landing h4 {
      font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; margin: 0;
    }
    .bergamo-landing p { margin: 0; text-wrap: pretty; }
    .bergamo-landing a { color: inherit; text-decoration: none; }
    .bergamo-landing ul { margin: 0; padding: 0; list-style: none; }
    .bergamo-landing .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

    /* Decorative background */
    .bergamo-landing .bg-deco {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(900px 600px at 78% -8%, rgba(0,168,232,.10), transparent 60%),
        radial-gradient(700px 500px at 8% 4%, rgba(77,196,255,.06), transparent 55%);
    }
    /* Grid pattern removed for cleaner light theme */
    .bergamo-landing .page { position: relative; z-index: 1; }

    /* Bergamo-scoped buttons */
    .bergamo-landing .bbtn {
      display: inline-flex; align-items: center; gap: 9px; justify-content: center;
      font-family: var(--body); font-weight: 600; font-size: 15px; line-height: 1.2;
      padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
      cursor: pointer; transition: transform .18s, box-shadow .25s, background .2s, border-color .2s;
      max-width: 100%; text-align: center;
    }
    .bergamo-landing .bbtn svg { width: 17px; height: 17px; }
    .bergamo-landing .bbtn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -10px var(--accent-glow); }
    .bergamo-landing .bbtn-primary:hover { background: #3b78ff; transform: translateY(-2px); box-shadow: 0 16px 34px -10px var(--accent-glow); }
    .bergamo-landing .bbtn-ghost { background: var(--surface); color: var(--text); border-color: var(--line-2); }
    .bergamo-landing .bbtn-ghost:hover { background: var(--bg-2); transform: translateY(-2px); }
    .bergamo-landing .bbtn-lg { padding: 16px 30px; font-size: 16px; }

    /* Breadcrumbs */
    .bergamo-landing .breadcrumbs { padding: 20px 0 0; }
    .bergamo-landing .breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: var(--dim); margin: 0; padding: 0; list-style: none; }
    .bergamo-landing .breadcrumbs li { display: inline-flex; align-items: center; }
    .bergamo-landing .breadcrumbs li + li::before { content: "›"; color: var(--dim); margin-right: 6px; font-size: 15px; line-height: 1; }
    .bergamo-landing .breadcrumbs a { color: var(--accent-2); transition: color .2s; }
    .bergamo-landing .breadcrumbs a:hover { color: var(--text); }
    .bergamo-landing .breadcrumbs li[aria-current="page"] { color: var(--muted); }

    /* Info / NAP card */
    .bergamo-landing .info-card {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: clamp(24px, 4vw, 44px);
      padding: clamp(28px, 4vw, 44px);
      border-radius: var(--r-xl);
      background: linear-gradient(160deg, var(--surface), var(--bg-3));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      align-items: start;
    }
    .bergamo-landing .info-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--accent), var(--cyan)); color: #fff;
    }
    .bergamo-landing .info-col-brand h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 14px 0 10px; }
    .bergamo-landing .info-col-brand p { color: var(--muted); font-size: 14.5px; }
    .bergamo-landing .info-h { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-2); margin-bottom: 14px; font-family: var(--display); font-weight: 700; }
    .bergamo-landing .info-addr { font-style: normal; color: var(--text); font-size: 15px; line-height: 1.7; display: flex; gap: 10px; align-items: flex-start; }
    .bergamo-landing .info-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; color: var(--text); font-size: 15px; line-height: 1.6; }
    .bergamo-landing .info-addr svg, .bergamo-landing .info-line svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; margin-top: 3px; }
    .bergamo-landing .info-line a { color: var(--text); }
    .bergamo-landing .info-line a:hover { color: var(--accent-2); }

    /* Hero (variant B only — centered) */
    .bergamo-landing .hero { position: relative; padding: clamp(16px, 2.5vw, 32px) 0 8px; }
    .bergamo-landing .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
      color: var(--accent-2); padding: 7px 14px; border-radius: 999px;
      background: var(--accent-soft); border: 1px solid var(--line-accent);
    }
    .bergamo-landing .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: bergamo-pulse 2.4s infinite; }
    @keyframes bergamo-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

    .bergamo-landing .hero-b { text-align: center; }
    .bergamo-landing .hero-b .eyebrow { margin-bottom: 14px; }
    .bergamo-landing .hero h1 { font-size: clamp(32px, 5.5vw, 58px); max-width: 18ch; margin: 0 auto; letter-spacing: -.025em; line-height: 1.08; }
    .bergamo-landing .hero h1 .grad { background: linear-gradient(100deg, var(--accent-2), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .bergamo-landing .hero .lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); margin: 14px auto 0; max-width: 60ch; }
    .bergamo-landing .hero-desc { font-size: 15px; color: var(--dim); margin: 12px auto 0; max-width: 64ch; line-height: 1.6; }
    .bergamo-landing .hero-desc strong { color: var(--accent-2); font-weight: 600; }
    .bergamo-landing .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; justify-content: center; }
    .bergamo-landing .hero-note { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 13.5px; color: var(--dim); justify-content: center; }
    .bergamo-landing .hero-note svg { width: 17px; height: 17px; color: var(--amber); flex: none; }
    .bergamo-landing .hero-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
    .bergamo-landing .hero-strip .item { padding: 22px 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); text-align: left; }
    .bergamo-landing .hero-strip .item svg { width: 24px; height: 24px; color: var(--accent-2); margin-bottom: 12px; }
    .bergamo-landing .hero-strip .item .hs-title { font-family: var(--display); font-weight: 600; font-size: 15px; line-height: 1.2; color: var(--text); margin-bottom: 4px; }
    .bergamo-landing .hero-strip .item .hs-desc { font-size: 13.5px; color: var(--muted); }

    /* Section scaffolding */
    .bergamo-landing section { position: relative; }
    .bergamo-landing .band { padding: clamp(40px, 5.5vw, 68px) 0; }
    .bergamo-landing .band.alt { background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent); }
    /* Tighten gap between hero and the first section that follows */
    .bergamo-landing .hero + .band { padding-top: clamp(8px, 1.2vw, 14px); }
    .bergamo-landing .sec-head { max-width: 720px; margin-bottom: clamp(24px, 3.2vw, 36px); }
    .bergamo-landing .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .bergamo-landing .kicker { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .bergamo-landing .sec-head.center .kicker { justify-content: center; }
    .bergamo-landing .kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent-2); border-radius: 2px; }
    .bergamo-landing .sec-head.center .kicker::before { display: none; }
    .bergamo-landing .sec-head h2 { font-size: clamp(28px, 3.6vw, 44px); }
    .bergamo-landing .sec-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }
    .bergamo-landing .lede { font-size: clamp(17px,1.5vw,19px); color: var(--muted); }
    .bergamo-landing .lede + .lede { margin-top: 18px; }
    .bergamo-landing .lede strong, .bergamo-landing .lede b { color: var(--text); font-weight: 600; }

    /* Intro statement */
    .bergamo-landing .statement { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
    .bergamo-landing .statement .big { font-family: var(--display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 500; line-height: 1.28; letter-spacing: -.01em; }
    .bergamo-landing .statement .big .hl { color: var(--accent-2); }
    .bergamo-landing .statement .body p + p { margin-top: 18px; }

    /* Services */
    .bergamo-landing .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .bergamo-landing .card {
      position: relative; padding: 28px; border-radius: var(--r-lg);
      background: var(--surface); border: 1px solid var(--line);
      transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s, background .28s;
      overflow: hidden;
    }
    .bergamo-landing .card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, var(--line-accent), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
    .bergamo-landing .card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
    .bergamo-landing .card:hover::before { opacity: 1; }
    .bergamo-landing .card .ico {
      width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
      background: linear-gradient(150deg, var(--accent-soft), rgba(77,196,255,.10));
      border: 1px solid var(--line-accent); color: var(--accent-2);
    }
    .bergamo-landing .card .ico svg { width: 26px; height: 26px; }
    .bergamo-landing .card h3 { font-size: 19px; margin-bottom: 10px; }
    .bergamo-landing .card p { color: var(--muted); font-size: 15px; }
    .bergamo-landing .card p + p { margin-top: 12px; }
    .bergamo-landing .card .num { position: absolute; top: 22px; right: 24px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--dim); opacity: .6; }

    /* Signals */
    .bergamo-landing .signals { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
    .bergamo-landing .signal-list { display: grid; gap: 12px; }
    .bergamo-landing .signal {
      display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
      border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
      transition: border-color .25s, transform .25s, background .25s;
    }
    @media (hover: hover) { .bergamo-landing .signal:hover { border-color: var(--line-accent); transform: translateX(4px); background: var(--surface-2); } }
    .bergamo-landing .signal .x { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(242,181,68,.12); color: var(--amber); }
    .bergamo-landing .signal .x svg { width: 15px; height: 15px; }
    .bergamo-landing .signal span { font-size: 15px; color: var(--text); }
    .bergamo-landing .signals .aside { align-self: stretch; }
    .bergamo-landing .callout {
      height: 100%; padding: clamp(28px,4vw,40px); border-radius: var(--r-xl);
      background: linear-gradient(160deg, var(--surface-2), var(--bg-3));
      border: 1px solid var(--line); box-shadow: var(--shadow);
      display: flex; flex-direction: column; justify-content: center; gap: 18px;
    }
    .bergamo-landing .callout .badge { align-self: flex-start; }
    .bergamo-landing .callout h3 { font-size: clamp(22px,2.4vw,30px); }
    .bergamo-landing .callout p { color: var(--muted); }
    .bergamo-landing .callout .accent { color: var(--accent-2); font-weight: 600; }

    /* Audience chips */
    .bergamo-landing .chips { display: flex; flex-wrap: wrap; gap: 12px; }
    .bergamo-landing .chip {
      display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px;
      border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
      font-size: 15px; font-weight: 500; transition: .25s;
    }
    .bergamo-landing .chip:hover { border-color: var(--line-accent); color: var(--accent-2); transform: translateY(-2px); }
    .bergamo-landing .chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }
    .bergamo-landing .exclude { margin-top: 28px; display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--r); background: rgba(242,181,68,.06); border: 1px solid rgba(242,181,68,.22); color: var(--muted); font-size: 15px; }
    .bergamo-landing .exclude svg { width: 20px; height: 20px; color: var(--amber); flex: none; }

    /* Coverage */
    .bergamo-landing .coverage { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px,5vw,60px); align-items: center; }
    .bergamo-landing .map-card {
      position: relative; border-radius: var(--r-xl); padding: 36px; min-height: 360px;
      background: linear-gradient(160deg, var(--surface), var(--bg-3));
      border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
    }
    .bergamo-landing .map-card::before {
      content: ""; position: absolute; inset: 0;
      background-image: radial-gradient(rgba(91,155,255,.18) 1.4px, transparent 1.6px);
      background-size: 26px 26px; -webkit-mask-image: radial-gradient(60% 60% at 40% 40%, #000, transparent 75%); mask-image: radial-gradient(60% 60% at 40% 40%, #000, transparent 75%);
    }
    .bergamo-landing .map-card .ping { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(0,168,232,.5); animation: bergamo-ping 2.6s ease-out infinite; }
    @keyframes bergamo-ping { 0% { box-shadow: 0 0 0 0 rgba(0,168,232,.5);} 100% { box-shadow: 0 0 0 18px rgba(0,168,232,0);} }
    .bergamo-landing .map-card .pin-main { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 14px; background: var(--accent); color: #fff; font-weight: 600; box-shadow: 0 14px 30px -10px var(--accent-glow); }
    .bergamo-landing .map-card .pin-main svg { width: 18px; height: 18px; }
    .bergamo-landing .towns { display: flex; flex-wrap: wrap; gap: 9px; }
    .bergamo-landing .towns .t { padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; color: var(--muted); transition: .2s; }
    .bergamo-landing .towns .t:hover { border-color: var(--line-accent); color: var(--text); }
    .bergamo-landing .coverage .modes { display: grid; gap: 14px; margin-top: 26px; }
    .bergamo-landing .mode { display: flex; gap: 14px; align-items: flex-start; }
    .bergamo-landing .mode .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--line-accent); color: var(--accent-2); }
    .bergamo-landing .mode .ico svg { width: 21px; height: 21px; }
    .bergamo-landing .mode h3 { font-size: 16px; margin-bottom: 3px; }
    .bergamo-landing .mode p { font-size: 14px; color: var(--muted); }

    /* Why us */
    .bergamo-landing .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .bergamo-landing .why { padding: 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); transition: .28s; }
    .bergamo-landing .why:hover { transform: translateY(-5px); border-color: var(--line-2); }
    .bergamo-landing .why .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(150deg, var(--accent), var(--cyan)); color: #fff; box-shadow: 0 10px 24px -10px var(--accent-glow); }
    .bergamo-landing .why .ico svg { width: 23px; height: 23px; }
    .bergamo-landing .why h3 { font-size: 18px; margin-bottom: 9px; }
    .bergamo-landing .why p { color: var(--muted); font-size: 14.5px; }
    .bergamo-landing .why.span2 { grid-column: span 2; display: flex; gap: 26px; align-items: center; background: linear-gradient(150deg, var(--surface-2), var(--bg-3)); }
    .bergamo-landing .why.span2 .ico { flex: none; width: 56px; height: 56px; }
    .bergamo-landing .why.span2 > div { flex: 1; }

    /* Audit */
    .bergamo-landing .audit { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,60px); align-items: start; }
    .bergamo-landing .audit-card { position: sticky; top: 96px; padding: clamp(28px,4vw,40px); border-radius: var(--r-xl); background: linear-gradient(160deg, var(--accent), #1e4fd6); color: #fff; box-shadow: var(--glow); }
    .bergamo-landing .audit-card .kicker { color: rgba(255,255,255,.85); }
    .bergamo-landing .audit-card .kicker::before { background: rgba(255,255,255,.85); }
    .bergamo-landing .audit-card h2 { font-size: clamp(26px,3vw,38px); color: #fff; }
    .bergamo-landing .audit-card p { color: rgba(255,255,255,.86); margin: 16px 0 28px; }
    .bergamo-landing .audit-card .bbtn-primary { background: #fff; color: var(--accent); box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); }
    .bergamo-landing .audit-card .bbtn-primary:hover { background: #eef3ff; }
    .bergamo-landing .check-list { display: grid; gap: 12px; }
    .bergamo-landing .check-list li { display: flex; align-items: flex-start; gap: 13px; padding: 15px 18px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); font-size: 15.5px; transition: .24s; }
    .bergamo-landing .check-list li:hover { border-color: var(--line-accent); background: var(--surface-2); }
    .bergamo-landing .check-list .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(54,209,122,.14); color: var(--green); }
    .bergamo-landing .check-list .tick svg { width: 14px; height: 14px; }

    /* Duo panels */
    .bergamo-landing .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .bergamo-landing .panel { padding: clamp(26px,3.5vw,38px); border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); }
    .bergamo-landing .panel .ico-lg { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--accent-soft); border: 1px solid var(--line-accent); color: var(--accent-2); }
    .bergamo-landing .panel .ico-lg svg { width: 27px; height: 27px; }
    .bergamo-landing .panel h3 { font-size: clamp(20px,2.2vw,26px); margin-bottom: 10px; }
    .bergamo-landing .panel > p { color: var(--muted); margin-bottom: 22px; font-size: 15.5px; }
    .bergamo-landing .tidy { display: grid; gap: 11px; }
    .bergamo-landing .tidy li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
    .bergamo-landing .tidy li svg { flex: none; width: 18px; height: 18px; color: var(--accent-2); margin-top: 3px; }

    /* FAQ — CSS-only expand (grid-template-rows trick, no JS scrollHeight reads) */
    .bergamo-landing .faq { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
    .bergamo-landing .qa {
      display: grid; grid-template-rows: auto 0fr;
      border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden;
      transition: grid-template-rows .35s ease, border-color .25s;
    }
    .bergamo-landing .qa.open { grid-template-rows: auto 1fr; border-color: var(--line-accent); }
    .bergamo-landing .qa button {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--text);
      font-family: var(--display); font-weight: 600; font-size: clamp(16px,1.8vw,19px);
      padding: 22px 24px; display: flex; align-items: center; gap: 16px;
    }
    .bergamo-landing .qa .q-ico { flex: none; margin-left: auto; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--accent-2); transition: transform .3s, background .25s; }
    .bergamo-landing .qa.open .q-ico { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }
    .bergamo-landing .qa .q-ico svg { width: 16px; height: 16px; }
    .bergamo-landing .qa .a { min-height: 0; overflow: hidden; }
    .bergamo-landing .qa .a p { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; }

    /* Native smooth-scroll offset for fixed header (replaces JS) */
    html { scroll-padding-top: 90px; }

    /* Final CTA */
    .bergamo-landing .final {
      position: relative; border-radius: var(--r-xl); overflow: hidden;
      padding: clamp(40px,6vw,72px); text-align: center;
      background: linear-gradient(150deg, var(--surface-2), var(--bg-3));
      border: 1px solid var(--line-2);
    }
    .bergamo-landing .final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 50% -10%, rgba(0,168,232,.18), transparent 60%); }
    .bergamo-landing .final > * { position: relative; }
    .bergamo-landing .final h2 { font-size: clamp(28px,4vw,48px); max-width: 18ch; margin: 0 auto; }
    .bergamo-landing .final p { color: var(--muted); font-size: 18px; margin: 20px auto 34px; max-width: 60ch; }
    .bergamo-landing .final .hero-cta { justify-content: center; }
    .bergamo-landing .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
    .bergamo-landing .contact-row a { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
    .bergamo-landing .contact-row a:hover { color: var(--accent-2); }
    .bergamo-landing .contact-row svg { width: 18px; height: 18px; color: var(--accent-2); }

    .bergamo-landing .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600; background: var(--accent-soft); border: 1px solid var(--line-accent); color: var(--accent-2); }

    /* Scroll reveal */
    .bergamo-landing .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
    .bergamo-landing .reveal.in { opacity: 1; transform: none; }
    .bergamo-landing .reveal[data-d="1"] { transition-delay: .07s; }
    .bergamo-landing .reveal[data-d="2"] { transition-delay: .14s; }
    .bergamo-landing .reveal[data-d="3"] { transition-delay: .21s; }
    @media (prefers-reduced-motion: reduce) { .bergamo-landing .reveal { opacity: 1; transform: none; transition: none; } }

    /* Responsive */
    @media (max-width: 980px) {
      .bergamo-landing .statement,
      .bergamo-landing .signals,
      .bergamo-landing .coverage,
      .bergamo-landing .audit,
      .bergamo-landing .duo { grid-template-columns: 1fr; }
      .bergamo-landing .services-grid,
      .bergamo-landing .why-grid,
      .bergamo-landing .hero-strip { grid-template-columns: 1fr 1fr; }
      .bergamo-landing .why.span2 { grid-column: span 2; }
      .bergamo-landing .audit-card { position: static; }
      .bergamo-landing .info-card { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .bergamo-landing .services-grid,
      .bergamo-landing .why-grid,
      .bergamo-landing .hero-strip,
      .bergamo-landing .info-card { grid-template-columns: 1fr; }
      .bergamo-landing .why.span2 { grid-column: span 1; flex-direction: column; align-items: flex-start; }
      .bergamo-landing .hero { padding-top: 28px; }
      /* Force span-3 service card (#07) to single column on mobile */
      .bergamo-landing .services-grid > article[style*="span 3"] { grid-column: span 1 !important; }
      /* Long emails / addresses break cleanly instead of overflowing */
      .bergamo-landing .info-line,
      .bergamo-landing .info-addr { overflow-wrap: anywhere; word-break: break-word; }
    }

    /* Footer over dark page — keep visible separator */
    body .footer { background: #0a1628; }
