/* =============================================================================
   ITALTOOLS — HOME v2
   Hero immagine → Trust bar → Esplora catalogo → In Offerta + stats →
   Value props → Preventivo CTA → Novità (blog)
   ============================================================================= */

:root {
	--itt-gold: #E8A800;
	--itt-gold-h: #d49700;
	--itt-dark: #1a1a1a;
	--itt-blue: #4EABE9;
}

/* La guardia anti-scroll orizzontale ora sta in native-chrome.css, che e' caricato su
   tutte le pagine: qui copriva solo la home. Lasciata come promemoria del perche'.
   (Da sola comunque non bastava: vedi la nota su .itt-hs-card piu' sotto.) */

/* Bersaglio del bottone "Explore the catalog" dell'hero. Lo scroll si ferma sotto
   l'header sticky — 60px, 56 su mobile — invece di infilare il titolo della sezione
   sotto la barra. */
#itt-catalog { scroll-margin-top: 76px; }
@media (prefers-reduced-motion: no-preference) {
	html { scroll-behavior: smooth; }
}

/* shared container */
.itt-hh-inner,
.itt-ht-inner,
.itt-hc-inner,
.itt-hm-inner,
.itt-hs-inner,
.itt-hv-inner,
.itt-hwhy-inner,
.itt-hcta-inner,
.itt-hblog-inner {
	max-width: 1280px;
	margin: 0 auto;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.itt-hh {
	position: relative;
	background: #0a0a0a;
	min-height: 510px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}
.itt-hh-bg {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 58%;
	overflow: hidden;
}
.itt-hh-bg-img,
.itt-hh-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	opacity: 0.82;
	filter: brightness(0.9) contrast(1.05);
}
.itt-hh-bg-grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 12%, rgba(10, 10, 10, 0.55) 45%, transparent 75%);
}
.itt-hh-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 90px 32px 80px;
	display: flex;
	align-items: center;
}
.itt-hh-text { max-width: 590px; }
.itt-hh-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--itt-blue);
	margin-bottom: 20px;
}
.itt-hh-title {
	font-size: 56px;
	font-weight: 800;
	color: #fff;
	line-height: 1.02;
	letter-spacing: -2px;
	margin: 0 0 4px;
}
.itt-hh-title2 {
	font-size: 56px;
	font-weight: 800;
	color: var(--itt-blue);
	line-height: 1.02;
	letter-spacing: -2px;
	margin: 0 0 26px;
}
.itt-hh-desc {
	font-size: 15px;
	color: #999;
	line-height: 1.8;
	max-width: 460px;
	margin-bottom: 38px;
}
.itt-hh-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}
.itt-hh-btn-primary,
.itt-hh-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	border-radius: 5px;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.itt-hh-btn-primary {
	background: var(--itt-gold);
	color: var(--itt-dark);
	font-weight: 700;
	padding: 14px 28px;
}
.itt-hh-btn-primary:hover { background: var(--itt-gold-h); }
.itt-hh-btn-ghost {
	background: transparent;
	color: #fff;
	font-weight: 600;
	padding: 13px 26px;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.itt-hh-btn-ghost:hover { border-color: var(--itt-gold); color: var(--itt-gold); }

.itt-hh-badge {
	position: absolute;
	right: 44px;
	bottom: 68px;
	background: #fff;
	border-radius: 9px;
	padding: 16px 20px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
	min-width: 154px;
}
.itt-hh-badge-lbl {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #aaa;
	margin-bottom: 10px;
}
.itt-hh-badge-stock {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--itt-dark);
}
.itt-hh-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex: none;
	box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
.itt-hh-badge-sep { height: 1px; background: #f0f0f0; margin-bottom: 10px; }
.itt-hh-badge-val {
	font-size: 20px;
	font-weight: 800;
	color: var(--itt-dark);
	letter-spacing: -0.5px;
	line-height: 1;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.itt-ht { background: #fff; border-bottom: 1px solid #e8e6e0; }
.itt-ht-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.itt-ht-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 28px;
	border-right: 1px solid #e8e6e0;
}
.itt-ht-item:last-child { border-right: none; }
.itt-ht-ico { display: inline-flex; flex: none; line-height: 0; color: var(--itt-dark); }
.itt-ht-ico svg { flex: none; }
.itt-ht-t { font-size: 14px; font-weight: 700; color: var(--itt-dark); margin-bottom: 2px; }
.itt-ht-s { font-size: 12px; color: #888; }

/* Icone blu (accent secondario) */
.itt-ht-item--blue .itt-ht-ico { color: var(--itt-blue); }

/* Spedizione gratuita: card evidenziata in oro */
.itt-ht-item--free { background: #fff8e6; }
.itt-ht-item--free .itt-ht-ico { color: var(--itt-gold); }
.itt-ht-item--free .itt-ht-t { color: #8a6200; font-weight: 800; }
.itt-ht-item--free .itt-ht-s { color: #a67c00; font-weight: 500; }

/* ── ESPLORA CATALOGO (categorie) ─────────────────────────────────────────── */
.itt-hc { background: #fff; padding: 72px 32px; }
.itt-hc-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	flex-wrap: wrap;
	gap: 16px;
}
.itt-hc-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--itt-gold);
	margin-bottom: 8px;
}
.itt-hc-title {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.8px;
	color: var(--itt-dark);
	margin-bottom: 8px;
}
.itt-hc-sub { font-size: 14px; color: #888; line-height: 1.6; }
.itt-hc-all,
.itt-hs-all,
.itt-hblog-all {
	font-size: 14px;
	font-weight: 600;
	color: var(--itt-gold);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	transition: opacity 0.18s;
}
.itt-hc-all:hover,
.itt-hblog-all:hover { opacity: 0.75; }
.itt-hc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.itt-hc-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e3dc;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.itt-hc-card:hover { border-color: var(--itt-gold); box-shadow: 0 4px 20px rgba(232, 168, 0, 0.12); }
.itt-hc-thumb {
	background: #f5f4f0;
	height: 138px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	overflow: hidden;
}
.itt-hc-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.itt-hc-body { padding: 14px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.itt-hc-name { font-size: 14px; font-weight: 700; color: var(--itt-dark); margin-bottom: 6px; }
.itt-hc-desc { font-size: 12px; color: #888; line-height: 1.55; margin-bottom: 12px; flex: 1; }
.itt-hc-more {
	font-size: 12px;
	font-weight: 600;
	color: var(--itt-gold);
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

/* ── IN OFFERTA (on sale + stats) ─────────────────────────────────────────── */
.itt-hs { background: #0d1b2f; padding: 64px 32px; }
.itt-hs-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 284px;
	gap: 52px;
	align-items: start;
}
.itt-hs-main { min-width: 0; }
.itt-hs-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}
.itt-hs-title { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 6px; }
.itt-hs-sub { font-size: 14px; color: #6b8299; line-height: 1.5; }
/* Sezione su fondo blu scuro: senza colore esplicito l'hover eredita il blu del
   tema e il link sparisce. Schiarisce l'oro invece di virare al blu. */
.itt-hs-all:hover,
.itt-hs-all:focus { color: #ffc93d; opacity: 1; }
.itt-hs-all:hover svg, .itt-hs-all:focus svg { stroke: #ffc93d; }
.itt-hs-carousel { display: flex; align-items: center; gap: 10px; min-width: 0; }
.itt-hs-arr {
	flex: none;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	line-height: 0;
	-webkit-appearance: none;
	appearance: none;
	transition: background 0.18s, border-color 0.18s;
}
.itt-hs-arr:hover { background: rgba(232, 168, 0, 0.25); border-color: var(--itt-gold); }
.itt-hs-arr svg { stroke: #fff; display: block; }
.itt-hs-arr:hover svg { stroke: var(--itt-gold); }
.itt-hs-strip {
	display: flex;
	gap: 12px;
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	/* Cintura: rende la striscia blocco contenitore per QUALSIASI discendente fuori
	   flusso, anche quelli aggiunti in futuro da un plugin. Non cambia nulla a video
	   (overflow-x:auto gia' ritaglia entrambi gli assi), ma impedisce il ripetersi
	   del guaio descritto sulla card qui sotto. */
	contain: paint;
}
.itt-hs-strip::-webkit-scrollbar { display: none; }
.itt-hs-card {
	flex: 0 0 calc((100% - 36px) / 4);
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 7px;
	overflow: hidden;
	text-decoration: none;
	/* NON togliere. La card contiene elementi in position:absolute (il badge sconto e
	   soprattutto gli .screen-reader-text di WooCommerce). Senza un antenato
	   posizionato, il loro blocco contenitore finiva FUORI dalla striscia scorrevole:
	   sfuggivano al ritaglio e allungavano l'area scrollabile del documento fino a
	   ~2500px. Su desktop non si notava, su mobile il browser rimpiccioliva l'intera
	   home per farci stare quella larghezza — la pagina schiacciata a sinistra con
	   mezzo schermo bianco a destra. Con position:relative il blocco contenitore
	   torna qui e l'overflow:hidden della card li ritaglia. */
	position: relative;
	transition: box-shadow 0.18s, transform 0.18s;
}
.itt-hs-card:hover { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25); transform: translateY(-2px); }
.itt-hs-card-img {
	position: relative;
	background: #f2f1ee;
	height: 126px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}
.itt-hs-card-img img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.itt-hs-badge {
	position: absolute;
	top: 7px;
	left: 7px;
	background: #c62828;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 2px;
	letter-spacing: 0.4px;
}
.itt-hs-card-body { padding: 10px 11px 13px; }
.itt-hs-card-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--itt-dark);
	line-height: 1.4;
	margin-bottom: 7px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.itt-hs-price-old { font-size: 11px; color: #bbb; text-decoration: line-through; }
.itt-hs-price-curr { font-size: 14px; font-weight: 800; color: var(--itt-dark); margin: 2px 0 4px; }
.itt-hs-price-curr .woocommerce-Price-amount,
.itt-hs-price-old .woocommerce-Price-amount { color: inherit; font: inherit; }
.itt-hs-save { font-size: 11px; color: #c62828; font-weight: 600; }
.itt-hs-empty { font-size: 14px; color: #6b8299; }

.itt-hs-stats { display: flex; flex-direction: column; gap: 20px; }
.itt-hs-stat { display: flex; align-items: center; gap: 14px; }
.itt-hs-stat-ico {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid rgba(232, 168, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.itt-hs-stat-val { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.itt-hs-stat-lbl { font-size: 12px; color: #6b8299; margin-top: 3px; }
.itt-hs-stats-cta {
	display: block;
	text-align: center;
	background: var(--itt-gold);
	color: var(--itt-dark);
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	padding: 13px 18px;
	border-radius: 5px;
	letter-spacing: 0.6px;
	margin-top: 10px;
	transition: background 0.18s;
}
.itt-hs-stats-cta:hover { background: var(--itt-gold-h); }

/* ── VALUE PROPS ──────────────────────────────────────────────────────────── */
.itt-hv { background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.itt-hv-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.itt-hv-col {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 22px 28px;
	border-right: 1px solid #eee;
}
.itt-hv-col:first-child { padding-left: 0; }
.itt-hv-col:last-child { padding-right: 0; border-right: none; }
.itt-hv-icon { color: #555; }
.itt-hv-icon svg { flex: none; display: block; }
.itt-hv-icon.is-gold { color: var(--itt-gold); }
.itt-hv-icon.is-blue { color: var(--itt-blue); }
.itt-hv-title { font-size: 13px; font-weight: 700; color: var(--itt-dark); margin-bottom: 2px; }
.itt-hv-text { font-size: 12px; color: #999; }

/* ── PREVENTIVO CTA ───────────────────────────────────────────────────────── */
.itt-hcta { background: #f7f6f2; padding: 36px 32px; }
.itt-hcta-inner {
	background: var(--itt-dark);
	border-radius: 10px;
	padding: 28px 40px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.itt-hcta-ico {
	width: 52px;
	height: 52px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.itt-hcta-text { flex: 1; min-width: 220px; }
.itt-hcta-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.itt-hcta-sub { font-size: 13px; color: #777; line-height: 1.55; }
.itt-hcta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }
.itt-hcta-btn-quote,
.itt-hcta-btn-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 5px;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.18s;
}
.itt-hcta-btn-quote { background: var(--itt-gold); color: var(--itt-dark); }
.itt-hcta-btn-quote:hover { background: var(--itt-gold-h); }
.itt-hcta-btn-wa { background: #25D366; color: #fff; }
.itt-hcta-btn-wa:hover { background: #1fb055; }

/* ── NOVITÀ (blog) ────────────────────────────────────────────────────────── */
.itt-hblog { background: #fff; padding: 68px 32px; border-top: 1px solid #eae7e0; }
.itt-hblog-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
	flex-wrap: wrap;
	gap: 16px;
}
.itt-hblog-title { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: var(--itt-dark); margin-bottom: 8px; }
.itt-hblog-sub { font-size: 14px; color: #888; line-height: 1.6; }
.itt-hblog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.itt-hblog-card {
	background: #fff;
	border: 1px solid #e8e5de;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.18s, transform 0.18s;
}
.itt-hblog-card:hover { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1); transform: translateY(-2px); }
.itt-hblog-thumb {
	display: block;
	position: relative;
	height: 196px;
	overflow: hidden;
	background: var(--itt-dark);
}
.itt-hblog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.itt-hblog-thumb-ph { position: absolute; inset: 0; background: linear-gradient(135deg, #111 0%, #2a2a2a 100%); }
.itt-hblog-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--itt-blue);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 3px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.itt-hblog-body { padding: 20px; }
.itt-hblog-date { font-size: 11px; color: #aaa; margin-bottom: 10px; }
/* Il titolo non è più un link: le news sono contenuto statico, non articoli. */
.itt-hblog-card-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 9px; color: var(--itt-dark); }
.itt-hblog-excerpt { font-size: 13px; color: #888; line-height: 1.65; margin-bottom: 16px; }
.itt-hblog-more { font-size: 13px; color: #888; line-height: 1.65; margin-bottom: 16px; }
.itt-hblog-more p { margin: 0 0 10px; }
.itt-hblog-more p:last-child { margin-bottom: 0; }
.itt-hblog-card.is-open .itt-hblog-excerpt { display: none; }
/* Vince sull'attributo hidden, che il JS toglie comunque all'apertura. */
.itt-hblog-card.is-open .itt-hblog-more { display: block; }
.itt-hblog-read {
	font-size: 13px;
	font-weight: 600;
	color: var(--itt-blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
/* Il reset va ripetuto su hover/focus/active: GeneratePress stila i <button> con
   fondo pieno e testo bianco su hover, e "Read more" spariva — bianco su bianco,
   compreso lo stato dopo il clic. */
button.itt-hblog-read,
button.itt-hblog-read:hover,
button.itt-hblog-read:focus,
button.itt-hblog-read:active {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
	color: var(--itt-blue);
}
/* Solo da tastiera: il contorno serve a chi naviga in tab, non a chi clicca. */
button.itt-hblog-read:focus-visible {
	outline: 2px solid var(--itt-blue);
	outline-offset: 3px;
	border-radius: 2px;
}
.itt-hblog-read svg { transition: transform 0.2s; }
.itt-hblog-read-less { display: none; }
.itt-hblog-card.is-open .itt-hblog-read-more { display: none; }
.itt-hblog-card.is-open .itt-hblog-read-less { display: inline; }
.itt-hblog-card.is-open .itt-hblog-read svg { transform: rotate(180deg); }
.itt-hblog-read:hover { opacity: 0.75; }

/* ── MATERIALI (applicazioni) ─────────────────────────────────────────────── */
.itt-hm { background: #fff; padding: 64px 32px; border-bottom: 1px solid #f0eee8; }
.itt-hm-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.itt-hm-eyebrow {
	font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	color: var(--itt-gold); margin-bottom: 8px;
}
.itt-hm-title { font-size: 30px; font-weight: 800; letter-spacing: -0.7px; color: var(--itt-dark); margin-bottom: 10px; }
.itt-hm-sub { font-size: 14px; color: #999; line-height: 1.6; }
/* 6 materiali: una riga sola su desktop (i breakpoint 3/2 colonne dividono pari). */
.itt-hm-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.itt-hm-card {
	display: flex; flex-direction: column;
	background: #fff; border: 1px solid #eae7e0; border-radius: 12px; overflow: hidden;
}
/* Le card materiale sono puramente informative (nessun link): niente stato hover. */
.itt-hm-thumb { display: block; aspect-ratio: 4 / 3; background: #f2f1ee; overflow: hidden; }
.itt-hm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.itt-hm-body { display: block; padding: 14px 14px 16px; }
.itt-hm-name { display: block; font-size: 14px; font-weight: 700; color: var(--itt-dark); line-height: 1.3; }
.itt-hm-mtsub { display: block; font-size: 12px; color: #999; margin-top: 3px; }

/* ── PERCHÉ ITALTOOLS (B2B partner) ───────────────────────────────────────── */
.itt-hwhy { background: #f7f6f2; padding: 72px 32px; }
.itt-hwhy-top {
	display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
	align-items: start; margin-bottom: 48px;
}
.itt-hwhy-eyebrow {
	font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	color: var(--itt-blue); margin-bottom: 8px;
}
.itt-hwhy-title { font-size: 30px; font-weight: 800; letter-spacing: -0.6px; color: var(--itt-dark); margin-bottom: 14px; }
.itt-hwhy-text { font-size: 15px; color: #666; line-height: 1.75; }
.itt-hwhy-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.itt-hwhy-badge {
	text-align: center; background: #fff; border: 1px solid #e5e3dc; border-radius: 10px; padding: 22px 10px;
}
.itt-hwhy-badge-val { font-size: 24px; font-weight: 800; color: var(--itt-dark); letter-spacing: -0.5px; }
.itt-hwhy-badge-lbl { font-size: 11px; color: #888; margin-top: 6px; line-height: 1.4; }
.itt-hwhy-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.itt-hwhy-card {
	background: #fff; border: 1px solid #e5e3dc; border-radius: 10px; padding: 22px;
	transition: border-color 0.2s;
}
.itt-hwhy-card:hover { border-color: var(--itt-gold); }
.itt-hwhy-card-ico { display: inline-flex; line-height: 0; color: var(--itt-blue); margin-bottom: 12px; }
.itt-hwhy-card-ico.is-gold { color: var(--itt-gold); }
.itt-hwhy-card-title { font-size: 14px; font-weight: 700; color: var(--itt-dark); margin-bottom: 5px; }
.itt-hwhy-card-text { font-size: 12px; color: #888; line-height: 1.55; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
	.itt-hc-grid { grid-template-columns: repeat(3, 1fr); }
	.itt-hm-grid { grid-template-columns: repeat(3, 1fr); }
	.itt-hwhy-top { grid-template-columns: 1fr; gap: 32px; }
	.itt-hwhy-cards { grid-template-columns: repeat(2, 1fr); }
	.itt-hs-inner { grid-template-columns: 1fr; }
	.itt-hs-stats {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px 28px;
	}
	.itt-hs-stat { flex: 1 1 40%; }
	.itt-hs-stats-cta { flex-basis: 100%; }
	.itt-hs-card { flex-basis: calc((100% - 24px) / 3); }
}

@media (max-width: 880px) {
	.itt-hh-bg { width: 70%; }
	.itt-hh-title,
	.itt-hh-title2 { font-size: 42px; letter-spacing: -1.4px; }
	.itt-ht-inner { grid-template-columns: repeat(2, 1fr); }
	.itt-ht-item:nth-child(2) { border-right: none; }
	.itt-ht-item:nth-child(1),
	.itt-ht-item:nth-child(2) { border-bottom: 1px solid #e8e6e0; }
	.itt-hv-inner { grid-template-columns: repeat(2, 1fr); }
	.itt-hv-col { padding: 20px 22px !important; border-bottom: 1px solid #eee; }
	.itt-hv-col:nth-child(2n) { border-right: none; }
	.itt-hm-grid { grid-template-columns: repeat(3, 1fr); }
	.itt-hwhy-badges { grid-template-columns: repeat(2, 1fr); }
	.itt-hblog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
	.itt-hs-card { flex-basis: calc((100% - 12px) / 2); }
}

@media (max-width: 600px) {
	.itt-hh { min-height: 0; }
	.itt-hh-bg { width: 100%; opacity: 0.4; }
	.itt-hh-inner { padding: 64px 20px 56px; }
	.itt-hh-title,
	.itt-hh-title2 { font-size: 34px; }
	.itt-hh-badge { display: none; }
	.itt-hc,
	.itt-hblog { padding: 48px 20px; }
	.itt-hs { padding: 48px 20px; }
	.itt-hm { padding: 48px 20px; }
	.itt-hwhy { padding: 48px 20px; }
	.itt-hcta { padding: 28px 20px; }
	.itt-hc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.itt-hm-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.itt-hwhy-cards { grid-template-columns: 1fr; }
	.itt-hwhy-title,
	.itt-hm-title { font-size: 24px; }
	.itt-hc-title,
	.itt-hs-title,
	.itt-hblog-title { font-size: 24px; }
	.itt-hv-inner { grid-template-columns: 1fr; }
	.itt-hv-col { border-right: none; padding: 18px 0 !important; }
	.itt-hv-col:last-child { border-bottom: none; }
	.itt-hs-card { flex-basis: 78%; }
	.itt-hs-stats { flex-direction: column; }
	.itt-hcta-inner { padding: 24px; }
	.itt-hcta-btns { flex: 1 1 100%; }
	.itt-hcta-btn-quote,
	.itt-hcta-btn-wa { flex: 1; justify-content: center; }
}
