/*
 * GAW Digital Solutions — dark premium, palette ESG verde/blu.
 * Animazioni discrete + accessibili (prefers-reduced-motion).
 */

body { -webkit-font-smoothing: antialiased; background: var(--wp--preset--color--base); }
/* Anti overflow orizzontale (marquee/tag larghe): clip SOLO su <main> (il contenuto).
   NON su body/.wp-site-blocks: sono antenati del drawer fixed del menu mobile e lo
   romperebbero (header/nav stanno FUORI da main). main clippa la larghezza in eccesso
   senza generare scroll di pagina. */
main { overflow-x: clip; }
/* One-page: scorrimento morbido alle ancore, con offset per l'header sticky. */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }
.wp-block-button__link { transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.wp-block-button__link:hover { transform: translateY(-1px); }

/* ---------- Header ---------- */
/* Sticky sul wrapper del template-part: il <header class="gaw-header"> interno e annidato
   dentro <header class="wp-block-template-part"> e da solo non aggancia (travel zero). */
header.wp-block-template-part { position: sticky; top: 0; z-index: 100; }
.gaw-header {
	background: rgba(14,20,32,0.72);
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--wp--preset--color--border);
}
/* Nav = blocco wp:navigation (menu WP). Il layout flex lo gestisce il blocco;
   qui stiliamo i link sul dark, l'hamburger e l'overlay mobile. */
.gaw-nav .wp-block-navigation-item__content,
.gaw-nav a { color: var(--wp--preset--color--text); text-decoration: none; font-size: 0.9375rem; font-weight: 500; opacity: .85; transition: opacity .15s ease, color .15s ease; }
.gaw-nav .wp-block-navigation-item__content:hover,
.gaw-nav .current-menu-item .wp-block-navigation-item__content,
.gaw-nav a:hover, .gaw-nav a:focus-visible { opacity: 1; color: var(--wp--preset--color--green-bright); }
/* pulsante hamburger + chiudi (mobile) su header scuro */
.gaw-nav .wp-block-navigation__responsive-container-open,
.gaw-nav .wp-block-navigation__responsive-container-close { color: var(--wp--preset--color--contrast); }
/* CTA "Contattaci" come pulsante dentro il menu (desktop inline + drawer mobile) */
.gaw-nav-cta .wp-block-navigation-item__content {
	background: var(--wp--preset--color--green);
	color: var(--wp--preset--color--contrast) !important;
	padding: 0.55rem 1.4rem; border-radius: 999px; font-weight: 600; opacity: 1;
}
.gaw-nav-cta .wp-block-navigation-item__content:hover { filter: brightness(1.06); color: var(--wp--preset--color--contrast) !important; }

/* Overlay mobile = DRAWER laterale che scorre da destra (voci + CTA dentro).
   Prefisso body.has-modal-open (WP lo aggiunge al body all'apertura) per vincere
   la cascata del blocco navigation; background hex esplicito e opaco. */
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open {
	background-color: rgba(6,10,18,0.6) !important;
	position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
	height: 100vh !important; width: 100% !important;
	z-index: 100001 !important;
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .wp-block-navigation__responsive-container-content {
	position: fixed !important;
	top: 0 !important; right: 0 !important; bottom: auto !important; left: auto !important;
	margin: 0 !important;
	width: min(86vw, 360px) !important;
	height: 100vh !important; min-height: 100vh !important; max-height: 100vh !important;
	background-color: #0e1420 !important;
	box-shadow: -24px 0 70px rgba(0,0,0,.55);
	border-left: 1px solid var(--wp--preset--color--border);
	padding: 5.25rem 1.75rem 2rem !important;
	align-items: flex-start !important; justify-content: flex-start !important; gap: 1.15rem !important;
	overflow-y: auto;
	animation: gawDrawer .28s ease;
}
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .wp-block-navigation-item { width: 100%; }
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .gaw-nav-cta { margin-top: 0.5rem; }
.wp-block-navigation__responsive-container.has-modal-open.is-menu-open .gaw-nav-cta .wp-block-navigation-item__content { display: inline-block; }
@keyframes gawDrawer { from { transform: translateX(100%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .wp-block-navigation__responsive-container.has-modal-open.is-menu-open { animation: none; } }

/* ---------- Hero ---------- */
.gaw-hero { position: relative; overflow: hidden; }
.gaw-hero__cloud {
	position: absolute; inset: -10% -10% auto -10%; height: 720px; pointer-events: none; z-index: 0;
	background: var(--wp--preset--gradient--cloud, radial-gradient(60% 60% at 50% 40%, rgba(22,199,132,.28), rgba(13,110,253,.18) 45%, rgba(14,20,32,0) 75%));
	filter: blur(8px);
	animation: gawCloud 16s ease-in-out infinite alternate;
}
.gaw-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: start; min-height: 540px; }
.gaw-hero__content { max-width: 640px; }
.gaw-hero__viz { align-self: center; }
.gaw-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gaw-tags--strip { display: block; margin-top: 18px; margin-bottom: 16px; }
.gaw-tags__track { display: flex; flex-wrap: wrap; gap: 0; }
.gaw-tags__track .gaw-tag { margin-right: 0.4rem; }
.gaw-tag--clone { display: none; }
.gaw-tag {
	font-size: 0.72rem; font-weight: 600; color: var(--wp--preset--color--text); white-space: nowrap;
	padding: 0.34rem 0.72rem; border-radius: 999px;
	border: 1px solid var(--wp--preset--color--border); background: rgba(255,255,255,0.03);
}
/* Desktop pieno: badge su un'unica riga */
@media (min-width: 1200px) { .gaw-tags__track { flex-wrap: nowrap; } }
.gaw-accent {
	white-space: nowrap;
	background: var(--wp--preset--gradient--esg, linear-gradient(120deg,#16c784,#0d6efd));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.gaw-btn-ghost .wp-block-button__link { background: transparent !important; color: var(--wp--preset--color--text) !important; }
.gaw-btn-ghost .wp-block-button__link:hover { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.35); }

/* Hero visual: globo digitale interattivo (canvas) su backdrop cloud ESG */
.gaw-hero__viz { position:relative; width:100%; max-width:580px; margin-inline:auto; aspect-ratio:1/1; }
/* Desktop: stacca il globo dal bordo destro, spostandolo verso il centro */
@media (min-width: 901px) { .gaw-hero__viz { width: calc(100% - 120px); margin-left: auto; margin-right: 120px; } }
/* Desktop: rientro sinistro del testo hero per accentrare titolo/sottotitolo */
@media (min-width: 901px) { .gaw-hero__content { margin-left: 2.5rem; max-width: 600px; } .gaw-tags--strip { margin-left: 2.5rem; } }
.gaw-viz__glow { position:absolute; inset:12%; border-radius:50%; background: radial-gradient(circle at 50% 50%, rgba(22,199,132,.26), rgba(13,110,253,.14) 45%, transparent 70%); filter: blur(20px); animation: gawGlow 6s ease-in-out infinite; pointer-events:none; }
.gaw-viz__blob { position:absolute; border-radius:50%; filter:blur(13px); opacity:.5; pointer-events:none; }
.gaw-viz__blob--1 { width:132px; height:132px; top:2%; right:3%; background:radial-gradient(circle,rgba(22,199,132,.55),transparent 70%); animation: gawFloat 9s ease-in-out infinite; }
.gaw-viz__blob--2 { width:114px; height:114px; bottom:3%; left:1%; background:radial-gradient(circle,rgba(99,154,249,.55),transparent 70%); animation: gawFloat 11s ease-in-out infinite 1s; }
.gaw-globe { position:absolute; inset:0; width:100%; height:100%; display:block; cursor:crosshair; }
@keyframes gawFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes gawCloud { 0% { transform: translateX(-3%) scale(1); opacity:.9; } 100% { transform: translateX(3%) scale(1.05); opacity:1; } }
@keyframes gawGlow { 0%,100% { opacity:.7; transform:scale(1); } 50% { opacity:1; transform:scale(1.06); } }

@media (max-width: 900px) {
	.gaw-hero__grid { grid-template-columns: 1fr; min-height: 0; }
	.gaw-hero__viz { max-width:380px; margin-top:1.5rem; align-self: auto; }
	.gaw-tags--strip { overflow: hidden; margin-bottom: 16px; }
	.gaw-tags__track { flex-wrap: nowrap; width: max-content; animation: gawTagScroll 28s linear infinite; }
	.gaw-tags--strip:hover .gaw-tags__track,
	.gaw-tags--strip:active .gaw-tags__track { animation-play-state: paused; }
	.gaw-tag { flex: 0 0 auto; }
	.gaw-tag--clone { display: inline; }
}
/* Mobile senza animazioni: niente auto-scroll, scorrimento manuale */
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
	.gaw-tags--strip { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.gaw-tags--strip::-webkit-scrollbar { display: none; }
	.gaw-tags__track { animation: none; width: auto; }
	.gaw-tag--clone { display: none; }
}
@keyframes gawTagScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Sezioni generiche (dark) ---------- */
.gaw-section { padding-block: var(--wp--preset--spacing--60); }
.gaw-card { background: var(--wp--preset--color--surface); border: 1px solid var(--wp--preset--color--border); border-radius: 20px; }

/* ---------- Footer ---------- */
.gaw-footer a { text-decoration: none; }
.gaw-footer a:hover { text-decoration: underline; }
.gaw-footer-bar { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:.6rem 1.5rem; }
.gaw-footer-bar p { margin:0; font-size:.85rem; color:var(--wp--preset--color--muted); }
.gaw-footer-legal a, .gaw-footer-legal button { color:var(--wp--preset--color--muted); background:none; border:0; padding:0; font:inherit; cursor:pointer; }
@media (max-width:560px){ .gaw-footer-bar { justify-content:center; text-align:center; } }

/* ---------- Accessibilità: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.gaw-techmarquee { overflow-x:auto; -webkit-mask-image:none; mask-image:none; }
	.gaw-techmarquee .gaw-tags__track { animation:none; }
	.gaw-hero__cloud, .gaw-viz__glow, .gaw-viz__blob { animation: none !important; }
	[data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.wp-block-button__link:hover { transform: none; }
}

/* ---------- Icona gradiente ESG (card) ---------- */
.gaw-ico { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:12px;
	background: var(--wp--preset--gradient--esg, linear-gradient(120deg,#16c784,#0d6efd));
	box-shadow: 0 6px 18px -6px rgba(13,110,253,.6); }
.gaw-ico svg { width:22px; height:22px; color:#fff; }

/* ---------- Griglie card ---------- */
.gaw-grid { display:grid; gap:1.25rem; }
.gaw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gaw-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .gaw-grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .gaw-grid--3, .gaw-grid--2 { grid-template-columns: 1fr; } }

.gaw-pad { }
.gaw-card { transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.gaw-card:hover { border-color: rgba(22,199,132,.45); transform: translateY(-3px); box-shadow: var(--wp--preset--shadow--glow); }

/* service card */
.gaw-svc { padding: 1.5rem; }
.gaw-svc__title { font-family:"Sora",sans-serif; font-size:1.25rem; font-weight:700; color:#fff; margin:.75rem 0 .35rem; letter-spacing:-.01em; }
.gaw-svc__desc { color: var(--wp--preset--color--muted); font-size:.9375rem; line-height:1.6; margin:0; }

/* product card */
.gaw-prod { padding: 1.5rem; display:flex; flex-direction:column; }
.gaw-prod__head { display:flex; align-items:center; justify-content:space-between; margin-bottom:.75rem; }
.gaw-prod__title { font-family:"Sora",sans-serif; font-size:1.35rem; font-weight:700; color:#fff; margin:0 0 .35rem; letter-spacing:-.01em; }
.gaw-prod__desc { color: var(--wp--preset--color--muted); font-size:.9375rem; line-height:1.6; margin:0 0 1rem; }
.gaw-prod__link { margin-top:auto; color:var(--wp--preset--color--green-bright); font-weight:600; text-decoration:none; }
.gaw-prod__link:hover { color:var(--wp--preset--color--blue-light); }
/* Prodotti: slider orizzontale scrollabile (card stessa altezza, snap, swipe su mobile). */
.gaw-prodscroll { display:flex; gap:1.25rem; overflow-x:auto; scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch; padding-bottom:1rem; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.22) transparent; }
.gaw-prodscroll::-webkit-scrollbar { height:8px; }
.gaw-prodscroll::-webkit-scrollbar-thumb { background:rgba(255,255,255,.16); border-radius:999px; }
.gaw-prodscroll::-webkit-scrollbar-track { background:transparent; }
.gaw-prodscroll > .gaw-prod { flex:0 0 min(320px, 82vw); scroll-snap-align:start; }
.gaw-badge { font-size:.6875rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:.25rem .6rem; border-radius:999px; border:1px solid var(--wp--preset--color--border); color:var(--wp--preset--color--muted); }
.gaw-badge--online { color:var(--wp--preset--color--green-bright); border-color:rgba(22,199,132,.4); }
.gaw-badge--in-arrivo { color:var(--wp--preset--color--blue-light); border-color:rgba(99,154,249,.4); }

/* aicore */
.gaw-aicore { position:relative; }

/* ---------- Clienti: marquee doppia riga direzioni opposte ---------- */
.gaw-clients { overflow: hidden; }
.gaw-marquee { display:flex; flex-direction:column; gap:1.75rem; }
.gaw-marquee__track { overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.gaw-marquee__row { display:flex; align-items:center; gap:1.75rem; width:max-content; animation: gawScrollL 46s linear infinite; }
.gaw-marquee__row--rev { animation-name: gawScrollR; animation-duration: 52s; }
/* Slot uniforme: ogni logo occupa lo stesso spazio (footprint simile), scalato per stare dentro. */
.gaw-logo { flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center; width:132px; height:44px; }
.gaw-marquee img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; filter: brightness(0) invert(1); opacity:.5; transition: opacity .2s ease; }
.gaw-logo:hover img { opacity:1; }
.gaw-clients:hover .gaw-marquee__row { animation-play-state: paused; }
@keyframes gawScrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gawScrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- Timeline (Chi siamo) ---------- */
.gaw-timeline { position:relative; max-width:820px; margin-inline:auto; padding-left:2rem; }
.gaw-timeline::before { content:""; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background:linear-gradient(180deg,#16c784,#0d6efd); opacity:.5; }
.gaw-tl { position:relative; padding:0 0 2rem 0; }
.gaw-tl::before { content:""; position:absolute; left:-2rem; top:4px; width:16px; height:16px; border-radius:50%; background:var(--wp--preset--color--base); border:3px solid var(--wp--preset--color--green-bright); box-shadow:0 0 12px rgba(22,199,132,.6); }
.gaw-tl__year { font-family:"Sora",sans-serif; font-weight:800; color:var(--wp--preset--color--green-bright); font-size:1.05rem; letter-spacing:.02em; }
.gaw-tl__title { font-family:"Sora",sans-serif; font-weight:700; color:#fff; font-size:1.2rem; margin:.15rem 0 .35rem; }
.gaw-tl__desc { color:var(--wp--preset--color--muted); font-size:.95rem; line-height:1.6; margin:0; }
.gaw-tl__photo { margin-top:.75rem; border-radius:14px; border:1px solid var(--wp--preset--color--border); max-width:280px; }

@media (prefers-reduced-motion: reduce) {
	.gaw-marquee__row { animation: none !important; flex-wrap: wrap; justify-content: center; width:auto; }
	.gaw-marquee__track { -webkit-mask-image:none; mask-image:none; }
}

/* ---------- CTA band / page hero ---------- */
.gaw-cta { position:relative; overflow:hidden; border:1px solid var(--wp--preset--color--border); }
.gaw-pagehero { min-height:auto; }
.gaw-pagehero .gaw-hero__cloud { height:420px; }

/* ---------- FAQ ---------- */
.gaw-faq-heading { text-align:center; margin:0 0 1.5rem; }
.gaw-faq-list { max-width:760px; margin-inline:auto; }
.gaw-faq-cat { font-family:"Sora",sans-serif; font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--wp--preset--color--green-bright); margin:1.75rem 0 .85rem; padding-left:.15rem; }
.gaw-faq-cat:first-child { margin-top:0; }
.gaw-faq-item { border:1px solid var(--wp--preset--color--border); border-radius:14px; margin-bottom:.75rem; background:rgba(255,255,255,0.02); overflow:hidden; }
.gaw-faq-q { cursor:pointer; list-style:none; padding:1.1rem 2.5rem 1.1rem 1.25rem; font-family:"Sora",sans-serif; font-weight:600; color:#fff; position:relative; }
.gaw-faq-q::-webkit-details-marker { display:none; }
.gaw-faq-q::after { content:"+"; position:absolute; right:1.1rem; top:1rem; font-size:1.4rem; color:var(--wp--preset--color--green-bright); }
.gaw-faq-item[open] .gaw-faq-q::after { content:"\2013"; }
.gaw-faq-a { padding:0 1.25rem 1.15rem; color:var(--wp--preset--color--muted); line-height:1.65; }

/* ---------- Servizi (righe alternate) ---------- */
.gaw-svcrow__grid { display:grid; grid-template-columns: 1fr 1fr; gap:2.5rem; align-items:center; }
.gaw-svcrow__title { font-family:"Sora",sans-serif; font-size:clamp(1.5rem,3vw,2rem); font-weight:700; color:#fff; margin:.75rem 0 .5rem; letter-spacing:-.01em; }
.gaw-svcrow__desc { color:var(--wp--preset--color--muted); font-size:1.0625rem; line-height:1.6; margin:0; }
.gaw-svcrow__list { list-style:none; margin:0; padding:0; display:grid; gap:.6rem; }
.gaw-svcrow__list li { position:relative; padding-left:1.6rem; color:var(--wp--preset--color--text); }
.gaw-svcrow__list li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:50%; background:var(--wp--preset--gradient--esg,linear-gradient(120deg,#16c784,#0d6efd)); }
@media (max-width:820px){ .gaw-svcrow__grid { grid-template-columns:1fr; gap:1.25rem; } }

/* ---------- Team (co-founder) ---------- */
.gaw-teamcard { overflow:hidden; text-align:center; padding:0; }
.gaw-teamcard__photo { width:100%; aspect-ratio:1/1; height:auto; object-fit:cover; display:block; background:#e9eef6; border-radius:20px 20px 0 0; }
.gaw-teamcard__body { padding:1.25rem 1.5rem 1.6rem; }
.gaw-teamcard__name { font-family:"Sora",sans-serif; font-size:1.25rem; font-weight:700; color:#fff; margin:0 0 .2rem; }
.gaw-teamcard__role { color:var(--wp--preset--color--green-bright); font-size:.9rem; font-weight:600; margin:0; }

/* ---------- Contatti ---------- */
.gaw-contact-grid { display:grid; grid-template-columns: 0.8fr 1.2fr; gap:2.5rem; }
.gaw-contact-info h2 { font-family:"Sora",sans-serif; margin:0 0 .75rem; }
.gaw-contact-info p { line-height:1.9; }
.gaw-contact-info .gaw-muted { color:var(--wp--preset--color--muted); }
.gaw-contact-form { padding:1.75rem; }
.gaw-contact-form form { display:grid; gap:1rem; }
.gaw-contact-form label { display:grid; gap:.35rem; font-size:.9375rem; color:var(--wp--preset--color--text); }
.gaw-contact-form input, .gaw-contact-form textarea { box-sizing:border-box; max-width:100%; width:100%; background:rgba(255,255,255,0.04); border:1px solid var(--wp--preset--color--border); border-radius:12px; padding:.75rem 1rem; color:#fff; font:inherit; }
/* Il textarea è ridimensionabile solo in verticale (evita sfori orizzontali della maschera). */
.gaw-contact-form textarea { resize:vertical; }
.gaw-contact-form input:focus, .gaw-contact-form textarea:focus { outline:none; border-color:var(--wp--preset--color--green-bright); }
.gaw-btn-submit { justify-self:start; background:var(--wp--preset--color--green); color:#fff; border:0; border-radius:999px; padding:.9rem 1.9rem; font:inherit; font-weight:600; cursor:pointer; transition:background .18s ease; }
.gaw-btn-submit:hover { background:var(--wp--preset--color--green-bright); color:var(--wp--preset--color--base); }
.gaw-cf-consent { font-size:.85rem; color:var(--wp--preset--color--muted); }
/* Consenso privacy/marketing: checkbox a SINISTRA in linea col testo (non stackata/centrata).
   Sovrascrive il generico label{display:grid} e input{width:100%} del form. */
.gaw-contact-form .gaw-cf-consent__label { display:flex; align-items:flex-start; gap:.6rem; text-align:left; line-height:1.5; cursor:pointer; }
.gaw-contact-form .gaw-cf-consent__label input[type="checkbox"] { flex:0 0 auto; width:1.15rem; height:1.15rem; min-width:1.15rem; margin:.15rem 0 0; padding:0; border-radius:4px; accent-color:var(--wp--preset--color--green-bright); cursor:pointer; }
.gaw-contact-form .gaw-cf-consent__label > span { flex:1 1 auto; }
.gaw-contact-form .gaw-cf-consent__label a { color:var(--wp--preset--color--green-bright); }
.gaw-contact-info h3 { font-family:"Sora",sans-serif; font-size:1.05rem; margin:0 0 .75rem; }
.gaw-cf-thanks { max-width:1100px; margin:0 auto 1.75rem; padding:.9rem 1.25rem; text-align:center; font-weight:600; color:#d7ffec; border:1px solid var(--wp--preset--color--green-bright); background:rgba(22,199,132,.12); border-radius:12px; }
@media (max-width:820px){ .gaw-contact-grid { grid-template-columns:1fr; } }
.gaw-contact-center { max-width:640px; margin-inline:auto; }
.gaw-contact-sedi { display:flex; flex-wrap:wrap; justify-content:center; gap:2.5rem 3.5rem; margin-top:1.75rem; text-align:center; }
.gaw-sede__city { font-family:"Sora",sans-serif; font-weight:700; color:#fff; margin:0 0 .15rem; }
.gaw-sede__label { color:var(--wp--preset--color--green-bright); font-size:.8rem; font-weight:600; margin:0 0 .3rem; }
.gaw-sede__addr { color:var(--wp--preset--color--muted); font-size:.9rem; line-height:1.55; margin:0; }

/* Chi siamo one-page: team + tecnologie/partner */
.gaw-team-grid { max-width:720px; margin-inline:auto; margin-top:var(--wp--preset--spacing--50); }
.gaw-techwrap { max-width:900px; margin:var(--wp--preset--spacing--50) auto 0; }
.gaw-techwrap__label { margin:1.5rem 0 .6rem; font-size:.8125rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
/* Ticker tecnologie: una sola riga che scorre, pausa su hover, fade ai bordi. */
.gaw-techmarquee { overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.gaw-techmarquee .gaw-tags__track { flex-wrap:nowrap; width:max-content; animation: gawTagScroll 48s linear infinite; }
.gaw-techmarquee:hover .gaw-tags__track { animation-play-state:paused; }
.gaw-techmarquee .gaw-tags__track .gaw-tag { flex:0 0 auto; }
.gaw-techmarquee .gaw-tag--clone { display:inline; }
.gaw-techrows { margin-top:16px; display:grid; gap:.55rem; }
.gaw-techmarquee--rev .gaw-tags__track { animation-direction:reverse; animation-duration:44s; }
