/* ============================================================
   Noleggio Attrezzature Milano — Design System
   Palette: Navy #041522, Navy secondary #17222B, Yellow #F9BC07,
            White #FFFFFF, Grey light #F6F6F8, Anthracite #313E43
   ============================================================ */

:root {
  --navy: #041522;
  --navy-2: #17222B;
  --yellow: #F9BC07;
  --yellow-dark: #E0A700;
  --white: #FFFFFF;
  --blue-accent: #1C64C2;
  --grey-light: #F6F6F8;
  --grey-border: #E4E6EA;
  --anthracite: #313E43;
  --green-accent: #2E7D4F;

  --font-head: "Poppins", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 10px 30px rgba(4, 21, 34, 0.08);
  --shadow-header: 0 2px 16px rgba(4, 21, 34, 0.06);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
@media (max-width: 768px) {
  section { padding: 48px 0; }
}

.eyebrow {
  display: inline-block;
  color: var(--yellow-dark);
  background: transparent;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.on-navy .eyebrow { color: var(--yellow); }

.lead { font-size: 1.1rem; color: var(--anthracite); }
.on-navy, .on-navy p, .on-navy .lead { color: rgba(255,255,255,.85); }
.on-navy h1, .on-navy h2, .on-navy h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-primary:hover { background: var(--yellow-dark); box-shadow: 0 8px 20px rgba(249,188,7,.35); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; color: var(--navy);
}
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.on-navy .link-arrow, .card-navy .link-arrow { color: var(--yellow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-header);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 4px; padding-bottom: 4px; gap: 24px;
}
.brand {
  display: flex; align-items: center; flex: 0 0 auto;
  background: transparent; border: 0; box-shadow: none;
}
.brand-logo {
  height: 42px; width: auto; max-width: 100%; display: block; object-fit: contain;
  background: transparent; border: 0; border-radius: 0; box-shadow: none; filter: none;
}
.site-header .brand-logo {
  width: clamp(220px, 19vw, 240px);
  height: auto;
  max-height: 64px;
}

.main-nav { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center; }
.main-nav a {
  font-weight: 600; font-size: .95rem; color: var(--navy);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--yellow); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 10px; min-width: 240px; z-index: 50;
}
.main-nav .has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; border: none; font-size: .9rem; }
.dropdown a:hover { background: var(--grey-light); }
.dropdown .dd-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--anthracite); opacity: .55; padding: 8px 14px 2px; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--navy); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

@media (max-width: 980px) {
  .site-header .brand-logo { width: clamp(205px, 29vw, 230px); height: auto; max-height: 61px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    padding: 12px 24px 20px; box-shadow: var(--shadow-card); justify-content: flex-start;
  }
  .site-header.nav-open .dropdown { display: block; position: static; box-shadow: none; transform: none; padding-left: 10px; }
}
@media (max-width: 560px) {
  .site-header .container { padding-top: 8px; padding-bottom: 8px; gap: 14px; }
  .site-header .brand-logo { width: clamp(175px, 58vw, 215px); height: auto; max-height: 57px; }
  .header-actions .btn-sm { display: none; }
}
@media (max-width: 400px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/img/hero-noleggio-milano.webp'),
    radial-gradient(120% 130% at 78% 35%, #143349 0%, #071b29 65%);
  background-size: cover, cover;
  background-position: center right, center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--navy);
}
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.hero-bg .machine-icon { position: absolute; opacity: .9; }
.hero-bg .machine-icon svg { width: 100%; height: 100%; }
.hero-bg .m1 { width: 20%; right: 26%; bottom: 10%; }
.hero-bg .m2 { width: 11%; right: 6%; bottom: 16%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,21,34,.96) 0%, rgba(4,21,34,.93) 26%, rgba(4,21,34,.72) 44%, rgba(4,21,34,.34) 60%, rgba(4,21,34,.08) 76%, rgba(4,21,34,.05) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-features { display: flex; gap: 28px; margin: 28px 0 30px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; }
.hero-feature .ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(249,188,7,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-feature .ic svg { width: 18px; height: 18px; stroke: var(--yellow); }
.hero-feature strong { display: block; color: var(--white); }
.hero-feature span.sub { display: block; font-weight: 400; opacity: .7; font-size: .8rem; }
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-phone { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
.hero-phone .ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.hero-phone .ic svg { width: 17px; height: 17px; stroke: var(--yellow); }
.hero-phone a { font-weight: 800; color: var(--white); font-size: 1rem; }

@media (max-width: 980px) {
  .hero { min-height: 0; padding: 40px 0 44px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(4,21,34,.88) 0%, rgba(4,21,34,.93) 60%, rgba(4,21,34,.97) 100%); }
  .hero-content { max-width: 100%; }
}

/* ---------- Section split (category picker + form) ---------- */
.split-section { background: var(--white); }
.split-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .split-grid { grid-template-columns: 1fr; } }

.cat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
@media (max-width: 780px) { .cat-cards { grid-template-columns: 1fr; } }
.cat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  background: var(--white);
}
.cat-card .cat-head {
  padding: 10px 18px; font-family: var(--font-head); font-weight: 800;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
}
.cat-card.cat-terra .cat-head { background: var(--yellow); }
.cat-card.cat-solleva .cat-head { background: var(--navy); color: var(--white); }
.cat-card.cat-energia .cat-head { background: var(--green-accent); color: var(--white); }
.cat-card .cat-visual {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background-color: var(--grey-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cat-card.cat-terra .cat-visual svg { stroke: var(--navy); }
.cat-card.cat-solleva .cat-visual svg { stroke: var(--navy); }
.cat-card.cat-energia .cat-visual svg { stroke: var(--green-accent); }
.cat-card .cat-visual svg { width: 72px; height: 72px; }
.cat-card .cat-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.cat-card .cat-list { flex: 1; margin-bottom: 16px; }
.cat-card .cat-list li { padding: 7px 0; border-bottom: 1px dashed var(--grey-border); font-size: .92rem; font-weight: 500; }
.cat-card .cat-list li:last-child { border-bottom: none; }
.cat-card .cat-list a:hover { color: var(--yellow-dark); }

.perks-row { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.perk { display: flex; gap: 12px; align-items: flex-start; flex: 1; min-width: 210px; }
.perk .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.perk .ic svg { width: 19px; height: 19px; stroke: var(--navy); }
.perk h4 { font-size: .92rem; margin-bottom: 2px; }
.perk p { font-size: .84rem; color: var(--anthracite); opacity: .75; margin: 0; }

/* ---------- Quote form ---------- */
.quote-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  position: sticky; top: 100px;
}
.quote-panel h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.quote-panel h3 .accent { color: var(--yellow); }
.quote-panel .sub { color: rgba(255,255,255,.65); font-size: .86rem; margin-bottom: 20px; }
.field { margin-bottom: 12px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: var(--white); font-family: var(--font-body); font-size: .92rem;
}
.field select { color: rgba(255,255,255,.85); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--yellow); background: rgba(255,255,255,.1); }
.field-check { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: rgba(255,255,255,.7); margin: 14px 0 16px; }
.field-check input { margin-top: 3px; }
.field-check a { color: var(--yellow); text-decoration: underline; }
.form-note { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; font-size: .78rem; color: rgba(255,255,255,.55); }
.form-note svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.55); flex-shrink: 0; margin-top: 2px; }

.quote-panel.quote-compact { position: static; }

.quote-inline-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.quote-inline-wrap .qi-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .quote-inline-wrap .qi-grid { grid-template-columns: 1fr; } .quote-inline-wrap { padding: 28px; } }
.quote-inline-wrap .qi-grid .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .quote-inline-wrap .qi-grid .field-row { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 44px; position: relative; }
@media (max-width: 860px) { .steps-row { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 520px) { .steps-row { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 0 14px; position: relative; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800;
  margin: 0 auto 16px; position: relative; z-index: 2; font-size: .95rem;
}
.step .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step .ic svg { width: 26px; height: 26px; stroke: var(--navy); }
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .86rem; opacity: .75; margin: 0; }
.step::after {
  content: ""; position: absolute; top: 20px; left: calc(50% + 45px); right: calc(-50% + 45px);
  border-top: 2px dashed var(--grey-border);
}
.step:last-child::after { display: none; }
@media (max-width: 860px) { .step::after { display: none; } }

/* ---------- Supplier band ---------- */
.supplier-band {
  position: relative;
  background-image: url('/assets/img/background-fornitori.webp');
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  color: var(--white);
}
.supplier-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,21,34,.94) 0%, rgba(10,36,56,.92) 100%);
}
.supplier-band .container { position: relative; z-index: 1; }
.supplier-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .supplier-grid { grid-template-columns: 1fr; } }
.supplier-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 560px) { .supplier-stats { grid-template-columns: 1fr; } }
.supplier-stat { text-align: left; }
.supplier-stat .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(249,188,7,.14); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.supplier-stat .ic svg { width: 22px; height: 22px; stroke: var(--yellow); }
.supplier-stat h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.supplier-stat p { font-size: .82rem; opacity: .65; margin: 0; }
.highlight-y { color: var(--yellow); }

/* ---------- Generic content sections ---------- */
.bg-grey { background: var(--grey-light); }
.bg-navy { background: var(--navy); }
.section-head { max-width: 720px; margin: 0 auto 8px; text-align: center; }
.section-head.left { margin: 0 0 8px; text-align: left; }
.center { text-align: center; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .three-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .three-col { grid-template-columns: 1fr; } }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 860px) { .four-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .four-col { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-card);
}
.info-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.info-card .ic svg { width: 22px; height: 22px; stroke: var(--navy); }
.info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: .88rem; opacity: .8; margin: 0; }

.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .95rem; }
.check-list svg { width: 18px; height: 18px; stroke: var(--yellow-dark); flex-shrink: 0; margin-top: 3px; }

.breadcrumbs { font-size: .82rem; color: var(--anthracite); opacity: .65; padding: 18px 0 0; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs .sep { margin: 0 6px; }

.page-hero {
  background: var(--navy); color: var(--white); padding: 40px 0 54px;
}
.page-hero .eyebrow { color: var(--yellow); }
.page-hero p.lead { max-width: 680px; }

.product-hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .product-hero-grid { grid-template-columns: 1fr; } }
.product-icon-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); aspect-ratio: 1/.72; display: flex; align-items: center; justify-content: center;
}
.product-icon-box svg { width: 46%; stroke: var(--yellow); }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 7px 14px; border-radius: 100px; font-size: .8rem; font-weight: 600; }

.variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-top: 10px; }
.variant-card { background: var(--grey-light); border-radius: var(--radius-md); padding: 20px; }
.variant-card h4 { font-size: .95rem; margin-bottom: 6px; }
.variant-card p { font-size: .85rem; opacity: .8; margin: 0; }

.related-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 860px) { .related-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .related-row { grid-template-columns: 1fr; } }
.related-card {
  border: 1px solid var(--grey-border); border-radius: var(--radius-md); padding: 18px;
  background: var(--white); transition: box-shadow .15s ease, transform .15s ease;
}
.related-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.related-card .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.related-card .ic svg { width: 20px; height: 20px; stroke: var(--navy); }
.related-card h4 { font-size: .92rem; margin: 0; }

.cta-band {
  background: var(--yellow); border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.cta-band h2 { color: var(--navy); }
.cta-band p { color: var(--navy); opacity: .8; }

.faq-item { border-bottom: 1px solid var(--grey-border); padding: 20px 0; }
.faq-item h4 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: .92rem; opacity: .8; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.75); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { margin-bottom: 14px; }
.site-footer .brand-logo {
  width: clamp(270px, 26vw, 300px);
  height: auto;
  max-height: 79px;
  background: transparent;
}
@media (max-width: 860px) { .site-footer .brand-logo { width: clamp(250px, 38vw, 285px); height: auto; max-height: 75px; } }
@media (max-width: 560px) { .site-footer .brand-logo { width: min(265px, 100%); height: auto; max-height: 70px; } }
.site-footer p.foot-desc { font-size: .88rem; opacity: .8; max-width: 300px; }
.site-footer h4 { color: var(--white); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; font-size: .9rem; }
.site-footer ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; opacity: .7;
}

.ic-svg { width: 30px; height: 30px; stroke: var(--yellow); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
