/* ============================================================
   INDUSTRIAL TECHNOLOGY - Stile Globale
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --c-bg: #0a1929;
  --c-bg-2: #0f2238;
  --c-surface: #ffffff;
  --c-surface-2: #f5f7fa;
  --c-text: #0a1929;
  --c-text-2: #475569;
  --c-accent: #ff6a1a;
  --c-accent-2: #ff8c42;
  --c-blue: #1565c0;
  --c-border: #e2e8f0;

  --ff-display: 'Bricolage Grotesque', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --maxw: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  --shadow-sm: 0 2px 8px rgba(10,25,41,0.08);
  --shadow: 0 8px 32px rgba(10,25,41,0.12);
  --shadow-lg: 0 24px 60px rgba(10,25,41,0.18);
}

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p { color: var(--c-text-2); }
strong { color: var(--c-text); font-weight: 600; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--c-accent);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-text-2);
  max-width: 60ch;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--c-accent); color: #fff; border-color: var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-2); border-color: var(--c-accent-2);
  transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255,106,26,0.32);
}
.btn-ghost {
  background: transparent; color: var(--c-text); border-color: var(--c-border);
}
.btn-ghost:hover { background: var(--c-text); color: #fff; border-color: var(--c-text); }
.btn-light {
  background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: #fff; color: var(--c-bg); }
.btn-arrow::after { content: "→"; transition: transform 0.25s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  color: var(--c-bg);
}
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--c-bg); color: #fff;
  border-radius: 8px;
  font-family: var(--ff-mono); font-weight: 600; font-size: 14px;
}
.brand__mark::before { content: "IT"; }
.brand__small {
  display: block; font-family: var(--ff-mono); font-size: 9px;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-text-2); margin-top: 1px;
}

.nav { display: none; gap: 2px; }
.nav a {
  position: relative; padding: 8px 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--c-text-2); border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover, .nav a.is-active { color: var(--c-bg); background: var(--c-surface-2); }
.nav .has-sub { position: relative; }
.nav .has-sub > a::after {
  content: "▾"; margin-left: 0.4rem; font-size: 9px; opacity: 0.6;
}
.nav .submenu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  min-width: 280px; padding: 8px;
  display: none; z-index: 10;
}
.nav .has-sub:hover .submenu { display: block; }
.nav .submenu a {
  display: block; padding: 9px 12px; font-size: 14px; color: var(--c-text);
}
.nav .submenu a:hover { background: var(--c-surface-2); color: var(--c-accent); }

.header-cta {
  display: none; align-items: center; gap: 0.85rem;
  font-family: var(--ff-mono); font-size: 13px; font-weight: 500;
}
.header-cta__phone { color: var(--c-bg); }
.header-cta__phone:hover { color: var(--c-accent); }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--c-bg); transition: transform 0.3s, opacity 0.2s;
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-bg); color: #fff;
  z-index: 99;
  padding: 100px var(--pad) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 1.4rem; font-family: var(--ff-display); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08); color: #fff;
}
.mobile-menu .submenu-mobile a {
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.7);
  padding: 8px 0; border: none;
}
.mobile-menu details summary {
  list-style: none; cursor: pointer;
  padding: 14px 0; font-size: 1.4rem;
  font-family: var(--ff-display); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu details[open] summary { color: var(--c-accent); }
.mobile-menu details summary::-webkit-details-marker { display: none; }
.mobile-menu details summary::after { content: "+"; float: right; font-weight: 300; }
.mobile-menu details[open] summary::after { content: "−"; }

/* HERO HOME */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--c-bg); color: #fff;
  overflow: hidden; padding: 6rem 0 4rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,106,26,0.18) 0%, transparent 55%),
    linear-gradient(115deg, var(--c-bg) 0%, rgba(10,25,41,0.78) 60%, rgba(10,25,41,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__title { color: #fff; margin: 0.5rem 0 1.5rem; }
.hero__title .accent { color: var(--c-accent); }
.hero__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 60ch; margin-bottom: 2.25rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .eyebrow { color: var(--c-accent-2); }
.hero .eyebrow::before { background: var(--c-accent-2); }

.hero__stats {
  position: relative; z-index: 2;
  margin-top: 4rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero__stat { background: rgba(10,25,41,0.55); padding: 1.5rem 1.5rem 1.4rem; }
.hero__stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; line-height: 1; color: #fff;
}
.hero__stat-num small { font-size: 0.55em; color: var(--c-accent-2); }
.hero__stat-label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 0.5rem;
}

/* PAGE HERO */
.page-hero {
  background: var(--c-bg); color: #fff;
  position: relative; overflow: hidden;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,106,26,0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(21,101,192,0.22) 0%, transparent 50%);
  z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.page-hero .lead {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.breadcrumb {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--c-accent-2); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.4; }

/* GRIDS */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* CARDS */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: transparent;
}
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--c-surface-2);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 22px;
}
.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 15.5px; flex-grow: 1; }
.card__link {
  color: var(--c-accent); font-weight: 600; font-size: 14.5px;
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card__link::after { content: "→"; transition: transform 0.2s; }
.card:hover .card__link::after { transform: translateX(3px); }

.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-surface-2);
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body {
  padding: 1.6rem;
  display: flex; flex-direction: column; flex-grow: 1;
}
.service-card__tag {
  font-family: var(--ff-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 0.6rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 14.5px; flex-grow: 1; }
.service-card__link {
  margin-top: 1.1rem; font-weight: 600; font-size: 14px;
  color: var(--c-text);
  border-top: 1px solid var(--c-border); padding-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card:hover .service-card__link { color: var(--c-accent); }

/* TWO COL */
.two-col {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-surface-2);
  box-shadow: var(--shadow);
}
.two-col__media img { width: 100%; height: 100%; object-fit: cover; }

/* DARK SECTION */
.section--dark { background: var(--c-bg); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--dark strong { color: #fff; }
.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.section--dark .card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}
.section--dark .card__icon { background: rgba(255,255,255,0.08); }
.section--dark .eyebrow { color: var(--c-accent-2); }

.section--surface { background: var(--c-surface-2); }

/* SECTORS */
.sectors-strip {
  background: var(--c-surface-2);
  padding: 2.5rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.sectors-list {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.sectors-list__label {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-2);
}
.pill {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,106,26,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.78); }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: #fff; padding: 2rem 1.5rem; text-align: center; }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1; color: var(--c-bg);
}
.stat__num small { color: var(--c-accent); font-size: 0.6em; }
.stat__label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-2); margin-top: 0.4rem;
}

/* FEATURE LIST */
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.feature-list li {
  position: relative; padding-left: 2rem;
  font-size: 16px; line-height: 1.55;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--c-accent); color: #fff;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}

/* BRANDS */
.brands-row {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  align-items: center; justify-content: center;
}
.brand-tag {
  font-family: var(--ff-mono); font-size: 14px;
  font-weight: 600; letter-spacing: 0.05em;
  color: var(--c-text-2); text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--c-border);
}
.brand-tag.is-strong { color: var(--c-bg); border-color: var(--c-bg); }

/* TESTIMONIALS */
.testimonial {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 2rem;
  height: 100%; display: flex; flex-direction: column;
}
.testimonial__quote {
  font-size: 16.5px; line-height: 1.6;
  color: var(--c-text); flex-grow: 1;
}
.testimonial__quote::before {
  content: "“"; font-family: var(--ff-display);
  font-size: 3rem; line-height: 0;
  color: var(--c-accent);
  display: block; margin-bottom: 1.5rem; height: 1rem;
}
.testimonial__author {
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid var(--c-border);
}
.testimonial__name { font-weight: 700; color: var(--c-bg); font-size: 15px; }
.testimonial__company {
  font-family: var(--ff-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-2); margin-top: 2px;
}

/* FORM */
.form {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form__row--2 { grid-template-columns: 1fr; }
.form__group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--c-text); margin-bottom: 0.4rem;
}
.form__group label .req { color: var(--c-accent); }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--ff-body);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(255,106,26,0.15);
}
.form textarea { resize: vertical; min-height: 120px; }
.form__check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 13.5px; color: var(--c-text-2);
  margin: 1rem 0;
}
.form__check input { margin-top: 4px; flex-shrink: 0; }
.form__submit {
  width: 100%; justify-content: center;
  padding: 16px 24px; font-size: 16px;
}

/* CONTACT INFO BOX */
.contact-box {
  background: var(--c-bg); color: #fff;
  padding: 2rem; border-radius: var(--radius);
  height: 100%;
}
.contact-box h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-box__item {
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.contact-box__item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-box__label {
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.5rem;
}
.contact-box__value { font-size: 18px; font-weight: 600; color: #fff; }
.contact-box__value a { color: #fff; }
.contact-box__value a:hover { color: var(--c-accent-2); }
.contact-box__sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* FOOTER */
.site-footer {
  background: var(--c-bg);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--ff-mono); font-size: 12px;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer a {
  color: rgba(255,255,255,0.72);
  display: block;
  padding: 4px 0;
  font-size: 14.5px;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--c-accent-2); }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 1rem;
}
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* HELPERS */
.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* FAQ */
.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: var(--c-accent); }
.faq summary {
  list-style: none; cursor: pointer;
  font-weight: 600; font-size: 17px;
  padding-right: 2rem; position: relative;
  color: var(--c-text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 24px; line-height: 1; font-weight: 300;
  color: var(--c-accent);
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin-top: 0.8rem; font-size: 15.5px; line-height: 1.6;
}

/* MEDIA */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .cta-band__inner { grid-template-columns: 2fr 1fr; gap: 3rem; }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 0.8s ease both; }
.hero__title, .hero__lead, .hero__cta, .hero .eyebrow,
.page-hero h1, .page-hero .lead, .page-hero .breadcrumb {
  animation: fadeUp 0.8s ease both;
}
.hero .eyebrow, .page-hero .breadcrumb { animation-delay: 0.05s; }
.hero__title, .page-hero h1 { animation-delay: 0.15s; }
.hero__lead, .page-hero .lead { animation-delay: 0.3s; }
.hero__cta { animation-delay: 0.45s; }
.hero__stats { animation: fadeUp 0.8s ease 0.6s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
