/* ============================================================
   ZINCO MERIDIONALE SRL — style.css v2.0
   Iconet – Consulenza Informatica | iconet.cloud
   ============================================================ */

/* --- FONT SELF-HOSTED (file in /fonts/) --- */
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* --- VARIABILI --- */
:root {
  --nav-bg:      #1a2226;
  --acc:         #4a8aa8;
  --acc-dark:    #3a7090;
  --hero-ov:     rgba(16, 20, 22, .82);
  --bg:          #ffffff;
  --bg-warm:     #f7f5f1;
  --bg-surf:     #f0f4f5;
  --txt:         #1a2226;
  --txt-mid:     #3a5060;
  --txt-muted:   #5a7080;
  --txt-light:   #8aaabb;
  --bord:        #dde3e6;
  --bord-dark:   #ccd4d8;
  --foot-bg:     #1a2226;
  --foot-txt:    #445a64;
  --font:        'Barlow', 'Arial Narrow', system-ui, sans-serif;
  --font-h:      'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
}

/* --- RESET BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--txt-mid);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--acc); text-decoration: none; }
a:hover { color: var(--acc-dark); }
ul { list-style: none; }

/* ============================================================
   NAVIGAZIONE
   ============================================================ */
.nav {
  background: var(--nav-bg);
  border-bottom: 3px solid var(--acc);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo img {
  height: 36px;
  filter: brightness(0) invert(1) opacity(.85);
}

/* Link di primo livello */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: block;
  padding: 6px 11px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .9px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: color .15s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active > .nav-link { color: #ffffff; }
.nav-arrow { font-size: 9px; opacity: .6; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--nav-bg);
  border-top: 3px solid var(--acc);
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-width: 210px;
  padding: 6px 0;
  z-index: 200;
}
.nav-submenu li a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: color .12s, background .12s;
}
.nav-submenu li a:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu { display: block; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #161c1f;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  opacity: .32;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-ov);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-text { max-width: 520px; }
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 8px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 58px;
  color: #e2eaee;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: .95;
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 14px;
  color: rgba(190,210,220,.65);
  line-height: 1.7;
}
.hero-badge {
  flex-shrink: 0;
  background: rgba(16,20,22,.9);
  border: 1px solid #2e4450;
  border-top: 3px solid var(--acc);
  border-radius: 3px;
  padding: 16px 24px;
  text-align: center;
}
.hero-badge-year {
  display: block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 42px;
  color: #90b0c0;
  letter-spacing: 1px;
  line-height: 1;
}
.hero-badge-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #3e5e6e;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ============================================================
   PAGE HEADER — pagine interne
   ============================================================ */
.page-header {
  background: var(--nav-bg);
  border-bottom: 3px solid var(--acc);
  padding: 28px 24px;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-header-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 6px;
  font-weight: 600;
}
.page-header-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 36px;
  color: #d8e4ea;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

/* PAGE HEADER con immagine di sfondo */
.page-header-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--nav-bg);
  border-bottom: 3px solid var(--acc);
}
.page-header-img img.phbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  opacity: .3;
}
.page-header-img .phovl {
  position: absolute;
  inset: 0;
  background: rgba(16,20,22,.78);
}
.page-header-img .page-header-inner { position: relative; z-index: 2; padding-bottom: 24px; }

/* ============================================================
   STRIP CERTIFICAZIONI (homepage)
   ============================================================ */
.strip {
  background: var(--bg-warm);
  border-top: 3px solid var(--acc);
  border-bottom: 1px solid var(--bord);
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  justify-content: center;
}
.strip-item:not(:last-child) {
  border-right: 1px solid var(--bord-dark);
  padding-right: 16px;
}
.strip-icon { color: var(--acc-dark); font-size: 18px; flex-shrink: 0; }
.strip-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--txt-muted);
}

/* ============================================================
   CONTAINER PRINCIPALE
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SECTION HEADER INTERNO
   ============================================================ */
.section { padding: 48px 0; }
.section-bg { background: var(--bg-surf); }
.section-bg-warm { background: var(--bg-warm); }

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  white-space: nowrap;
}
.section-line { flex: 1; height: 1px; background: var(--bord); }
.section-link {
  font-size: 10.5px;
  color: var(--acc);
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   GRIGLIA PRODOTTI — homepage (5 colonne)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.product-card {
  background: var(--bg-surf);
  border: 1px solid var(--bord);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.product-card:hover {
  border-color: var(--acc);
}
.product-card a { display: block; }
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter .3s;
}
.product-card:hover img { filter: grayscale(0%); }
.product-card-label {
  padding: 10px 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--txt-muted);
  border-top: 1px solid var(--bord);
  line-height: 1.3;
}
.product-card:hover .product-card-label { color: var(--acc); }

/* GRIGLIA PRODOTTI — pagina prodotti (3 colonne, con descrizione) */
.products-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-card-full {
  background: var(--bg);
  border: 1px solid var(--bord);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s;
}
.product-card-full:hover { border-color: var(--acc); }
.product-card-full a { display: block; }
.product-card-full img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter .3s;
}
.product-card-full:hover img { filter: grayscale(0%); }
.product-card-full-body { padding: 16px; }
.product-card-full-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--txt);
  margin-bottom: 6px;
}
.product-card-full-desc {
  font-size: 13px;
  color: var(--txt-muted);
  line-height: 1.6;
}
.product-card-full-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--acc);
  border-bottom: 1px solid var(--acc);
  padding-bottom: 1px;
}

/* ============================================================
   SEZIONE AZIENDA — homepage
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.about-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.about-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 600;
}
.about-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  line-height: 1.05;
}
.about-body {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.7;
}
.about-cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--acc);
  border-bottom: 1px solid var(--acc);
  padding-bottom: 2px;
}
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%);
}

/* ============================================================
   PAGINA PRODOTTO — dettaglio
   ============================================================ */
.product-detail { padding: 48px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-img img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--bord);
}
.product-detail-body { }
.product-detail-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-detail-title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 20px;
}
.product-detail-text {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.product-detail-specs {
  background: var(--bg-surf);
  border: 1px solid var(--bord);
  border-left: 3px solid var(--acc);
  border-radius: 0 3px 3px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.product-detail-specs h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--txt);
  margin-bottom: 10px;
}
.product-detail-specs ul { padding-left: 14px; list-style: disc; }
.product-detail-specs ul li {
  font-size: 13px;
  color: var(--txt-muted);
  padding: 3px 0;
}
.product-cta {
  display: inline-block;
  background: var(--acc);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 3px;
  transition: background .15s;
}
.product-cta:hover { background: var(--acc-dark); color: #fff; }

/* Made in Italy badge */
.mit-badge { margin-top: 24px; }
.mit-badge img { height: 48px; }

/* Altri prodotti */
.other-products { padding: 40px 0; background: var(--bg-surf); border-top: 1px solid var(--bord); }

/* ============================================================
   PAGINA AZIENDA
   ============================================================ */
.company-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
}
.company-text h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  margin-bottom: 16px;
  line-height: 1;
}
.company-text p {
  font-size: 14px;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.company-specs {
  background: var(--bg-surf);
  border: 1px solid var(--bord);
  border-top: 3px solid var(--acc);
  border-radius: 0 0 3px 3px;
  padding: 20px 22px;
  margin-top: 20px;
}
.company-specs h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--txt);
  margin-bottom: 12px;
}
.spec-row {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--bord);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--txt-light); font-weight: 600; min-width: 110px; flex-shrink: 0; }
.spec-val { color: var(--txt-mid); }
.company-img img {
  width: 100%;
  border-radius: 3px;
  filter: grayscale(20%);
  margin-bottom: 14px;
}

/* ============================================================
   PAGINA DOVE SIAMO
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.location-map iframe {
  width: 100%;
  height: 420px;
  border: 1px solid var(--bord);
  border-radius: 3px;
  display: block;
}
.location-info { }
.location-info h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  margin-bottom: 18px;
}
.info-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bord);
}
.info-block:last-child { border-bottom: none; }
.info-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt-light);
  margin-bottom: 5px;
}
.info-value {
  font-size: 14px;
  color: var(--txt-mid);
  line-height: 1.6;
}
.info-value a { color: var(--acc); }

/* ============================================================
   PAGINA FORM INFORMAZIONI
   ============================================================ */
.form-section { padding: 48px 0; }
.form-intro {
  max-width: 600px;
  margin-bottom: 32px;
}
.form-intro h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  margin-bottom: 8px;
}
.form-intro p { font-size: 14px; color: var(--txt-muted); }

.form-card {
  background: var(--bg);
  border: 1px solid var(--bord);
  border-top: 3px solid var(--acc);
  border-radius: 0 0 4px 4px;
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt-light);
}
.form-control {
  background: var(--bg-surf);
  border: 1px solid var(--bord-dark);
  border-radius: 3px;
  color: var(--txt-mid);
  font-size: 13.5px;
  padding: 9px 12px;
  font-family: var(--font);
  width: 100%;
  transition: border-color .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--acc);
  background: var(--bg);
}
.form-control::placeholder { color: var(--txt-light); }
select.form-control { cursor: pointer; }

.form-divider { grid-column: 1 / -1; height: 1px; background: var(--bord); margin: 6px 0; }

.form-check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: var(--acc);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-label { font-size: 13px; color: var(--txt-muted); }

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.form-privacy { font-size: 12px; color: var(--txt-light); line-height: 1.5; }
.form-privacy a { color: var(--acc); }
.form-submit {
  background: var(--acc);
  border: none;
  border-radius: 3px;
  padding: 11px 28px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.form-submit:hover { background: var(--acc-dark); }

/* ============================================================
   PAGINE PRIVACY / COOKIE
   ============================================================ */
.text-content { padding: 48px 0; max-width: 780px; }
.text-content h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt);
  margin: 32px 0 12px;
}
.text-content h2:first-child { margin-top: 0; }
.text-content p { font-size: 14px; color: var(--txt-muted); line-height: 1.75; margin-bottom: 14px; }
.text-content ul { padding-left: 18px; list-style: disc; margin-bottom: 14px; }
.text-content ul li { font-size: 14px; color: var(--txt-muted); padding: 3px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--foot-bg);
  border-top: 3px solid var(--acc);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-left { font-size: 12px; color: var(--foot-txt); line-height: 1.8; }
.footer-logo { display: flex; justify-content: center; }
.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1) opacity(.25);
}
.footer-right {
  font-size: 12px;
  color: var(--foot-txt);
  line-height: 1.8;
  text-align: right;
}
.footer-right a { color: var(--acc); }
.footer-powered { font-size: 10px; color: #2e4450; margin-top: 4px; }
.footer-powered a { color: #2e4450; }
.footer-powered a:hover { color: var(--acc); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { height: 320px; }
  .hero-title { font-size: 42px; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-badge { position: static; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid-full { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 240px; }
  .company-content { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo { display: none; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    gap: 0;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 10px 20px; border-radius: 0; }
  .nav-dropdown { position: static; }
  .nav-submenu {
    position: static;
    display: none;
    border-top: none;
    border-left: 3px solid var(--acc);
    margin: 0 16px 4px 32px;
    padding: 4px 0;
  }
  .nav-dropdown.open .nav-submenu { display: block; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .strip-item { border-right: none !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-full { grid-template-columns: 1fr; }
  .about-text { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .section-title { font-size: 22px; }
}
