:root {
  --navy-950: #041a38;
  --navy-900: #062954;
  --navy-800: #083b75;
  --blue-700: #07539a;
  --blue-600: #0b6eb8;
  --blue-500: #2a83bd;
  --cyan: #69bddb;
  --lime: #91c83e;
  --ink: #102a46;
  --muted: #5b6d80;
  --line: #dce4ec;
  --surface: #f5f7fa;
  --white: #fff;
  --success: #0c8b63;
  --radius: 16px;
  --shadow: 0 20px 55px rgba(4, 24, 57, .13);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Inter", Arial, ui-sans-serif, system-ui, sans-serif; font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { max-width: 100%; display: block; }
.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" -25, "opsz" 24;
}
.audio-icon { width: 23px; height: 23px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; }
button, input, select { font: inherit; }
button, .button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #5ab4ff; outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--blue-700); border-radius: 8px; }
.skip-link:focus { top: 12px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.1; }
h1 { margin-bottom: 24px; font-size: clamp(2.55rem, 5vw, 3.6rem); font-weight: 790; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.7vw, 2.55rem); }
h3 { margin-bottom: 10px; font-size: 1.2rem; }
.eyebrow { margin-bottom: 16px; color: var(--blue-700); font-size: .75rem; font-weight: 800; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-light { color: var(--lime); }
.section { padding: 108px 0; }
.section-heading { max-width: 800px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-intro { max-width: 680px; color: var(--muted); font-size: 1.06rem; }

.site-header { position: relative; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); background: var(--navy-950); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-size: 1rem; font-weight: 850; letter-spacing: .09em; line-height: 1; text-decoration: none; }
.brand-logo { width: 166px; height: auto; object-fit: contain; }
.site-header .brand-logo, footer .brand-logo { filter: brightness(1.6) saturate(.9); }
.brand small { display: block; margin-top: 6px; color: #8db0d6; font-size: .48rem; letter-spacing: .18em; }
.brand-mark { width: 31px; height: 31px; display: inline-flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 5px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; }
.brand-mark i { width: 3px; display: block; background: #56c8f7; border-radius: 9px; }
.brand-mark i:nth-child(1), .brand-mark i:nth-child(3) { height: 10px; }
.brand-mark i:nth-child(2) { height: 18px; background: var(--lime); }
.header-contact { display: flex; align-items: center; gap: 20px; }
.header-contact > span { color: #b5c6da; font-size: .78rem; }
.button { position: relative; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 24px; overflow: hidden; border: 0; border-radius: 10px; font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease; }
.button::before { content: ""; position: absolute; inset: -2px auto -2px -45%; width: 30%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transform: skewX(-18deg); transition: left .55s cubic-bezier(.2,.7,.2,1); }
.button:hover { transform: translateY(-2px); }
.button:hover::before { left: 125%; }
.button span { transition: transform .22s ease; }
.button:hover span { transform: translateX(3px); }
.button-small { min-height: 44px; padding: 9px 18px; font-size: .88rem; }
.button-outline { color: var(--white); border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.button-outline:hover { background: rgba(255,255,255,.12); }
.button-primary { color: var(--white); background: var(--blue-600); box-shadow: 0 10px 24px rgba(8,116,231,.23); }
.button-primary:hover { background: #0066d3; }
.button-primary:disabled { opacity: .65; cursor: wait; transform: none; }
.hero .lead-form .button-primary:not(:disabled) { animation: hero-cta-attention 5.5s ease-in-out infinite; }
.button-white { color: var(--navy-900); background: var(--white); }
.button-wide { width: 100%; }

.hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(118deg, #0a477f 0%, #0866a3 58%, #1682b7 100%); }
.hero-glow { position: absolute; width: 580px; height: 580px; right: -180px; top: -220px; border-radius: 50%; background: rgba(45,139,190,.16); filter: blur(10px); transform: translate3d(0, calc(var(--vector-shift, 0px) * -.35), 0); }
.sonic-wave { position: absolute; z-index: 1; inset: 7% -8% auto 31%; height: 58%; pointer-events: none; opacity: .34; transform: rotate(-4deg) translate3d(0, var(--vector-shift, 0px), 0); }
.sonic-wave svg { width: 100%; height: 100%; overflow: visible; }
.sonic-wave path { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.sonic-wave-primary { stroke: rgba(145,200,62,.34); stroke-width: 1.4; stroke-dasharray: 8 15; }
.sonic-wave-secondary { stroke: rgba(105,189,219,.22); stroke-width: 1; stroke-dasharray: 3 18; }
.hero-image-placeholder { position: absolute; inset: 0 0 0 50%; opacity: .32; background: linear-gradient(130deg, transparent 15%, rgba(25,118,206,.28)), radial-gradient(circle at 75% 45%, rgba(108,210,250,.22), transparent 33%); }
.hero-image-placeholder::after { content: ""; position: absolute; inset: 16% 6% 12% 18%; border: 1px dashed rgba(255,255,255,.15); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.08)); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); gap: clamp(48px, 6vw, 86px); align-items: center; padding-top: 80px; padding-bottom: 85px; }
.hero-copy { max-width: 680px; }
.hero-lead { max-width: 650px; margin-bottom: 28px; color: #d7e3f0; font-size: 1.09rem; }
.hero-audience-note { width: fit-content; margin: -12px 0 25px; padding-left: 13px; color: #eef7dc; border-left: 2px solid var(--lime); font-size: .86rem; font-weight: 700; letter-spacing: .01em; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 22px; margin: 0 0 27px; padding: 0; list-style: none; color: #e6eef7; font-size: .93rem; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "check"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; color: var(--navy-900); background: var(--lime); border-radius: 50%; font-family: "Material Symbols Outlined"; font-size: 15px; font-weight: 400; line-height: 1; font-feature-settings: "liga"; }
.trial-note { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; margin-bottom: 30px; padding: 17px 20px; overflow: hidden; color: #dceaf5; border: 1px solid rgba(177,226,105,.72); border-radius: 13px; background: linear-gradient(135deg, rgba(3,40,78,.78), rgba(5,91,139,.64)); box-shadow: 0 14px 34px rgba(2,29,58,.2), inset 0 1px 0 rgba(255,255,255,.08); font-size: .82rem; }
.trial-note::after { content: ""; position: absolute; width: 140px; height: 140px; right: -62px; top: -82px; border-radius: 50%; background: rgba(145,200,62,.14); filter: blur(8px); }
.trial-note-icon { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; color: #173311; border-radius: 12px; background: linear-gradient(135deg, #b6e36f, var(--lime)); font-size: 27px; line-height: 1; box-shadow: 0 7px 18px rgba(69,112,20,.22); font-variation-settings: "FILL" 1, "wght" 400, "GRAD" -25, "opsz" 28; }
.trial-note > div { position: relative; z-index: 1; display: grid; gap: 2px; }
.trial-note strong { color: #fff; font-size: 1.08rem; line-height: 1.2; }
.trial-note strong b { color: #b8e76e; font-size: 1.32em; font-weight: 800; }
.trial-note > div > span { color: #cfdeeb; font-size: .8rem; line-height: 1.45; }
.social-proof { width: 100%; max-width: none; padding: 18px 20px 20px; color: var(--ink); border: 1px solid rgba(214,226,237,.94); border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,248,251,.96)); box-shadow: 0 18px 44px rgba(2,25,53,.2), inset 0 1px 0 #fff; }
.social-proof p { margin-bottom: 15px; color: #5d7186; font-size: .72rem; font-weight: 700; letter-spacing: .055em; line-height: 1.45; text-transform: uppercase; }
.social-proof p strong { color: var(--blue-700); }
.client-logos { width: 100%; padding-top: 14px; overflow: visible; border-top: 1px solid #dce5ed; }
.client-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 10px; }
.client-logo-slot { min-width: 0; min-height: 52px; flex: 0 1 calc(20% - 8px); display: grid; place-items: center; }
.client-logos .client-logo { width: min(var(--logo-w), 100%); height: var(--logo-h); max-width: 100%; justify-self: center; object-fit: contain; filter: none; opacity: 1; mix-blend-mode: normal; }
.client-logos-caption { display: block; margin-top: 12px; color: #72859a; font-size: .66rem; font-weight: 600; letter-spacing: .04em; line-height: 1.35; text-align: center; }
.logo-douglas { --logo-w: 96px; --logo-h: 20px; }
.logo-deco { --logo-w: 42px; --logo-h: 31px; }
.logo-despar { --logo-w: 100px; --logo-h: 16px; }
.logo-basko { --logo-w: 96px; --logo-h: 24px; }
.logo-pro7 { --logo-w: 60px; --logo-h: 32px; }
.logo-sole365 { --logo-w: 38px; --logo-h: 35px; }
.logo-tigross { --logo-w: 72px; --logo-h: 29px; }
.logo-migross { --logo-w: 86px; --logo-h: 27px; }
.logo-mondo-convenienza { --logo-w: 90px; --logo-h: 30px; }
.logo-iperceramica { --logo-w: 54px; --logo-h: 33px; }

.form-card { position: relative; padding: clamp(24px, 3vw, 32px); overflow: hidden; color: var(--ink); border: 1px solid rgba(255,255,255,.7); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: box-shadow .28s ease, transform .28s ease; }
.form-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--lime), var(--cyan) 48%, var(--blue-600)); transform-origin: left; }
.form-card:focus-within { box-shadow: 0 24px 65px rgba(4,24,57,.2), 0 0 0 1px rgba(184,245,56,.42); transform: translateY(-2px); }
.form-card h2 { margin-bottom: 8px; font-size: clamp(1.45rem, 2.2vw, 1.8rem); }
.form-card > p:not(.form-kicker) { margin-bottom: 18px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.form-kicker { margin-bottom: 7px; color: var(--blue-700); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lead-form { display: grid; gap: 11px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field-row-selects { grid-template-columns: 1fr 1fr; align-items: end; }
.field label { display: block; margin-bottom: 5px; color: #243957; font-size: .74rem; font-weight: 750; }
.field input, .field select { width: 100%; min-height: 45px; padding: 9px 11px; color: var(--ink); border: 1px solid #cbd7e4; border-radius: 8px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,116,231,.14); }
.field input:user-invalid, .field select:user-invalid { border-color: #b42318; }
.privacy-check { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.privacy-check input { flex: 0 0 auto; width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--blue-700); }
.privacy-check a { color: var(--blue-700); font-weight: 650; }
.optional-field { border: 1px solid #dbe4ed; border-radius: 8px; background: #f8fafc; }
.optional-field summary { position: relative; min-height: 44px; display: flex; align-items: center; padding: 10px 34px 10px 12px; color: #34506e; font-size: .73rem; font-weight: 700; cursor: pointer; list-style: none; }
.optional-field summary::-webkit-details-marker { display: none; }
.optional-field summary::after { content: "add"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--blue-700); font-family: "Material Symbols Outlined"; font-size: 19px; font-feature-settings: "liga"; }
.optional-field[open] summary::after { content: "remove"; }
.optional-field summary span { margin-left: .28em; color: var(--muted); font-weight: 500; }
.optional-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; padding: 0 12px 12px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-error { padding: 10px 12px; color: #8f2119; background: #fff0ee; border-radius: 7px; font-size: .78rem; }
.form-microcopy { margin: -4px 0 0; color: #748295; font-size: .7rem; text-align: center; }
.form-microcopy span { padding: 0 5px; color: #abb5c1; }
.cf-turnstile { min-height: 65px; margin: -2px 0; overflow: hidden; }

.trust-strip { position: relative; padding: 30px 0; border-bottom: 1px solid #dce6ef; background: linear-gradient(180deg, #eef5fa, #f7fafc); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-grid article { position: relative; min-height: 176px; display: flex; flex-direction: column; justify-content: flex-end; padding: 23px 24px; overflow: hidden; border: 1px solid #dce7ef; border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 9px 28px rgba(16,53,86,.055); }
.trust-grid article::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--blue-700), var(--cyan), var(--lime)); }
.trust-grid article::after { content: ""; position: absolute; width: 105px; height: 105px; right: -55px; top: -55px; border: 1px solid rgba(7,83,154,.08); border-radius: 50%; box-shadow: 0 0 0 22px rgba(7,83,154,.018); }
.trust-grid small { margin-bottom: auto; color: #65798e; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.trust-grid strong { display: block; margin: 18px 0 7px; color: var(--blue-700); font-size: clamp(1.75rem, 2.8vw, 2.5rem); letter-spacing: -.055em; line-height: .95; }
.trust-grid strong span { color: var(--lime); font-size: .62em; vertical-align: top; }
.trust-grid p { margin: 0; color: #52677d; font-size: .8rem; font-weight: 650; line-height: 1.42; }

.audience-paths { background: linear-gradient(180deg, #fff, #f6f9fc); }
.audience-paths .section-heading { max-width: 900px; margin-inline: auto; }
.audience-path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-path-grid article { position: relative; min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(30px, 4vw, 48px); overflow: hidden; color: #fff; border: 1px solid rgba(108,205,234,.4); border-radius: 22px; background: radial-gradient(circle at 92% 12%, rgba(105,210,240,.2), transparent 34%), linear-gradient(135deg, #07518b, #087da4); box-shadow: 0 16px 42px rgba(6,61,104,.18); }
.audience-path-grid article::after { content: ""; position: absolute; z-index: 0; width: 240px; height: 240px; right: -115px; top: -115px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.035); }
.audience-path-grid .path-network { border-color: rgba(116,199,196,.4); background: radial-gradient(circle at 92% 12%, rgba(84,191,181,.2), transparent 34%), linear-gradient(135deg, #07345f, #096b78); }
.audience-path-grid article .eyebrow { color: #bce87b; }
.audience-path-grid h3 { position: relative; z-index: 1; max-width: 580px; margin-bottom: 15px; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.audience-path-grid p { position: relative; z-index: 1; max-width: 610px; color: #dcebf3; }
.audience-path-grid .button { position: relative; z-index: 1; margin-top: auto; color: var(--navy-900); background: #fff; box-shadow: 0 10px 26px rgba(0,31,61,.18); }
.path-index { position: absolute; right: 27px; bottom: -22px; color: rgba(255,255,255,.075); font-size: 8rem; font-weight: 900; line-height: 1; }
.price-reassurance { max-width: 880px; margin: 30px auto 0; padding: 18px 22px; color: #566a7f; border: 1px solid #dce6ef; border-radius: 13px; background: #fff; text-align: center; }
.price-reassurance strong { color: var(--ink); }

.benefits-section, .technology-section, .process, .multistore-section, .comparison-section, .sectors, .support-section, .final-cta { position: relative; overflow: hidden; isolation: isolate; }
.benefits-section > .container, .technology-section > .container, .process > .container, .multistore-section > .container, .comparison-section > .container, .sectors > .container, .support-section > .container, .final-cta > .container { position: relative; z-index: 1; }
.benefits-section { padding-top: clamp(120px, 11vw, 170px); padding-bottom: clamp(110px, 10vw, 155px); background: #fff; }
.benefits-section .section-heading { max-width: 1020px; margin-bottom: clamp(52px, 7vw, 86px); }
.benefits-section .section-heading h2 { max-width: 980px; margin-bottom: 28px; font-size: clamp(2.4rem, 4.7vw, 4.4rem); line-height: 1.01; letter-spacing: -.052em; }
.benefits-section .section-intro { max-width: 760px; font-size: clamp(1.05rem, 1.65vw, 1.32rem); line-height: 1.55; }
.benefits-section::before, .process::before, .trial-section::before { content: ""; position: absolute; z-index: 0; pointer-events: none; transform: translate3d(0, var(--vector-shift, 0px), 0); will-change: transform; }
.benefits-section::before { width: 390px; height: 230px; right: -75px; top: 72px; opacity: .055; background: repeating-linear-gradient(90deg, var(--blue-700) 0 2px, transparent 2px 14px); clip-path: polygon(0 45%, 8% 42%, 14% 49%, 21% 29%, 27% 69%, 34% 38%, 42% 55%, 49% 22%, 56% 74%, 63% 40%, 70% 57%, 78% 34%, 85% 62%, 92% 44%, 100% 48%, 100% 54%, 92% 50%, 85% 68%, 78% 40%, 70% 63%, 63% 46%, 56% 80%, 49% 28%, 42% 61%, 34% 44%, 27% 75%, 21% 35%, 14% 55%, 8% 48%, 0 51%); }
.benefit-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: 18px; }
.benefit-grid article { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: clamp(28px, 3.2vw, 44px); isolation: isolate; overflow: hidden; border: 1px solid rgba(190,210,227,.65); border-radius: 24px; background: #dce7f0; box-shadow: 0 12px 36px rgba(15,42,70,.075); transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .35s ease; }
.benefit-grid article:nth-child(1) { grid-column: span 8; min-height: 520px; }
.benefit-grid article:nth-child(2) { grid-column: span 4; min-height: 520px; }
.benefit-grid article:nth-child(3), .benefit-grid article:nth-child(4), .benefit-grid article:nth-child(5) { grid-column: span 4; min-height: 375px; }
.benefit-grid article:nth-child(6) { grid-column: 1 / -1; min-height: 390px; }
.benefit-grid article::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(4,33,63,.04) 0%, rgba(5,35,66,.18) 38%, rgba(4,24,48,.86) 100%); }
.benefit-grid article:hover { transform: translateY(-5px); border-color: rgba(91,151,204,.72); box-shadow: 0 22px 48px rgba(15,42,70,.16); }
.benefit-card-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.benefit-grid article:hover .benefit-card-media { transform: scale(1.028); }
.benefit-icon { position: relative; z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; color: var(--navy-900); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.58); border-radius: 50%; font-weight: 850; box-shadow: 0 8px 24px rgba(0,25,55,.12); }
.benefit-index { position: absolute; z-index: 1; right: 28px; top: 24px; color: rgba(255,255,255,.68); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.benefit-grid h3 { position: relative; z-index: 1; max-width: 430px; margin-top: auto; color: #fff; font-size: clamp(1.35rem, 2.25vw, 2.25rem); letter-spacing: -.038em; text-shadow: 0 2px 14px rgba(0,20,45,.28); }
.benefit-grid article:nth-child(3) h3, .benefit-grid article:nth-child(4) h3, .benefit-grid article:nth-child(5) h3 { font-size: clamp(1.25rem, 1.7vw, 1.6rem); }
.benefit-grid p { position: relative; z-index: 1; max-width: 570px; margin: 0; color: #dce8f1; font-size: clamp(.85rem, 1.08vw, 1rem); line-height: 1.58; }
.benefit-grid article:nth-child(2) p, .benefit-grid article:nth-child(3) p, .benefit-grid article:nth-child(4) p, .benefit-grid article:nth-child(5) p { max-width: 360px; }
.benefits-cta { margin-top: 42px; }
.adserver-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 22px; padding: 20px 22px; color: var(--ink); border: 1px solid #cfe1ec; border-radius: 16px; background: linear-gradient(135deg, #f5fbff, #f8fafc); box-shadow: 0 12px 30px rgba(6,51,88,.07); }
.adserver-icon { display: grid; width: 50px; height: 50px; place-items: center; color: #fff; border-radius: 13px; background: linear-gradient(135deg, #075b83, #0a7895); font-size: 27px; }
.adserver-banner h3, .adserver-banner p { margin: 0; }
.adserver-banner h3 { margin: 2px 0 4px; font-size: 1.18rem; }
.adserver-banner p:last-child { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.adserver-label { color: #08728e; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.adserver-badge { padding: 7px 11px; color: #075b83; border: 1px solid #b9d8e7; border-radius: 999px; background: #fff; font-size: .75rem; font-weight: 750; white-space: nowrap; }
.seasonal-section { position: relative; overflow: hidden; padding: clamp(90px, 9vw, 132px) 0; color: #fff; background: linear-gradient(125deg, var(--navy-950), #0a477f 68%, #0b6fa8); isolation: isolate; }
.seasonal-section::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -180px; top: -210px; pointer-events: none; border: 1px solid rgba(105,189,219,.14); border-radius: 50%; box-shadow: 0 0 0 72px rgba(105,189,219,.035), 0 0 0 144px rgba(145,200,62,.025); transform: translate3d(0, var(--vector-shift, 0px), 0); }
.seasonal-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 115px); align-items: start; }
.seasonal-heading h2 { max-width: 590px; margin: 0; font-size: clamp(2.45rem, 4.7vw, 4.4rem); line-height: 1.01; letter-spacing: -.052em; }
.seasonal-copy > p { max-width: 650px; margin-bottom: 32px; color: #cfdeeb; font-size: 1.02rem; line-height: 1.65; }
.seasonal-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.seasonal-copy li { min-height: 70px; display: flex; align-items: center; gap: 13px; padding: 16px 18px; color: #f4f8fb; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.055); font-size: .85rem; font-weight: 720; }
.seasonal-copy li span { flex: 0 0 auto; color: var(--lime); font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.problem-section { color: #fff; background: linear-gradient(120deg, #0a4d85, #0b70ad); }
.problem-section::after { content: ""; position: absolute; z-index: 0; right: -240px; top: -170px; width: 480px; height: 480px; pointer-events: none; border: 1px solid rgba(105,189,219,.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(105,189,219,.025), 0 0 0 140px rgba(145,200,62,.018); transform: translate3d(0, var(--vector-shift, 0px), 0); will-change: transform; }
.problem-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px 80px; align-items: start; }
.problem-copy p:not(.eyebrow) { max-width: 580px; margin-bottom: 0; color: #c0cfdd; }
.problem-points { display: grid; gap: 12px; }
.problem-points article { display: flex; gap: 18px; padding: 21px 23px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.045); }
.problem-points article > span { flex: 0 0 auto; color: var(--lime); font-size: .65rem; font-weight: 850; letter-spacing: .08em; }
.problem-points h3 { margin-bottom: 6px; font-size: 1rem; }
.problem-points p { margin: 0; color: #b8c8d7; font-size: .8rem; line-height: 1.5; }
.problem-close { grid-column: 1 / -1; max-width: 920px; margin: 4px 0 0; padding-left: 18px; color: #eef4f8; border-left: 3px solid var(--lime); font-weight: 720; }
.technology-section { color: #fff; background: radial-gradient(circle at 8% 82%, rgba(105,189,219,.18), transparent 28%), linear-gradient(135deg, #061c3b, #0a4e81); }
.technology-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 7vw, 95px); align-items: start; }
.technology-grid .eyebrow { color: var(--lime); }
.technology-grid .section-intro { color: #ccdae7; }
.technology-flow { display: grid; grid-template-columns: 1fr; gap: 11px; margin: 0; padding: 0; list-style: none; }
.technology-flow li { min-height: 0; display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 23px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.06); }
.technology-flow li > span { width: 34px; height: 34px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(145,200,62,.52); border-radius: 50%; font-size: .72rem; font-weight: 850; }
.technology-flow strong { display: block; margin: 4px 0 9px; font-size: 1rem; }
.technology-flow p { margin: 0; color: #b9cad9; font-size: .88rem; line-height: 1.55; }
.license-section { padding: 58px 0; border-bottom: 1px solid var(--line); background: #fff; }
.license-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.license-heading { display: flex; gap: 18px; align-items: flex-start; }
.license-heading .eyebrow { margin-bottom: 9px; }
.license-heading h2 { max-width: 500px; margin: 0; font-size: clamp(1.55rem, 2.6vw, 2rem); }
.license-icon { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-700); border: 1px solid #cfe0ee; border-radius: 13px; background: #edf5fb; }
.license-icon .audio-icon { width: 26px; height: 26px; }
.license-copy > p { margin-bottom: 15px; color: #40566e; font-size: .88rem; line-height: 1.55; }
.license-copy ul { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 0 0 13px; padding: 0; list-style: none; }
.license-copy li { position: relative; padding: 7px 11px 7px 28px; color: #27445f; border: 1px solid #d9e5ed; border-radius: 999px; background: #f7fafc; font-size: .7rem; font-weight: 700; }
.license-copy li::before { content: "check"; position: absolute; left: 8px; top: 9px; color: #65991e; font-family: "Material Symbols Outlined"; font-size: 18px; font-weight: 400; line-height: 1; font-feature-settings: "liga"; }
.license-copy small { display: block; color: #78899a; font-size: .67rem; line-height: 1.5; }
.process { background: var(--surface); }
.process::before { width: 330px; height: 170px; left: -65px; bottom: 35px; opacity: .06; background-image: radial-gradient(circle, var(--blue-700) 1.25px, transparent 1.5px); background-size: 14px 14px; mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent); }
.process::after, .multistore-section::after, .comparison-section::after, .sectors::after, .support-section::after, .final-cta::after { content: ""; position: absolute; z-index: 0; width: 430px; height: 430px; pointer-events: none; border: 1px solid rgba(7,83,154,.09); border-radius: 50%; box-shadow: 0 0 0 54px rgba(7,83,154,.025), 0 0 0 108px rgba(145,200,62,.018); transform: translate3d(0, var(--vector-shift, 0px), 0); will-change: transform; }
.process::after { right: -270px; top: 80px; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps::before { content: ""; position: absolute; z-index: 0; left: 10%; right: 10%; top: 57px; height: 1px; background: linear-gradient(90deg, transparent, rgba(30,115,190,.28) 15%, rgba(184,245,56,.65) 50%, rgba(30,115,190,.28) 85%, transparent); transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.steps.has-visible-items::before { transform: scaleX(1); }
.steps article { position: relative; z-index: 1; min-height: 260px; padding: 32px; overflow: hidden; background: #fff; border: 1px solid #e4ebf2; border-radius: var(--radius); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.steps article:hover { transform: translateY(-5px); border-color: #b8cde3; box-shadow: 0 18px 35px rgba(20,48,80,.08); }
.step-number { position: absolute; right: 20px; top: 12px; color: #eef2f7; font-size: 4.7rem; font-weight: 850; letter-spacing: -.08em; line-height: 1; }
.step-icon { position: relative; width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 38px; color: var(--blue-700); background: #e9f3ff; border-radius: 12px; font-size: 1.25rem; font-weight: 800; }
.steps h3, .steps p { position: relative; }
.steps p { margin: 0; color: var(--muted); font-size: .9rem; }
.info-note { width: fit-content; margin: 30px auto 0; color: var(--muted); font-size: .82rem; text-align: center; }
.info-note span { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 7px; color: var(--blue-700); border: 1px solid #a8c7e8; border-radius: 50%; font-weight: 800; }
.setup-detail { display: flex; gap: 17px; align-items: flex-start; margin-top: 30px; padding: 22px 24px; color: #53677d; border: 1px solid #d8e3ec; border-radius: 13px; background: #fff; font-size: .8rem; line-height: 1.55; }
.setup-detail p { margin-bottom: 5px; }
.setup-detail strong { color: var(--ink); }
.setup-detail small { color: #7a8999; font-size: .7rem; }
.setup-detail-icon { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime); border-radius: 50%; font-size: .65rem; }

.ai-spot-section { position: relative; overflow: hidden; padding: clamp(100px, 10vw, 150px) 0; color: #fff; background: radial-gradient(circle at 88% 17%, rgba(173,88,255,.27), transparent 27%), radial-gradient(circle at 8% 82%, rgba(44,188,232,.2), transparent 30%), linear-gradient(135deg, #03152f, #12346f 50%, #155b91); isolation: isolate; }
.ai-spot-section::before { content: "AI"; position: absolute; z-index: -1; right: -2vw; bottom: -12vw; color: rgba(255,255,255,.025); font-size: clamp(18rem, 34vw, 36rem); font-weight: 900; letter-spacing: -.12em; line-height: 1; pointer-events: none; }
.ai-spot-section::after { content: ""; position: absolute; z-index: -1; width: min(48vw, 720px); aspect-ratio: 1; right: -15vw; top: 4%; border: 1px solid rgba(195,113,255,.2); border-radius: 50%; box-shadow: 0 0 80px rgba(139,92,246,.18), inset 0 0 90px rgba(50,175,226,.08); pointer-events: none; }
.ai-spot-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(58px, 8vw, 112px); align-items: center; }
.feature-new { display: inline-flex; align-items: center; margin-right: 9px; padding: 5px 9px; color: #fff; border-radius: 999px; background: linear-gradient(135deg, #8b5cf6, #656de8 55%, #2aa8d4); box-shadow: 0 5px 18px rgba(122,92,225,.28); font-size: .62rem; letter-spacing: .11em; vertical-align: middle; }
.ai-spot-copy h2 { max-width: 720px; margin-bottom: 28px; color: #fff; font-size: clamp(3rem, 5.7vw, 5.4rem); line-height: .96; letter-spacing: -.06em; text-shadow: 0 8px 34px rgba(0,0,0,.18); }
.ai-spot-copy h2 span { color: #d9b9ff; background: linear-gradient(135deg, #f0d8ff 2%, #c596ff 42%, #70d6ff 92%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 5px 18px rgba(158,96,255,.28)); }
.ai-spot-lead { max-width: 650px; margin-bottom: 36px; color: #d1e1ee; font-size: clamp(1rem, 1.35vw, 1.17rem); line-height: 1.65; }
.ai-service-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 25px; }
.ai-service-modes > div { min-height: 145px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.055); }
.ai-service-modes > .ai-service-new { border-color: transparent; background: linear-gradient(135deg, rgba(13,37,78,.94), rgba(20,47,91,.94)) padding-box, linear-gradient(45deg, #a96cff, #735ff0 52%, #46c9eb) border-box; box-shadow: 0 10px 30px rgba(111,75,220,.16), inset 0 0 24px rgba(159,104,255,.07); }
.ai-service-modes small, .ai-service-modes strong { display: block; }
.ai-service-modes small { margin-bottom: 7px; color: #91a8bd; font-size: .58rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.ai-service-new small { color: #d9baff; }
.ai-service-modes strong { color: #fff; font-size: .82rem; line-height: 1.3; }
.ai-service-modes p { margin: 7px 0 0; color: #afc1d1; font-size: .69rem; line-height: 1.5; }
.ai-demo-grid { display: grid; grid-template-columns: 1fr; gap: 9px; margin-bottom: 24px; }
.ai-demo-grid > div { padding: 15px; border: 1px solid rgba(202,153,255,.24); border-radius: 13px; background: rgba(255,255,255,.065); }
.ai-demo-grid span, .ai-demo-grid strong { display: block; }
.ai-demo-grid span { margin-bottom: 4px; color: #cba9ff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ai-demo-grid strong { margin-bottom: 11px; font-size: .86rem; }
.ai-demo-grid audio { width: 100%; height: 36px; display: block; }
.ai-spot-steps { display: grid; gap: 5px; margin: 0 0 38px; padding: 0; list-style: none; }
.ai-spot-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.ai-spot-steps li > span { width: 28px; height: 28px; display: grid; place-items: center; padding: 0; color: #fff; border: 1px solid rgba(198,150,255,.62); border-radius: 50%; background: linear-gradient(135deg, rgba(174,92,255,.38), rgba(43,164,215,.22)); box-shadow: 0 0 18px rgba(147,86,242,.18); font-size: .58rem; font-weight: 850; letter-spacing: .05em; }
.ai-spot-steps strong, .ai-spot-steps small { display: block; }
.ai-spot-steps strong { font-size: .9rem; }
.ai-spot-steps small { margin-top: 3px; color: #aebfd0; font-size: .72rem; }
.ai-spot-console { position: relative; padding: clamp(24px, 3vw, 36px); color: var(--ink); border: 4px solid transparent; border-radius: 26px; background: linear-gradient(135deg, rgba(253,252,255,.985), rgba(243,247,255,.98)) padding-box, linear-gradient(45deg, #b56cff 0%, #f17ed7 24%, #7658ef 52%, #3a9ee6 77%, #71e2ff 100%) border-box; box-shadow: 0 38px 100px rgba(0,10,30,.4), 0 0 30px rgba(187,100,255,.38), 0 0 68px rgba(71,177,234,.27), inset 0 0 0 1px rgba(255,255,255,.6); isolation: isolate; }
.ai-spot-console::before { content: ""; position: absolute; z-index: -1; inset: -23px; pointer-events: none; border-radius: 42px; background: conic-gradient(from 145deg, rgba(78,200,242,.38), rgba(144,83,246,.58), rgba(242,112,213,.42), rgba(78,200,242,.38)); filter: blur(27px); opacity: .72; }
.ai-spot-console::after { content: ""; position: absolute; z-index: 0; inset: 8px; pointer-events: none; border: 1px solid rgba(156,106,237,.12); border-radius: 18px; box-shadow: inset 0 0 32px rgba(156,106,237,.055); }
.ai-spot-console > * { position: relative; z-index: 1; }
.ai-console-top { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid #dce5ee; }
.ai-console-top strong { font-size: .9rem; }
.ai-console-top small { color: #6555cc; font-size: .66rem; font-weight: 800; }
.ai-live-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, #df77e7, #7359ef); box-shadow: 0 0 0 6px rgba(139,92,246,.13), 0 0 20px rgba(139,92,246,.65); }
.ai-script-preview { margin-top: 23px; padding: 17px 19px; border: 1px solid transparent; border-radius: 12px; background: linear-gradient(135deg,#fff,#fff) padding-box, linear-gradient(45deg, rgba(183,109,255,.48), rgba(74,183,231,.33)) border-box; box-shadow: 0 8px 22px rgba(93,72,180,.07); }
.ai-script-preview span, .ai-voice-row > span, .ai-music-row > span, .ai-schedule-grid span { display: block; color: #77889b; font-size: .62rem; font-weight: 720; letter-spacing: .05em; text-transform: uppercase; }
.ai-script-preview p { margin: 7px 0 0; color: #32475e; font-size: .82rem; line-height: 1.5; }
.ai-waveform { height: 74px; display: flex; align-items: center; justify-content: center; gap: 5px; margin: 12px 0; overflow: hidden; }
.ai-waveform i { width: 4px; height: var(--bar-height, 20%); display: block; border-radius: 99px; background: linear-gradient(135deg, #c06ee0, #7664e6 52%, #258fc5); transform-origin: center; }
.ai-waveform i:nth-child(3n+1) { --bar-height: 28%; }
.ai-waveform i:nth-child(3n+2) { --bar-height: 72%; }
.ai-waveform i:nth-child(4n) { --bar-height: 96%; }
.ai-waveform i:nth-child(5n) { --bar-height: 48%; }
.ai-audio-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ai-voice-row, .ai-music-row { display: flex; align-items: center; justify-content: space-between; gap: 13px; padding: 15px 16px; border: 1px solid transparent; border-radius: 11px; background: linear-gradient(135deg, #faf7ff, #f2f8ff) padding-box, linear-gradient(45deg, rgba(181,108,255,.55), rgba(67,173,229,.4)) border-box; box-shadow: 0 8px 22px rgba(111,76,194,.08); }
.ai-voice-row strong, .ai-music-row strong { color: #5d58b6; font-size: .7rem; }
.ai-voice-row strong i, .ai-music-row strong i { width: 23px; height: 23px; display: inline-grid; place-items: center; margin-right: 6px; color: #fff; background: linear-gradient(135deg, #c568e5, #7359ef 55%, #2e9fd3); border-radius: 50%; box-shadow: 0 0 14px rgba(118,89,239,.32); font-size: .55rem; font-style: normal; }
.ai-schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 14px; }
.ai-schedule-grid > div { min-height: 76px; padding: 14px 15px; border: 1px solid #e0def1; border-radius: 11px; background: linear-gradient(135deg, #fff 55%, #f7f3ff); box-shadow: 0 7px 18px rgba(77,61,145,.055); }
.ai-schedule-grid strong { display: block; margin-top: 8px; color: #223d59; font-size: .75rem; }
.ai-console-action { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 17px; padding-top: 18px; border-top: 1px solid #dce5ee; }
.ai-console-action > span { color: var(--success); font-size: .72rem; font-weight: 760; }
.ai-console-action > span i { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 6px; color: #fff; background: var(--success); border-radius: 50%; font-size: .6rem; font-style: normal; }
.ai-console-action > strong { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 14px; color: #fff; background: linear-gradient(135deg, #8258ee, #a95fd9 48%, #248bc5); border-radius: 9px; box-shadow: 0 9px 24px rgba(108,76,220,.25), 0 0 16px rgba(109,90,239,.16); font-size: .72rem; line-height: 1.2; }
.ai-spot-copy .button-white { color: #fff; border: 1px solid rgba(231,209,255,.42); background: linear-gradient(135deg, #7f58e8, #aa61d9 44%, #298fca 72%, #7f58e8); background-size: 190% 190%; box-shadow: 0 12px 32px rgba(92,57,190,.3), 0 0 24px rgba(168,98,228,.16); }
.ai-console-action b { flex: 0 0 auto; margin: 0; line-height: 1; transform: translateY(.5px); }

.value-grid { display: grid; grid-template-columns: 1.1fr .72fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 30px; margin-top: 38px; }
.feature-list article { display: flex; gap: 14px; transition: transform .24s ease; }
.feature-list article:hover { transform: translateX(4px); }
.feature-list article > span { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue-700); background: #edf5ff; border-radius: 10px; font-size: 1rem; font-weight: 800; }
.feature-list h3 { margin: 1px 0 7px; font-size: .98rem; letter-spacing: -.015em; }
.feature-list p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.content-note { margin: 28px 0 0; padding: 18px 20px; color: #4d6077; border-left: 3px solid #8dc41d; background: #f6faec; border-radius: 0 10px 10px 0; font-size: .83rem; }
.content-note strong { color: var(--ink); }
.integration-note { margin-top: 16px; padding: 15px 18px; color: #607287; border: 1px solid #dce6ee; border-radius: 10px; background: #f8fafc; font-size: .73rem; line-height: 1.55; }
.integration-note p { margin-bottom: 5px; }
.integration-note strong { color: #274561; }
.integration-note span { color: #7d8c9c; font-size: .66rem; }
.studio-placeholder { min-height: 590px; display: grid; place-items: center; overflow: hidden; color: #7790ad; border: 1px dashed #b7cadf; border-radius: 20px; background: radial-gradient(circle at 70% 20%, var(--studio-accent, #d7edff), transparent 30%), linear-gradient(145deg, var(--studio-start, #edf4fb), var(--studio-end, #dfeaf5)); }
.studio-placeholder-main { --studio-accent: #d7edff; --studio-start: #edf4fb; --studio-end: #dfeaf5; }
.studio-placeholder-supermercati { --studio-accent: #dff4ca; --studio-start: #f1f8e9; --studio-end: #dcebcf; }
.studio-placeholder-negozi { --studio-accent: #d9e5ff; --studio-start: #eef2fb; --studio-end: #dce4f3; }
.studio-placeholder-food { --studio-accent: #ffe0bf; --studio-start: #fff4e8; --studio-end: #f1dfcc; }
.studio-placeholder-palestre { --studio-accent: #d9f7f2; --studio-start: #eaf8f6; --studio-end: #d4eae8; }
.studio-placeholder-farmacie { --studio-accent: #d8f0e5; --studio-start: #edf8f3; --studio-end: #d8e9e2; }
.studio-placeholder::before { content: ""; position: absolute; }
.studio-placeholder span { font-size: .75rem; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.studio-placeholder small { color: #9bacc0; font-size: .65rem; }

.multistore-section { padding-top: 94px; padding-bottom: 94px; background: #fff; }
.multistore-section::after { left: -310px; bottom: -80px; }
.multistore-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 105px); align-items: center; }
.multistore-copy .section-intro { margin-bottom: 28px; }
.multistore-benefits { position: relative; display: grid; gap: 13px; }
.multistore-benefits::before { content: ""; position: absolute; z-index: 0; left: 43px; top: 39px; bottom: 39px; width: 1px; background: linear-gradient(var(--blue-500), var(--lime), var(--blue-500)); opacity: .42; }
.multistore-benefits article { position: relative; z-index: 1; display: flex; gap: 17px; align-items: flex-start; padding: 22px 24px; border: 1px solid #dfe7ef; border-radius: 13px; background: #f8fafc; transition: transform .26s ease, border-color .26s ease, background-color .26s ease, box-shadow .26s ease; }
.multistore-benefits article:hover { transform: translateX(6px); border-color: #b8cde3; background: #fff; box-shadow: 0 14px 30px rgba(20,48,80,.07); }
.multistore-benefits article > span { flex: 0 0 auto; width: 39px; height: 39px; display: grid; place-items: center; color: var(--blue-700); background: #e7f1fb; border-radius: 10px; font-weight: 800; }
.multistore-benefits h3 { margin: 1px 0 6px; font-size: 1rem; letter-spacing: -.015em; }
.multistore-benefits p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }

.comparison-section { background: var(--surface); }
.comparison-section::after { right: -320px; top: 20%; }
.comparison-wrap { overflow-x: auto; border: 1px solid #dce5ef; border-radius: var(--radius); background: #fff; box-shadow: 0 12px 38px rgba(23,52,85,.06); }
table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .88rem; }
th, td { padding: 19px 24px; border-bottom: 1px solid #e5ebf2; text-align: left; }
thead th { color: #667589; background: #f8fafc; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
thead th:nth-child(2), tbody td:nth-child(2) { background: #edf6ff; }
thead th:nth-child(2) { color: var(--navy-900); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { width: 37%; color: #293b55; font-weight: 650; }
.table-brand { display: block; color: var(--blue-700); font-size: .6rem; letter-spacing: .12em; }
.yes { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 7px; color: #fff; background: var(--success); border-radius: 50%; font-size: .7rem; }
.no { margin-right: 8px; color: #95a1b0; }
.comparison-close { max-width: 760px; margin: 32px auto 0; color: var(--muted); text-align: center; }
.comparison-close strong { color: var(--ink); }

.trial-section { position: relative; overflow: hidden; padding: 90px 0; color: #fff; background: linear-gradient(125deg, #0a568e, #1180b7); }
.trial-section::before { width: 390px; height: 190px; left: -60px; bottom: -10px; opacity: .075; background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 15px); clip-path: polygon(0 46%, 9% 42%, 16% 57%, 23% 25%, 30% 72%, 38% 35%, 46% 63%, 53% 31%, 61% 70%, 69% 40%, 77% 58%, 85% 36%, 93% 52%, 100% 47%, 100% 55%, 93% 60%, 85% 44%, 77% 66%, 69% 48%, 61% 78%, 53% 39%, 46% 71%, 38% 43%, 30% 80%, 23% 33%, 16% 65%, 9% 50%, 0 54%); }
.trial-section::after { content: ""; position: absolute; width: 470px; height: 470px; right: -90px; top: -210px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(145,200,62,.028); transform: translate3d(0, var(--vector-shift, 0px), 0); will-change: transform; }
.trial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.trial-grid > div:first-child { max-width: 650px; }
.trial-grid p:not(.eyebrow) { color: #d5e8f8; }
.trial-grid .trial-response-note { max-width: 600px; margin: -5px 0 4px; color: #fff; font-size: .8rem; font-weight: 700; }
.trial-grid .button { margin-top: 12px; }
.trial-stats { display: grid; grid-template-columns: .78fr 1.22fr; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; background: rgba(12,87,143,.24); backdrop-filter: blur(4px); }
.trial-stat-main { position: relative; min-height: 210px; display: flex; flex-direction: column; justify-content: center; padding: 30px; isolation: isolate; overflow: hidden; border-right: 1px solid rgba(255,255,255,.17); }
.trial-stat-main strong, .trial-stat-main > span { position: relative; z-index: 1; }
.trial-stat-main strong { color: #fff; font-size: 3.6rem; letter-spacing: -.07em; line-height: 1; }
.trial-stat-main > span { margin-top: 13px; color: #cae4f8; font-size: .73rem; line-height: 1.35; text-transform: uppercase; }
.trial-calendar { position: absolute; z-index: 0; width: 160px; height: 160px; right: -29px; top: 50%; opacity: .13; transform: translateY(-50%) rotate(4deg); fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.trial-calendar-days { fill: #fff; stroke: none; }
.trial-calendar-highlight { fill: var(--lime); stroke: none; opacity: .78; transform-box: fill-box; transform-origin: center; }
.trial-assurances { display: grid; align-content: center; gap: 0; margin: 0; padding: 18px 26px; list-style: none; }
.trial-assurances li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; padding: 19px 0; }
.trial-assurances li + li { border-top: 1px solid rgba(255,255,255,.14); }
.trial-assurances li > span { width: 26px; height: 26px; display: grid; place-items: center; color: var(--navy-950); background: var(--lime); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.trial-assurances strong { display: block; color: #fff; font-size: .88rem; line-height: 1.3; }
.trial-assurances small { display: block; margin-top: 5px; color: #c9dced; font-size: .7rem; line-height: 1.45; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.sectors::after { left: -300px; top: 18%; }
.sector-grid article { position: relative; min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; isolation: isolate; overflow: hidden; border: 1px solid rgba(190,210,227,.78); border-radius: 13px; background: #eaf1f7; box-shadow: 0 6px 20px rgba(15,42,70,.045); transition: border-color .25s, transform .25s, box-shadow .25s; }
.sector-grid article::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(7,45,82,.06) 0%, rgba(5,35,66,.2) 45%, rgba(4,26,51,.84) 100%); }
.sector-grid article::after { content: ""; position: absolute; right: -24px; bottom: -30px; width: 76px; height: 76px; border: 1px solid rgba(30,115,190,.12); border-radius: 50%; transition: transform .3s ease, border-color .3s ease; }
.sector-grid article:hover { transform: translateY(-2px); border-color: rgba(91,151,204,.72); box-shadow: 0 12px 26px rgba(15,42,70,.1); }
.sector-grid article:hover::after { transform: scale(1.2); border-color: rgba(184,245,56,.55); }
.sector-card-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.sector-grid article:hover .sector-card-media { transform: scale(1.015); }
.sector-grid span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--blue-700); background: rgba(245,249,252,.94); border: 1px solid rgba(255,255,255,.52); border-radius: 9px; font-weight: 800; }
.sector-grid h3 { position: relative; z-index: 1; margin: 25px 0 0; color: #fff; font-size: .97rem; text-shadow: 0 2px 12px rgba(0,20,45,.3); }
.sector-card-link { position: absolute; z-index: 3; inset: 0; border-radius: inherit; }
.sector-card-linked:focus-within { outline: 3px solid var(--lime); outline-offset: 3px; }
.sector-card-linked:has(.sector-card-link[aria-current="page"]) { border-color: var(--lime); box-shadow: 0 0 0 2px rgba(184,245,56,.22); }

.support-section { padding: 88px 0; background: #edf4fa; }
.support-section::after { right: -305px; bottom: -140px; }
.support-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.support-points { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.support-points article { position: relative; min-height: 165px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; isolation: isolate; overflow: hidden; border: 1px solid rgba(190,210,227,.78); border-radius: 12px; background: #dce7f0; box-shadow: 0 6px 20px rgba(15,42,70,.05); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.support-points article::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(7,45,82,.08), rgba(5,35,66,.28) 48%, rgba(4,26,51,.86)); }
.support-card-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.support-points article:hover { transform: translateY(-2px); border-color: rgba(91,151,204,.72); box-shadow: 0 12px 26px rgba(15,42,70,.1); }
.support-points article:hover .support-card-media { transform: scale(1.015); }
.support-points span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue-700); background: rgba(245,249,252,.94); border: 1px solid rgba(255,255,255,.52); border-radius: 9px; font-size: 1.1rem; }
.support-points strong { position: relative; z-index: 1; color: #fff; font-size: .83rem; line-height: 1.35; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 8vw, 110px); }
.faq-grid > div:first-child p:last-child { max-width: 360px; color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 79px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; color: var(--ink); border: 0; background: transparent; font-weight: 720; text-align: left; cursor: pointer; }
.faq-item i { position: relative; flex: 0 0 auto; width: 30px; height: 30px; color: var(--blue-700); border: 1px solid #bac7d6; border-radius: 50%; font-size: 19px; transition: color .18s ease, border-color .18s ease, background .18s ease; }
.faq-item button[aria-expanded="true"] i { color: #fff; border-color: var(--blue-600); background: var(--blue-600); }
.faq-answer p { margin: -4px 45px 22px 2px; color: var(--muted); font-size: .9rem; }

.final-cta { padding: 100px 0; color: #fff; background: var(--navy-950); }
.final-cta::after { left: -285px; top: 5%; border-color: rgba(105,189,219,.1); box-shadow: 0 0 0 54px rgba(105,189,219,.025), 0 0 0 108px rgba(145,200,62,.018); }
.final-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(60px, 9vw, 120px); align-items: center; }
.final-grid > div:first-child > p:not(.eyebrow) { max-width: 600px; color: #b8c9da; }
.final-benefit { display: flex; gap: 13px; align-items: flex-start; margin-top: 35px; }
.final-benefit > span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--navy-950); background: #65d4f8; border-radius: 50%; font-size: .8rem; font-weight: 900; }
.final-benefit p { color: #bdccdc; font-size: .82rem; line-height: 1.5; }
.final-benefit strong { color: #fff; }
.form-card-compact { padding: 30px; }
footer { padding: 48px 0 28px; color: #91a4ba; background: #030f23; font-size: .72rem; }
.footer-inner { display: grid; gap: 34px; }
.footer-inner p { margin: 0; }
.footer-brand-block { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand-block > p { max-width: 520px; text-align: right; }
.footer-details { display: grid; grid-template-columns: 1.35fr .8fr 1fr; gap: 44px; padding: 30px 0; border-top: 1px solid rgba(181,197,214,.22); border-bottom: 1px solid rgba(181,197,214,.22); }
.footer-details section { min-width: 0; }
.footer-details h2 { margin: 0 0 14px; color: #fff; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-details address { margin: 0 0 15px; font-style: normal; line-height: 1.65; }
.footer-details address:last-child { margin-bottom: 0; }
.footer-details strong { color: #c6d4e2; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-phone { display: block; margin: -3px 0 5px; color: #fff; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 800; letter-spacing: -.03em; text-decoration: none; }
.footer-details small { display: block; line-height: 1.45; }
.footer-contact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.footer-contact-button { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 13px; border-radius: 8px; color: #fff; font-size: .72rem; font-weight: 800; line-height: 1; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.footer-contact-button:hover { transform: translateY(-2px); }
.footer-contact-button:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.footer-whatsapp { color: #062b19; background: #55dc82; }
.footer-whatsapp:hover { background: #6be394; }
.footer-linkedin { border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.footer-linkedin:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.15); }
.network-logos { display: flex; align-items: center; gap: 20px; }
.network-logos a { display: inline-flex; align-items: center; border-radius: 4px; }
.network-logos a:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
.network-logos img { width: auto; height: 34px; max-width: 142px; object-fit: contain; opacity: .92; }
.network-logos a + a { padding-left: 20px; border-left: 1px solid rgba(181,197,214,.35); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; align-items: center; gap: 18px; }
.footer-links a, .footer-links button { color: #b5c5d6; }
.footer-links button { min-height: 44px; padding: 8px 0; border: 0; background: none; font: inherit; text-decoration: underline; cursor: pointer; }
.brand-footer { font-size: .75rem; }
.brand-footer .brand-logo { width: 143px; }
.mobile-sticky { display: none; }
.scroll-progress { position: fixed; z-index: 90; top: 0; left: 0; width: 100%; height: 3px; overflow: hidden; pointer-events: none; background: rgba(255,255,255,.08); }
.scroll-progress i { width: 100%; height: 100%; display: block; background: linear-gradient(90deg, var(--lime), var(--cyan) 55%, #fff); box-shadow: 0 0 12px rgba(105,189,219,.5); transform: scaleX(var(--scroll-progress, 0)); transform-origin: left center; will-change: transform; }

.consent-open { overflow: hidden; }
.consent-panel { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: end center; padding: 22px; background: transparent; }
.consent-panel[hidden] { display: none; }
.consent-card { width: min(100%, 980px); display: grid; grid-template-columns: 1fr auto; gap: 25px 40px; padding: 27px 30px; color: var(--ink); border: 1px solid #d7e1ec; border-radius: 16px; background: #fff; box-shadow: 0 24px 70px rgba(3,15,35,.28); }
.consent-summary h2 { margin-bottom: 9px; font-size: 1.35rem; }
.consent-summary p:not(.consent-kicker) { max-width: 680px; margin-bottom: 8px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.consent-summary > a { color: var(--blue-700); font-size: .75rem; font-weight: 700; }
.consent-kicker { margin-bottom: 5px; color: var(--blue-700); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.consent-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 9px; }
.consent-actions .button { min-height: 43px; padding: 10px 16px; font-size: .76rem; }
.consent-button-secondary { color: var(--navy-900); border: 1px solid #bccbda; background: #fff; }
.consent-preferences { grid-column: 1 / -1; border-top: 1px solid var(--line); }
.consent-row { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 11px 2px; border-bottom: 1px solid var(--line); }
.consent-row strong, .consent-row small { display: block; }
.consent-row strong { font-size: .82rem; }
.consent-row small { margin-top: 2px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.consent-row > span:last-child { color: var(--success); font-size: .7rem; font-weight: 750; white-space: nowrap; }
.consent-row input { width: 42px; height: 23px; flex: 0 0 auto; accent-color: var(--blue-700); }

.thanks-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--navy-950); }
.thanks-page .site-header { flex: 0 0 auto; }
.thanks-main { position: relative; min-height: 660px; flex: 1 0 auto; display: grid; place-items: center; overflow: hidden; padding: clamp(64px, 8vw, 105px) 20px; color: #fff; background: radial-gradient(circle at 76% 24%, rgba(105,189,219,.38), transparent 34%), linear-gradient(118deg, #0a477f 0%, #0866a3 60%, #1682b7 100%); }
.thanks-main::before, .thanks-main::after { content: ""; position: absolute; pointer-events: none; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.thanks-main::before { width: 440px; height: 440px; right: -145px; top: -220px; box-shadow: 0 0 0 70px rgba(255,255,255,.025); }
.thanks-main::after { width: 300px; height: 300px; left: -185px; bottom: -150px; box-shadow: 0 0 0 52px rgba(145,200,62,.04); }
.thanks-card { position: relative; z-index: 1; width: min(100%, 680px); padding: clamp(34px, 6vw, 64px); color: var(--ink); border: 1px solid rgba(255,255,255,.78); border-radius: 20px; background: linear-gradient(145deg, #fff, #f6f9fc); box-shadow: 0 28px 75px rgba(2,25,53,.28); text-align: center; }
.thanks-card h1 { margin-bottom: 18px; font-size: clamp(2.3rem, 6vw, 3.5rem); }
.thanks-card > p:not(.eyebrow) { max-width: 520px; margin-inline: auto; color: var(--muted); }
.success-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 24px; color: #173311; background: linear-gradient(135deg, #b6e36f, var(--lime)); border-radius: 18px; box-shadow: 0 12px 28px rgba(69,112,20,.2); font-size: 1.85rem; font-weight: 900; }
.thanks-next-step { margin: 30px 0 0; padding: 18px 20px; color: #34506e; border: 1px solid #dce7ef; border-radius: 13px; background: #f5f9fc; font-size: .86rem; line-height: 1.5; }
.thanks-next-step strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .92rem; }
.thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.thanks-actions .button { margin: 0; }
.thanks-actions .button-outline { color: var(--blue-700); border-color: #b8cadc; background: #fff; }
.thanks-actions .button-outline:hover { background: #edf5fb; }

.policy-page { background: var(--surface); }
.policy-hero { padding: clamp(70px, 9vw, 118px) 0 68px; color: #fff; background: radial-gradient(circle at 82% 15%, rgba(105,189,219,.35), transparent 32%), linear-gradient(118deg, #073c73, #0b6eaa); }
.policy-hero .container { max-width: 940px; }
.policy-hero h1 { max-width: 760px; margin-bottom: 18px; }
.policy-hero p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: #deebf6; font-size: 1.05rem; }
.policy-main { padding: 62px 0 100px; }
.policy-layout { width: min(calc(100% - 40px), 940px); margin-inline: auto; }
.policy-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.policy-card section + section { margin-top: 44px; padding-top: 42px; border-top: 1px solid var(--line); }
.policy-card h2 { margin-bottom: 16px; font-size: clamp(1.55rem, 3vw, 2rem); }
.policy-card h3 { margin-top: 28px; font-size: 1.12rem; }
.policy-card p, .policy-card li { color: #40576f; }
.policy-card a { color: var(--blue-700); font-weight: 700; }
.policy-card ul { padding-left: 22px; }
.policy-updated { display: inline-flex; margin: 0 0 28px; padding: 7px 11px; color: #244b6f; border: 1px solid #cfe0ed; border-radius: 999px; background: #eef6fb; font-size: .78rem; font-weight: 750; }
.policy-note { margin-top: 24px; padding: 17px 19px; border-left: 4px solid var(--lime); border-radius: 0 10px 10px 0; background: #f4f8ee; }
.policy-table-wrap { margin-top: 20px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.policy-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .82rem; line-height: 1.45; }
.policy-table th, .policy-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { color: var(--navy-900); background: #edf4f9; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.policy-table tr:last-child td { border-bottom: 0; }
.policy-table code { color: #143f66; font-size: .78rem; font-weight: 750; white-space: nowrap; }
.policy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.policy-actions .button-outline { color: var(--blue-700); border-color: #adc5d9; background: #fff; }

@media (max-width: 640px) {
  .policy-main { padding: 36px 0 70px; }
  .policy-layout { width: min(calc(100% - 24px), 940px); }
  .policy-card { padding: 25px 18px; border-radius: 14px; }
  .policy-card section + section { margin-top: 34px; padding-top: 33px; }
  .policy-actions { display: grid; }
  .policy-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: hero-rise .68s cubic-bezier(.2,.72,.2,1) both; }
  .hero-copy > :nth-child(1) { animation-delay: .06s; }
  .hero-copy > :nth-child(2) { animation-delay: .12s; }
  .hero-copy > :nth-child(3) { animation-delay: .18s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  .hero-copy > :nth-child(5) { animation-delay: .3s; }
  .hero-copy > :nth-child(6) { animation-delay: .36s; }
  .hero-copy > :nth-child(7) { animation-delay: .42s; }
  .hero .form-card { animation: hero-card-in .82s .18s cubic-bezier(.2,.72,.2,1) both; }
  .hero-glow { animation: glow-breathe 8s ease-in-out infinite alternate; }
  .sonic-wave-primary { animation: sonic-flow 13s linear infinite; }
  .sonic-wave-secondary { animation: sonic-flow-reverse 17s linear infinite; }
  .trial-calendar { animation: trial-calendar-float 7s ease-in-out infinite alternate; }
  .trial-calendar-highlight { animation: trial-calendar-day 3.5s ease-in-out infinite; }
  .ai-spot-console.is-visible .ai-waveform i { animation: ai-wave-pulse 1.7s ease-in-out infinite alternate; animation-delay: calc(var(--wave-index, 0) * -90ms); }
  .ai-spot-console.is-visible::before { animation: ai-aura-breathe 4.8s ease-in-out infinite alternate; }
  .ai-spot-console.is-visible .ai-live-dot { animation: ai-status-pulse 2.2s ease-in-out infinite; }
  .ai-spot-copy .button-white { animation: ai-gradient-drift 7s ease-in-out infinite alternate; }

  .motion-desktop .hero-image-placeholder { transform: translate3d(0, calc(var(--vector-shift, 0px) * .2), 0) scale(1.018); will-change: transform; }
  .motion-desktop.motion-ready .scroll-reveal { --reveal-x: 0px; --reveal-y: 28px; --reveal-scale: 1; opacity: 0; filter: blur(2.5px); transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)); transition: opacity .66s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.16,.76,.24,1), filter .55s ease; transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform; }
  .motion-desktop.motion-ready .scroll-reveal.reveal-from-left { --reveal-x: -34px; --reveal-y: 5px; }
  .motion-desktop.motion-ready .scroll-reveal.reveal-from-right { --reveal-x: 34px; --reveal-y: 5px; }
  .motion-desktop.motion-ready .scroll-reveal.reveal-scale { --reveal-y: 22px; --reveal-scale: .975; }
  .motion-desktop.motion-ready .scroll-reveal.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  .motion-mobile.motion-ready .scroll-reveal { opacity: 0; transform: translate3d(0, 16px, 0); transition: opacity .46s ease-out, transform .5s cubic-bezier(.2,.72,.2,1); transition-delay: var(--reveal-delay, 0ms); }
  .motion-mobile.motion-ready .scroll-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
  .steps article.is-visible .step-icon { animation: icon-signal .62s calc(var(--reveal-delay, 0ms) + 180ms) cubic-bezier(.2,.7,.2,1) both; }
  .scroll-reveal:not(.is-visible) .audio-icon .draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
  .scroll-reveal.is-visible .audio-icon .draw { animation: audio-line-draw .72s calc(var(--reveal-delay, 0ms) + 120ms) cubic-bezier(.2,.7,.2,1) both; }
  .scroll-reveal.is-visible .audio-icon .eq-bar { transform-origin: center; animation: audio-control-settle .58s calc(var(--reveal-delay, 0ms) + 140ms) cubic-bezier(.2,.7,.2,1) both; }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-card-in {
  from { opacity: 0; transform: translate3d(24px, 18px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes glow-breathe {
  from { opacity: .72; transform: scale(.95); }
  to { opacity: 1; transform: scale(1.08); }
}
@keyframes sonic-flow { to { stroke-dashoffset: -230; } }
@keyframes sonic-flow-reverse { to { stroke-dashoffset: 210; } }
@keyframes trial-calendar-float {
  from { opacity: .1; transform: translate3d(0, -48%, 0) rotate(2deg) scale(.97); }
  to { opacity: .17; transform: translate3d(-7px, -52%, 0) rotate(5deg) scale(1.025); }
}
@keyframes trial-calendar-day {
  0%, 100% { opacity: .48; transform: scale(.82); }
  50% { opacity: .92; transform: scale(1.12); }
}
@keyframes icon-signal {
  0% { transform: scale(.72); box-shadow: 0 0 0 0 rgba(30,115,190,.22); }
  60% { transform: scale(1.06); box-shadow: 0 0 0 10px rgba(30,115,190,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30,115,190,0); }
}

@keyframes hero-cta-attention {
  0%, 72%, 100% { filter: brightness(1); box-shadow: 0 10px 24px rgba(8,116,231,.23), 0 0 0 0 rgba(145,200,62,0); }
  78% { filter: brightness(1.07); box-shadow: 0 12px 28px rgba(8,116,231,.3), 0 0 0 5px rgba(145,200,62,.12); }
  84% { filter: brightness(1); box-shadow: 0 10px 24px rgba(8,116,231,.23), 0 0 0 2px rgba(145,200,62,.04); }
  90% { filter: brightness(1.05); box-shadow: 0 12px 27px rgba(8,116,231,.28), 0 0 0 4px rgba(145,200,62,.09); }
  96% { filter: brightness(1); box-shadow: 0 10px 24px rgba(8,116,231,.23), 0 0 0 0 rgba(145,200,62,0); }
}

@keyframes audio-line-draw {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; opacity: .35; }
  to { stroke-dasharray: 1; stroke-dashoffset: 0; opacity: 1; }
}

@keyframes audio-control-settle {
  0% { transform: scale(.6); opacity: .25; }
  70% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes ai-wave-pulse {
  from { transform: scaleY(.48); opacity: .58; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes ai-aura-breathe {
  from { opacity: .52; transform: scale(.975) rotate(-1deg); }
  to { opacity: .82; transform: scale(1.025) rotate(1deg); }
}

@keyframes ai-status-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(139,92,246,.11), 0 0 14px rgba(139,92,246,.5); }
  50% { box-shadow: 0 0 0 9px rgba(139,92,246,.04), 0 0 25px rgba(205,101,231,.78); }
}

@keyframes ai-gradient-drift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes mobile-cta-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr 410px; gap: 36px; }
  .check-list { grid-template-columns: 1fr; gap: 8px; }
  .feature-list { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid article:nth-child(n) { grid-column: span 1; min-height: 390px; }
  .benefit-grid article:nth-child(1), .benefit-grid article:nth-child(6) { grid-column: 1 / -1; min-height: 440px; }
  .technology-grid { grid-template-columns: 1fr; }
  .problem-grid { gap: 34px 46px; }
  .value-grid { grid-template-columns: 1.1fr .8fr; gap: 45px; }
  .multistore-grid { grid-template-columns: .85fr 1.15fr; gap: 42px; }
  .ai-spot-grid { grid-template-columns: .9fr 1.1fr; gap: 42px; }
  .trial-grid { grid-template-columns: 1fr; gap: 45px; }
  .trial-stats { max-width: 700px; }
  .support-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-grid { grid-template-columns: .75fr 1.25fr; gap: 50px; }
}

@media (max-width: 800px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .benefits-section { padding-top: 94px; padding-bottom: 88px; }
  .benefits-section .section-heading { margin-bottom: 42px; }
  .benefits-section .section-heading h2 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .benefit-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0; padding: 0; overflow: visible; }
  .benefit-grid article:nth-child(n) { width: 100%; min-width: 0; min-height: 290px; padding: 26px; border-radius: 18px; }
  .benefit-grid article:nth-child(1), .benefit-grid article:nth-child(2) { min-height: 350px; }
  .benefit-grid h3, .benefit-grid article:nth-child(3) h3, .benefit-grid article:nth-child(4) h3, .benefit-grid article:nth-child(5) h3 { font-size: 1.55rem; }
  .benefits-cta { margin-top: 24px; }
  .seasonal-section { padding: 82px 0; }
  .seasonal-grid { grid-template-columns: 1fr; gap: 31px; }
  .seasonal-heading h2 { font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .seasonal-copy > p { margin-bottom: 24px; font-size: .96rem; }
  .seasonal-copy ul { grid-template-columns: 1fr; gap: 8px; }
  .seasonal-copy li { min-height: 58px; padding: 13px 15px; }
  .header-contact > span { display: none; }
  .hero-image-placeholder { inset: 0; opacity: .2; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 62px; padding-bottom: 70px; }
  .hero-copy { max-width: none; }
  .check-list { grid-template-columns: 1fr 1fr; }
  .form-card { max-width: 620px; }
  .trust-strip { padding: 22px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article { min-height: 158px; }
  .audience-path-grid { grid-template-columns: 1fr; }
  .audience-path-grid article { min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
  .technology-flow { grid-template-columns: 1fr 1fr; }
  .license-grid { grid-template-columns: 1fr; gap: 25px; }
  .steps::before { left: 42px; right: auto; top: 45px; bottom: 45px; width: 1px; height: auto; transform: scaleY(0); transform-origin: top; }
  .steps.has-visible-items::before { transform: scaleY(1); }
  .steps article { min-height: 220px; }
  .value-grid { grid-template-columns: 1fr; }
  .ai-spot-section { padding: 88px 0; }
  .ai-spot-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-spot-copy h2 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .ai-spot-console { max-width: 650px; }
  .multistore-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .studio-placeholder { min-height: 420px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .final-grid { grid-template-columns: 1fr; }
  .footer-details { grid-template-columns: 1.2fr .8fr; }
  .footer-details section:last-child { grid-column: 1 / -1; }
  .consent-card { grid-template-columns: 1fr; }
  .consent-actions { justify-content: flex-start; }
  .mobile-sticky { position: fixed; z-index: 50; width: min(205px, calc(100% - 20px)); right: 10px; bottom: max(9px, env(safe-area-inset-bottom)); min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 13px; padding: 0 17px; color: #fff; background: var(--blue-600); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; box-shadow: 0 8px 28px rgba(0,40,90,.3); font-size: .9rem; font-weight: 800; text-decoration: none; opacity: 0; visibility: hidden; transform: translate3d(0, 14px, 0); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
  .mobile-sticky b { font-size: 1rem; }
  .mobile-sticky.is-ready:not(.is-hidden) { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0); }
  .scroll-progress { height: 2px; }
}

@media (max-width: 540px) {
  .adserver-banner { grid-template-columns: auto 1fr; padding: 18px; }
  .adserver-badge { grid-column: 2; justify-self: start; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .site-header .button { display: none; }
  .header-inner { min-height: 70px; }
  .hero-grid { gap: 35px; padding-top: 48px; }
  .hero-lead { font-size: 1rem; }
  .hero-audience-note { margin-top: -8px; font-size: .8rem; }
  .check-list { grid-template-columns: 1fr; }
  .trial-note { display: block; }
  .trial-note span { display: block; margin-top: 3px; }
  .social-proof { padding: 16px 14px 17px; border-radius: 14px; }
  .client-logos { padding-top: 13px; }
  .client-logo-grid { gap: 11px 8px; }
  .client-logo-slot { min-height: 45px; flex-basis: calc(25% - 6px); }
  .client-logos .client-logo { width: calc(var(--logo-w) * .72); height: calc(var(--logo-h) * .72); }
  .form-card, .form-card-compact { padding: 24px 20px; border-radius: 13px; }
  .field-row { grid-template-columns: 1fr; }
  .field-row-selects { align-items: stretch; }
  .optional-field-grid { grid-template-columns: 1fr; }
  .trust-grid strong { font-size: 1.75rem; }
  .trust-grid article { min-height: 145px; padding: 18px; }
  .trust-grid p { font-size: .76rem; }
  .feature-list { grid-template-columns: 1fr; }
  .benefit-grid article:nth-child(n) { min-height: 270px; }
  .benefit-grid article:nth-child(1), .benefit-grid article:nth-child(2) { min-height: 330px; }
  .studio-placeholder { min-height: 330px; }
  .ai-spot-console { padding: 23px 18px; border-radius: 18px; }
  .ai-spot-console::before { inset: -13px; filter: blur(18px); opacity: .58; }
  .ai-service-modes { grid-template-columns: 1fr; }
  .ai-service-modes > div { min-height: 0; }
  .ai-demo-grid { grid-template-columns: 1fr; }
  .ai-audio-options { grid-template-columns: 1fr; }
  .ai-console-top { grid-template-columns: 10px 1fr; }
  .ai-console-top small { grid-column: 2; }
  .ai-schedule-grid { grid-template-columns: 1fr; }
  .ai-schedule-grid > div { min-height: 65px; }
  .ai-console-action { align-items: flex-start; flex-direction: column; }
  .ai-console-action > strong { width: 100%; display: flex; justify-content: space-between; }
  .comparison-wrap::after { content: "Scorri orizzontalmente →"; display: block; padding: 10px 18px; color: var(--muted); border-top: 1px solid var(--line); font-size: .7rem; }
  th, td { padding: 16px; }
  .trial-section { padding: 72px 0; }
  .trial-stats { grid-template-columns: 1fr; }
  .trial-stat-main { min-height: 118px; flex-direction: row; align-items: center; justify-content: flex-start; gap: 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .trial-stat-main > span { margin-top: 0; }
  .trial-assurances { padding: 8px 22px; }
  .technology-flow { grid-template-columns: 1fr; }
  .technology-flow li { min-height: 0; }
  .sector-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sector-grid article { min-height: 130px; padding: 18px; }
  .support-points { grid-template-columns: 1fr; }
  .support-points article { min-height: 110px; flex-direction: row; align-items: center; }
  .final-cta { padding: 75px 0; }
  .footer-brand-block, .footer-bottom { display: grid; }
  .footer-brand-block > p { text-align: left; }
  .footer-details { grid-template-columns: 1fr; gap: 28px; }
  .footer-details section:last-child { grid-column: auto; }
  .footer-links { flex-wrap: wrap; }
  .consent-panel { padding: 10px; }
  .consent-card { max-height: calc(100vh - 20px); overflow-y: auto; gap: 18px; padding: 22px 18px; border-radius: 13px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .button { width: 100%; }
  .consent-row { align-items: flex-start; }
  .thanks-main { min-height: 590px; }
}

@media (min-width: 1021px) {
  .ai-spot-section { padding: clamp(92px, 7.5vw, 118px) 0; }
  .ai-spot-grid { grid-template-columns: minmax(0, 1fr) minmax(500px, .94fr); gap: clamp(48px, 6vw, 82px); align-items: center; }
  .ai-spot-copy { padding-top: 10px; }
  .ai-spot-copy h2 { max-width: 620px; margin-bottom: 22px; font-size: clamp(3.8rem, 4.65vw, 4.75rem); line-height: .94; }
  .ai-spot-lead { max-width: 610px; margin-bottom: 25px; font-size: 1.05rem; line-height: 1.58; }
  .ai-service-modes { margin-bottom: 16px; }
  .ai-service-modes > div { min-height: 136px; display: flex; flex-direction: column; padding: 15px 16px; }
  .ai-service-modes > div p { margin-top: auto; padding-top: 8px; }
  .ai-demo-grid { margin-bottom: 17px; }
  .ai-demo-grid > div { padding: 13px 15px; }
  .ai-spot-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 25px; }
  .ai-spot-steps li { min-height: 118px; grid-template-columns: 28px 1fr; gap: 9px; padding: 13px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.035); }
  .ai-spot-steps li > span { width: 25px; height: 25px; }
  .ai-spot-steps strong { font-size: .82rem; line-height: 1.3; }
  .ai-spot-steps small { font-size: .7rem; line-height: 1.42; }
  .ai-spot-console { width: min(100%, 570px); align-self: center; justify-self: end; padding: 28px; border-radius: 23px; }
  .ai-console-top { padding-bottom: 17px; }
  .ai-script-preview { margin-top: 17px; padding: 14px 16px; }
  .ai-waveform { height: 62px; margin: 8px 0; }
  .ai-voice-row, .ai-music-row { padding: 12px 13px; }
  .ai-schedule-grid { margin-top: 10px; }
  .ai-schedule-grid > div { min-height: 66px; padding: 11px 13px; }
  .ai-schedule-grid strong { margin-top: 5px; }
  .ai-console-action { margin-top: 13px; padding-top: 14px; }
}

/* Doppio livello informativo: scoperta, marketing e IT */
.hero-answers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 0 0 24px; padding: 0; list-style: none; }
.hero-answers li { min-width: 0; display: grid; grid-template-columns: 30px 1fr; gap: 9px; padding: 13px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; background: rgba(4,35,70,.17); }
.hero-answers > li > span { width: 29px; height: 29px; color: #b9e870; font-size: 21px; }
.hero-answers strong, .hero-answers small { display: block; }
.hero-answers strong { margin-bottom: 2px; color: #fff; font-size: .76rem; }
.hero-answers small { color: #c9d9e8; font-size: .67rem; line-height: 1.4; }

.trial-delivery { max-width: 470px; display: grid; gap: 4px; }
.trial-delivery strong { color: #fff; font-size: .83rem; }
.trial-delivery span { color: #dbe8f3; font-size: .74rem; line-height: 1.4; }
.trial-delivery small { color: #8fa8be; font-size: .68rem; line-height: 1.4; }
.trial-responsibilities { display: flex; flex-wrap: wrap; gap: 6px; margin: 5px 0 3px; }
.trial-responsibilities span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; background: rgba(255,255,255,.06); font-size: .67rem; }
.trial-responsibilities b { margin-right: 4px; color: var(--lime); text-transform: uppercase; letter-spacing: .04em; }

.service-explainer { padding: clamp(68px, 7vw, 94px) 0; background: #fff; }
.service-explainer .container > div:first-child { max-width: 760px; margin-bottom: 35px; }
.service-explainer h2 { margin-bottom: 0; text-wrap: balance; }
.service-explainer ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.service-explainer ol::before { content: ""; position: absolute; left: 15%; right: 15%; top: 34px; height: 1px; background: linear-gradient(90deg, var(--blue-600), var(--cyan), var(--lime)); opacity: .45; }
.service-explainer li { position: relative; z-index: 1; min-height: 210px; display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-content: start; padding: 24px; border: 1px solid #dce7ef; border-radius: 16px; background: #f8fbfd; box-shadow: 0 10px 28px rgba(16,53,86,.055); }
.service-explainer li > span { width: 52px; height: 52px; color: #fff; border-radius: 14px; background: linear-gradient(135deg, var(--blue-700), #1681a8); font-size: 27px; box-shadow: 0 8px 20px rgba(7,83,154,.18); }
.service-explainer li small { color: var(--blue-600); font-size: .67rem; font-weight: 850; letter-spacing: .1em; }
.service-explainer li strong { display: block; margin: 4px 0 7px; font-size: 1rem; line-height: 1.3; text-wrap: balance; }
.service-explainer li p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; text-wrap: pretty; }
.customer-role { margin: 20px 0 0; padding: 17px 20px; color: #536a7f; border-left: 3px solid var(--lime); background: #f3f8fb; font-size: .88rem; }
.customer-role strong { color: var(--ink); }

.network-use-cases { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; padding: 0; list-style: none; }
.network-use-cases li { padding: 6px 9px; color: #e8f4f5; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; background: rgba(255,255,255,.08); font-size: .7rem; font-weight: 650; }
.network-control { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; align-items: stretch; margin-top: 20px; padding: clamp(25px, 4vw, 42px); color: #fff; border-radius: 20px; background: linear-gradient(135deg, #062b55, #086e7c); box-shadow: 0 18px 42px rgba(6,50,84,.15); }
.network-control .eyebrow { color: #b9e870; }
.network-control h3 { max-width: 650px; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.responsibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.responsibility-grid > div { padding: 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.06); }
.responsibility-grid small, .responsibility-grid strong { display: block; }
.responsibility-grid small { margin-bottom: 5px; color: #a9d9dd; font-size: .65rem; text-transform: uppercase; }
.responsibility-grid strong { font-size: .76rem; line-height: 1.4; }
.network-console { padding: 22px; color: var(--ink); border: 1px solid rgba(255,255,255,.78); border-radius: 15px; background: #f7f9fc; box-shadow: 0 16px 35px rgba(1,27,54,.2); }
.network-console > div { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #dce5ee; }
.network-console > div span { color: #687c90; font-size: .68rem; text-transform: uppercase; }
.network-console > div strong { grid-column: 1; font-size: 1rem; }
.network-console > div i { grid-column: 2; grid-row: 1 / 3; width: 40px; height: 40px; color: #fff; border-radius: 10px; background: var(--blue-600); }
.network-console ul { display: grid; gap: 8px; margin: 15px 0; padding: 0; list-style: none; }
.network-console li, .network-console > p { display: flex; justify-content: space-between; gap: 16px; margin: 0; padding: 9px 11px; border-radius: 8px; background: #eaf2f8; font-size: .74rem; }
.network-console li b { color: var(--blue-700); }

.it-details { grid-column: 1 / -1; overflow: hidden; border: 1px solid rgba(151,205,226,.34); border-radius: 18px; background: rgba(3,25,54,.38); }
.it-details summary { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 28px; cursor: pointer; list-style: none; }
.it-details summary::-webkit-details-marker { display: none; }
.it-details summary span small, .it-details summary span strong { display: block; }
.it-details summary small { margin-bottom: 4px; color: #9bd1e1; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.it-details summary strong { color: #fff; font-size: 1.3rem; }
.it-details summary > i { width: 38px; height: 38px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.it-details-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 22px 22px; }
.it-details-body article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; background: rgba(255,255,255,.06); }
.it-details-body article:last-child { grid-column: 1 / -1; }
.it-details-body article > span { width: 42px; height: 42px; color: #b9e870; font-size: 24px; }
.it-details-body h3 { margin: 1px 0 7px; color: #fff; font-size: 1rem; }
.it-details-body p { margin: 0; color: #c2d2df; font-size: .82rem; line-height: 1.55; }
.it-details-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 22px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.it-details-cta p { margin: 0; color: #d7e5ee; }

.faq-group + .faq-group { margin-top: 30px; }
.faq-group > h3 { margin: 0 0 7px; color: var(--blue-700); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1020px) {
  .hero-answers { grid-template-columns: 1fr; }
  .network-control { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .service-explainer ol { grid-template-columns: 1fr; }
  .service-explainer ol::before { display: none; }
  .service-explainer li { min-height: 0; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .it-details-body { grid-template-columns: 1fr; }
  .it-details-body article:last-child { grid-column: auto; }
  .it-details-cta { align-items: stretch; flex-direction: column; }
}

@media (max-width: 540px) {
  .thanks-main { min-height: calc(100vh - 70px); padding: 48px 16px; }
  .thanks-card { padding: 32px 21px; border-radius: 17px; }
  .thanks-card h1 { font-size: 2.45rem; }
  .thanks-actions { display: grid; }
  .thanks-actions .button { width: 100%; }
  .hero-answers li { padding: 11px; }
  .trial-delivery { max-width: none; }
  .network-control { padding: 22px 18px; }
  .it-details summary { min-height: 78px; padding: 18px; }
  .it-details summary strong { font-size: 1.08rem; }
  .it-details-body { padding: 0 12px 12px; }
  .it-details-body article { grid-template-columns: 34px 1fr; padding: 15px 13px; }
  .it-details-body article > span { width: 34px; height: 34px; font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .button:hover, .benefit-grid article:hover, .steps article:hover, .feature-list article:hover, .multistore-benefits article:hover, .sector-grid article:hover, .support-points article:hover, .form-card:focus-within { transform: none; }
  .hero-glow, .sonic-wave, .benefits-section::before, .seasonal-section::before, .process::before, .problem-section::after, .process::after, .multistore-section::after, .comparison-section::after, .sectors::after, .support-section::after, .trial-section::before, .trial-section::after, .final-cta::after { transform: none; }
}

/* Scala tipografica: ritmo modulare ispirato alla proporzione aurea.
   I passaggi principali 1.272 → 2.058 → 3.33 seguono un rapporto vicino a φ. */
:root {
  --type-xs: .8rem;
  --type-sm: .9rem;
  --type-base: 1rem;
  --type-lead: 1.125rem;
  --type-h3: 1.272rem;
  --type-h2: 2.058rem;
  --type-h1: 3.33rem;
}

body { font-size: 18px; line-height: 1.68; }
h1 { font-size: clamp(2.75rem, 5vw, 4rem); line-height: 1.03; }
h2 { font-size: clamp(2.15rem, 3.7vw, 3.05rem); line-height: 1.07; }
h3 { font-size: clamp(1.18rem, 1.6vw, var(--type-h3)); line-height: 1.2; }
.section-intro, .hero-lead { font-size: var(--type-lead); line-height: 1.62; }
.eyebrow { font-size: var(--type-xs); line-height: 1.4; }
.button, .button-small { font-size: var(--type-sm); }
.header-contact > span, .hero-audience-note, .trial-note, .social-proof p { font-size: var(--type-sm); }
.check-list { font-size: .97rem; }

.form-card > p:not(.form-kicker) { font-size: var(--type-sm); }
.form-kicker, .field label, .optional-field summary { font-size: var(--type-xs); }
.privacy-check { font-size: .8rem; }
.form-error, .form-microcopy { font-size: .8rem; }
.form-microcopy { line-height: 1.45; }
.trust-grid p { font-size: var(--type-xs); }

.benefit-index { font-size: .78rem; }
.benefit-grid p { font-size: clamp(.95rem, 1.08vw, 1.05rem); }
.seasonal-copy > p { font-size: 1.08rem; }
.seasonal-copy li { font-size: .95rem; }
.seasonal-copy li span, .problem-points article > span { font-size: .72rem; }
.problem-points h3 { font-size: 1.12rem; }
.problem-points p { font-size: .92rem; }
.license-copy > p { font-size: .96rem; }
.license-copy li { font-size: .8rem; }
.license-copy small { font-size: .78rem; }
.steps p { font-size: .96rem; }
.info-note, .setup-detail { font-size: .9rem; }
.setup-detail small { font-size: .8rem; }

.feature-new { font-size: .7rem; }
.ai-spot-lead { font-size: clamp(1.08rem, 1.35vw, 1.22rem); }
.ai-service-modes small { font-size: .7rem; }
.ai-service-modes strong { font-size: .94rem; }
.ai-service-modes p { font-size: .82rem; }
.ai-spot-steps li > span { font-size: .67rem; }
.ai-spot-steps strong { font-size: 1rem; }
.ai-spot-steps small { font-size: .84rem; line-height: 1.5; }
.ai-console-top strong { font-size: 1rem; }
.ai-console-top small { font-size: .76rem; }
.ai-script-preview span, .ai-voice-row > span, .ai-music-row > span, .ai-schedule-grid span { font-size: .72rem; }
.ai-script-preview p { font-size: .92rem; }
.ai-voice-row strong, .ai-music-row strong { font-size: .8rem; }
.ai-schedule-grid strong { font-size: .86rem; }
.ai-console-action > span, .ai-console-action > strong { font-size: .82rem; }

.feature-list h3 { font-size: 1.08rem; }
.feature-list p, .multistore-benefits p { font-size: .91rem; }
.content-note { font-size: .92rem; }
.integration-note { font-size: .84rem; }
.integration-note span { font-size: .76rem; }
.studio-placeholder span { font-size: .84rem; }
.studio-placeholder small { font-size: .76rem; }
.multistore-benefits h3 { font-size: 1.1rem; }
table { font-size: .96rem; }
thead th { font-size: .8rem; }
.table-brand { font-size: .7rem; }
.trial-grid .trial-response-note { font-size: .9rem; }
.trial-stat-main > span { font-size: .82rem; }
.trial-assurances strong { font-size: .98rem; }
.trial-assurances small { font-size: .8rem; }
.sector-grid h3 { font-size: 1.08rem; }
.support-points strong { font-size: .94rem; }
.faq-answer p { font-size: .98rem; line-height: 1.65; }
.final-benefit p { font-size: .92rem; }

footer { font-size: .82rem; line-height: 1.62; }
.footer-details h2 { font-size: .88rem; }
.footer-details strong { font-size: .76rem; }
.footer-contact-button { font-size: .82rem; }
.brand-footer { font-size: .84rem; }
.consent-summary p:not(.consent-kicker) { font-size: .9rem; }
.consent-summary > a { font-size: .84rem; }
.consent-kicker { font-size: .74rem; }
.consent-actions .button { font-size: .84rem; }
.consent-row strong { font-size: .92rem; }
.consent-row small, .consent-row > span:last-child { font-size: .8rem; }
.back-link { font-size: .92rem; }

@media (max-width: 760px) {
  body { font-size: 17px; line-height: 1.66; }
  h1 { font-size: clamp(2.55rem, 11.5vw, 3.35rem); }
  h2 { font-size: clamp(2.05rem, 9vw, 2.62rem); }
  h3 { font-size: 1.2rem; }
  .section-intro, .hero-lead { font-size: 1.05rem; }
  .benefits-section .section-intro, .seasonal-copy > p { font-size: 1.04rem; }
  .benefit-grid p { font-size: .98rem; }
  .ai-spot-copy h2 { font-size: clamp(3rem, 13vw, 4.1rem); }
  .ai-service-modes p, .ai-spot-steps small { font-size: .86rem; }
  .feature-list p, .multistore-benefits p, .problem-points p { font-size: .94rem; }
  .mobile-sticky { font-size: .94rem; }
}

@media (max-width: 540px) {
  .trust-grid p { font-size: .76rem; }
  .comparison-wrap::after { font-size: .8rem; }
  .sector-grid h3 { font-size: 1rem; line-height: 1.25; }
}

/* Revisione conversione 2026-08-21 */
.editorial-photo-section { padding-top: clamp(54px, 6.5vw, 90px); padding-bottom: clamp(54px, 7vw, 100px); background: #f7f9fc; }
.editorial-photo-card { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(310px, 1fr); min-height: 500px; padding: 0; overflow: hidden; border: 1px solid #d7e2ed; border-radius: 26px; background: #fff; box-shadow: 0 24px 65px rgba(9, 44, 82, .12); }
.editorial-photo-placeholder { position: relative; min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 38px; overflow: hidden; color: #dcecff; background: linear-gradient(135deg, #0b315c 0%, #0b6590 54%, #1590aa 100%); text-align: center; }
.editorial-photo-placeholder::before { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; top: -145px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.035); }
.editorial-photo-placeholder::after { content: "AREA FOTO 8:5"; position: absolute; left: 25px; bottom: 21px; color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 800; letter-spacing: .16em; }
.editorial-photo-placeholder .material-symbols-outlined { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 5px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; font-size: 29px; }
.editorial-photo-placeholder strong { font-size: clamp(1.25rem, 2vw, 1.7rem); color: #fff; }
.editorial-photo-placeholder small { font-size: .86rem; }
.editorial-photo-placeholder b { margin-top: 5px; padding: 7px 11px; color: #07355c; border-radius: 99px; background: #c8ef76; font-size: .7rem; letter-spacing: .04em; }
.editorial-photo-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 68px); }
.editorial-photo-copy h2 { max-width: 470px; margin: 0 0 20px; font-size: clamp(2rem, 3.25vw, 3.35rem); line-height: 1.02; }
.editorial-photo-copy > p:not(.eyebrow) { margin: 0 0 26px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.editorial-photo-copy > small { padding-top: 20px; color: #536b84; border-top: 1px solid #dce5ee; font-size: .78rem; line-height: 1.55; }
.editorial-photo-card:has(img) .editorial-photo-placeholder { padding: 0; }
.editorial-photo-placeholder img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.editorial-photo-ready::before, .editorial-photo-ready::after { display: none; }

.hero-photo { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.hero-photo-pending { display: none; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,68,120,.97) 0%, rgba(7,68,120,.91) 38%, rgba(7,68,120,.56) 67%, rgba(3,27,57,.42) 100%), linear-gradient(180deg, rgba(2,20,43,.1), rgba(2,20,43,.46)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.trial-journey { padding: 28px 0; color: #dce9f5; background: var(--navy-950); }
.trial-journey .container { display: grid; grid-template-columns: 1fr auto; gap: 24px 40px; align-items: center; }
.trial-journey ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.trial-journey li { position: relative; display: flex; align-items: center; gap: 11px; min-height: 44px; padding-right: 26px; font-size: .82rem; line-height: 1.3; }
.trial-journey li:not(:last-child)::after { content: "arrow_forward"; position: absolute; right: 9px; color: var(--cyan); font-family: "Material Symbols Outlined"; font-size: 17px; font-feature-settings: "liga"; }
.trial-journey li span { color: var(--lime); font-size: .67rem; font-weight: 850; letter-spacing: .08em; }
.trial-journey p { max-width: 320px; margin: 0; color: #9fb2c7; font-size: .72rem; line-height: 1.45; }

.ai-teaser { position: relative; max-width: 880px; min-height: 92px; display: grid; grid-template-columns: .8fr 1.3fr auto; gap: 22px; align-items: center; margin: 18px auto 0; padding: 20px 26px; overflow: hidden; color: #fff; border: 1px solid rgba(207,158,255,.65); border-radius: 16px; background: linear-gradient(135deg, #3c176d, #7040be 48%, #244b9c); box-shadow: 0 16px 40px rgba(97,47,174,.22), 0 0 28px rgba(166,91,255,.13); text-decoration: none; }
.ai-teaser::before { content: ""; position: absolute; width: 190px; height: 190px; right: 8%; top: -135px; border-radius: 50%; background: rgba(220,168,255,.24); filter: blur(22px); }
.ai-teaser span, .ai-teaser strong, .ai-teaser i { position: relative; z-index: 1; }
.ai-teaser span { color: #e4d4ff; font-size: .84rem; }
.ai-teaser b { margin-right: 8px; padding: 5px 8px; color: #32105c; border-radius: 99px; background: #d7afff; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.ai-teaser strong { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.2; }
.ai-teaser i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-style: normal; transition: transform .2s ease, background .2s ease; }
.ai-teaser:hover i { transform: translateX(4px); background: rgba(255,255,255,.12); }

.audio-controls { display: grid; grid-template-columns: 46px 1fr; gap: 13px; align-items: center; }
.audio-toggle { width: 46px; height: 46px; display: grid; place-items: center; padding: 0; color: #fff; border: 1px solid rgba(225,197,255,.5); border-radius: 50%; background: linear-gradient(135deg, #a955ff, #6657db); cursor: pointer; box-shadow: 0 0 24px rgba(176,83,255,.28); }
.audio-toggle i { margin-left: 2px; font-style: normal; }
.audio-timeline input { width: 100%; height: 5px; display: block; margin: 0; accent-color: #c178ff; cursor: pointer; }
.audio-timeline div { display: flex; justify-content: space-between; margin-top: 5px; color: #cbbbdc; font-size: .68rem; }
.audio-unavailable { margin: 10px 0 0; color: #e3cfff; font-size: .78rem; }

.seasonal-inline { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px 48px; margin-top: 32px; padding: clamp(30px, 4vw, 48px); overflow: hidden; color: #fff; border: 1px solid rgba(113,193,221,.42); border-radius: 22px; background: radial-gradient(circle at 91% 10%, rgba(52,163,191,.22), transparent 34%), linear-gradient(135deg, #05264d 0%, #073e6b 58%, #075b78 100%); box-shadow: 0 20px 48px rgba(5,42,78,.16), inset 0 1px 0 rgba(255,255,255,.08); }
.seasonal-inline::after { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; bottom: -210px; border: 1px solid rgba(145,200,62,.17); border-radius: 50%; box-shadow: 0 0 0 45px rgba(145,200,62,.035); }
.seasonal-inline .eyebrow { color: #b9e870; text-shadow: 0 0 18px rgba(145,200,62,.18); }
.seasonal-inline h3 { max-width: 460px; margin: 0; font-size: clamp(1.55rem, 3vw, 2.45rem); }
.seasonal-inline > p { position: relative; z-index: 1; margin: 0; color: #f1f7fb; font-size: 1.03rem; font-weight: 500; }
.seasonal-inline ul { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.seasonal-inline li { position: relative; z-index: 1; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 14px; color: #fff; border: 1px solid rgba(151,205,226,.48); border-radius: 11px; background: rgba(255,255,255,.11); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); font-size: .86rem; font-weight: 650; text-align: center; }
.seasonal-inline li .material-symbols-outlined { color: #b9e870; font-size: 22px; font-variation-settings: "FILL" 0, "wght" 400, "GRAD" -25, "opsz" 24; }

.day-rhythm { display: grid; grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr); gap: clamp(32px, 5vw, 68px); align-items: center; margin: 28px 0 0; padding: clamp(30px, 4.5vw, 52px); border: 1px solid #d5e2ec; border-radius: 22px; background: linear-gradient(145deg, #f9fbfd, #edf5f9); box-shadow: 0 20px 50px rgba(9,51,88,.1); }
.service-explainer .day-rhythm { margin-top: clamp(34px, 4.5vw, 54px); }
.service-explainer .day-rhythm + .ai-teaser { margin-top: 28px; }
.day-rhythm-copy h3 { max-width: 530px; margin-bottom: 17px; font-size: clamp(1.65rem, 3vw, 2.65rem); line-height: 1.04; }
.day-rhythm-copy > p:not(.eyebrow) { margin-bottom: 18px; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.day-rhythm-copy > small { display: block; padding-left: 13px; color: #536d83; border-left: 2px solid var(--lime); font-size: .76rem; line-height: 1.5; }
.day-rhythm-chart { position: relative; min-height: 330px; padding: 24px 25px 21px; overflow: hidden; color: #fff; border-radius: 18px; background: radial-gradient(circle at 82% 8%, rgba(47,166,193,.26), transparent 33%), linear-gradient(135deg, #062a55, #075f86); box-shadow: 0 18px 38px rgba(4,43,78,.2), inset 0 1px 0 rgba(255,255,255,.1); }
.rhythm-status { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.rhythm-status span { color: #b9e870; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.rhythm-status b { padding: 5px 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; font-size: .64rem; }
.rhythm-bars { height: 150px; display: flex; align-items: end; gap: clamp(6px, 1vw, 10px); padding: 8px 8px 0; border-bottom: 1px solid rgba(255,255,255,.22); background: repeating-linear-gradient(180deg, transparent 0 36px, rgba(255,255,255,.07) 36px 37px); }
.rhythm-bars i { width: 100%; height: var(--level); display: block; border-radius: 7px 7px 2px 2px; background: linear-gradient(180deg, #b9e870, #42b4cf); box-shadow: 0 0 15px rgba(105,189,219,.2); transform-origin: bottom; transition: height 1.45s cubic-bezier(.22,.68,.25,1), filter .9s ease, opacity .9s ease; }
.rhythm-times { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 11px; }
.rhythm-times span { display: grid; color: #fff; font-size: .72rem; font-weight: 750; }
.rhythm-times span:nth-child(2) { text-align: center; }
.rhythm-times span:last-child { text-align: right; }
.rhythm-times small { color: #a9c0d2; font-size: .62rem; font-weight: 500; }
.rhythm-moods { display: flex; align-items: center; gap: 7px; margin-top: 19px; }
.rhythm-moods span { margin-right: auto; color: #87a8bd; font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rhythm-moods b { padding: 5px 8px; color: #dcebf4; border: 1px solid rgba(255,255,255,.17); border-radius: 7px; background: rgba(255,255,255,.07); font-size: .62rem; }
.rhythm-moods b.is-active { color: #173311; border-color: #b9e870; background: #b9e870; box-shadow: 0 0 18px rgba(185,232,112,.2); }
.day-rhythm.rhythm-playing .rhythm-bars i { filter: saturate(1.06) brightness(1.04); will-change: height; }

@media (prefers-reduced-motion: reduce) {
  .rhythm-bars i { transition: none; }
}

.technology-grid { align-items: stretch; }

@media (max-width: 1020px) {
  .trial-journey .container { grid-template-columns: 1fr; }
  .trial-journey p { max-width: none; }
}

@media (max-width: 800px) {
  .day-rhythm { grid-template-columns: 1fr; }
  .editorial-photo-card { grid-template-columns: 1fr; min-height: 0; }
  .editorial-photo-placeholder { min-height: 330px; }
  .editorial-photo-copy { padding: 32px 28px 36px; }
  .hero-photo { inset: 0; opacity: .22; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(7,55,101,.35), #084d86 72%); }
  .trial-journey ol { grid-template-columns: 1fr; gap: 10px; }
  .trial-journey li:not(:last-child)::after { display: block; transform: rotate(90deg); }
  .ai-teaser { grid-template-columns: 1fr auto; }
  .ai-teaser span { grid-column: 1 / -1; }
  .seasonal-inline { grid-template-columns: 1fr; }
  .seasonal-inline ul { grid-column: auto; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .day-rhythm { gap: 24px; padding: 25px 20px; border-radius: 18px; }
  .day-rhythm-chart { min-height: 300px; padding: 20px 15px 18px; }
  .rhythm-bars { gap: 5px; }
  .rhythm-moods { flex-wrap: wrap; }
  .editorial-photo-section { padding-top: 42px; padding-bottom: 48px; }
  .editorial-photo-card { border-radius: 19px; }
  .editorial-photo-placeholder { min-height: 245px; padding: 24px; }
  .editorial-photo-placeholder::after { left: 17px; bottom: 14px; }
  .editorial-photo-placeholder .material-symbols-outlined { width: 50px; height: 50px; }
  .editorial-photo-copy { padding: 28px 22px 31px; }
  .trial-journey { padding: 22px 0; }
  .trial-journey ol { grid-template-columns: 1fr; }
  .trial-journey li { min-height: 38px; }
  .trial-journey li:not(:last-child)::after { display: block; transform: rotate(90deg); }
  .ai-teaser { min-height: 0; padding: 20px; }
  .ai-teaser strong { font-size: 1.08rem; }
  .seasonal-inline ul { grid-template-columns: 1fr 1fr; }
  .audio-controls { grid-template-columns: 44px 1fr; }
  .audio-toggle { width: 44px; height: 44px; }
  .trial-note { grid-template-columns: 42px 1fr; padding: 15px; }
  .trial-note-icon { width: 42px; height: 42px; font-size: 24px; }
  .trial-note strong { font-size: 1rem; }
}

/* Revisione responsive 2026-08-24 */
.section { padding-block: clamp(76px, 7vw, 96px); }
.benefits-section { padding-block: clamp(84px, 7vw, 104px); }
.seasonal-section, .ai-spot-section { padding-block: clamp(84px, 7.5vw, 108px); }
.multistore-section, .support-section { padding-block: clamp(76px, 6.5vw, 92px); }
.trial-section { padding-block: clamp(72px, 6vw, 84px); }
.final-cta { padding-block: clamp(78px, 6.5vw, 92px); }

@media (min-width: 1021px) {
  .ai-spot-section { padding-block: clamp(84px, 7.5vw, 108px); }
}

@media (max-width: 800px) {
  .section,
  .benefits-section,
  .seasonal-section,
  .ai-spot-section,
  .multistore-section,
  .support-section,
  .trial-section,
  .final-cta { padding-block: 64px; }
}

@media (max-width: 540px) {
  .hero-grid { gap: 30px; padding-top: 42px; padding-bottom: 56px; }

  .trial-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 15px;
    border-radius: 12px;
  }
  .trial-note span { margin-top: 0; }
  .trial-note .trial-note-icon { aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px; }

  .mobile-sticky {
    width: min(190px, calc(100% - 20px));
    min-height: 48px;
    border-radius: 12px;
  }

  .consent-panel { padding: 8px; }
  .consent-card {
    max-height: calc(100vh - 16px);
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }
  .consent-summary h2 { margin-bottom: 6px; font-size: 1.14rem; }
  .consent-summary p:not(.consent-kicker) { margin-bottom: 5px; font-size: .78rem; line-height: 1.4; }
  .consent-kicker { margin-bottom: 3px; }
  .consent-actions { gap: 8px; }
  .consent-actions .button { min-height: 42px; padding: 9px 12px; }
  .consent-actions [data-consent-accept],
  .consent-actions [data-consent-save] { grid-column: 1 / -1; }
}
