:root {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #0f1c2d;
  background: #f6f7fb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: clamp(1rem, 5vw, 2.5rem) clamp(0.75rem, 4vw, 2rem);
  min-height: 100vh;
  background: #f6f7fb;
  color: #0f1c2d;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.manual-shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw + 0.5rem, 2rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw + 1rem, 4rem);
  background: #ffffff;
  border-radius: 2.2rem;
  box-shadow: 0 26px 70px rgba(15, 28, 45, 0.14);
}

.manual-content {
  display: block;
}

.manual-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.4rem, 3vw + 0.6rem, 2.6rem) clamp(1.4rem, 3vw + 0.8rem, 2.6rem);
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.92), rgba(247, 251, 255, 0.95));
  border: 1px solid rgba(238, 114, 3, 0.16);
  border-radius: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 20px 48px rgba(15, 28, 45, 0.16);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.manual-hero__logo {
  flex: 0 0 clamp(110px, 18vw, 180px);
  max-width: clamp(110px, 18vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

.manual-hero__logo img {
  width: 100%;
  max-width: clamp(110px, 18vw, 180px);
  height: auto;
  display: block;
}

.manual-hero__copy {
  flex: 1 1 300px;
}

.manual-hero__title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: #0f1c2d;
  margin: 0 0 0.65rem;
  text-align: left;
  letter-spacing: -0.01em;
}

.manual-hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ee7203;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.manual-hero__tagline {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(15, 28, 45, 0.82);
  line-height: 1.5;
}

.manual-content h2 {
  position: relative;
  padding-right: 4.5rem;
  scroll-margin-top: 5rem;
}

.section-top-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ee7203;
  text-decoration: none;
  background: rgba(238, 114, 3, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.section-top-link:hover,
.section-top-link:focus-visible {
  background: #ee7203;
  color: #fff;
  box-shadow: 0 8px 18px rgba(238, 114, 3, 0.25);
  outline: none;
}

.manual-menu {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
}

.manual-menu__toggle {
  border: 1px solid rgba(15, 28, 45, 0.18);
  background: #fff8f1;
  color: #d05a00;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.manual-menu__toggle:hover,
.manual-menu__toggle:focus-visible {
  background: #ee7203;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(238, 114, 3, 0.25);
  outline: none;
}

.manual-menu__list {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 28, 45, 0.1);
  background: #f8fbff;
  box-shadow: 0 18px 35px rgba(15, 28, 45, 0.08);
  display: grid;
  gap: 0.5rem;
  min-width: min(260px, 90vw);
}

.manual-menu__list a {
  color: #0f1c2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.97rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.manual-menu__list a:hover,
.manual-menu__list a:focus-visible {
  color: #ee7203;
  text-decoration: underline;
  outline: none;
}

.manual-menu__list[hidden] {
  display: none;
}

@media (max-width: 992px) {
  .manual-shell {
    padding: 2.25rem 1.75rem 4.5rem;
    border-radius: 1.8rem;
    box-shadow: 0 20px 55px rgba(15, 28, 45, 0.12);
  }
}

@media (max-width: 768px) {
  .manual-shell {
    padding: 1.8rem 1.25rem 3.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 28, 45, 0.12);
  }

  .manual-hero {
    padding: 1.25rem 1.5rem;
    justify-content: center;
    text-align: center;
  }

  .manual-hero__logo {
    flex: 0 0 auto;
  }

  .manual-hero__copy {
    flex: 1 1 100%;
  }

  .manual-hero__title {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .manual-shell {
    padding: 1.1rem 0.85rem 2rem;
    border-radius: 1rem;
  }

  .manual-hero {
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.2rem 1.4rem;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
    text-align: center;
  }

  .manual-hero__copy {
    width: min(100%, 320px);
  }

  .manual-hero__subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .manual-hero__title {
    font-size: 1.92rem;
  }

  .manual-hero__logo {
    margin: 0;
    max-width: 120px;
  }

  .manual-hero__logo img {
    max-width: 120px;
  }

  .manual-hero__tagline {
    font-size: 0.92rem;
  }

  .hero-actions {
    width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-badges {
    order: 1;
    justify-content: center;
    gap: 0.5rem;
  }

  .primary-button {
    justify-content: center;
    width: auto;
    align-self: center;
    min-width: 220px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  color: #ee7203;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}

h1.manual-hero__title {
  text-align: left;
  margin-bottom: 0.65rem;
  color: #0f1c2d;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
  color: #0f1c2d;
}

h4 {
  font-size: 1.2rem;
  color: #1f2f43;
}

h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2f43;
  margin-top: 1.1rem;
  margin-bottom: 0.35rem;
}

h5 + p.bullet {
  margin-top: 0.1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }
}

p {
  margin-bottom: 0.3rem;
  color: #222e40;
  hyphens: auto;
  text-align: justify;
}

p.bullet {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
  text-align: left;
}

p.bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ee7203;
}

@media (max-width: 600px) {
  p {
    font-size: 0.98rem;
  }

  p.bullet {
    padding-left: 1rem;
  }
}

figure.image {
  margin: 2rem 0;
  text-align: center;
}

figure.image img {
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
  border: 1px solid rgba(15, 28, 45, 0.12);
  box-shadow: 0 18px 45px rgba(15, 28, 45, 0.15);
}

figure.image.image-no-frame img {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

figure.image figcaption {
  margin-top: 0.75rem;
  font-weight: 600;
  color: #1f2f43;
}

@media (max-width: 768px) {
  figure.image {
    margin: 1.5rem 0;
  }

  figure.image img {
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(15, 28, 45, 0.15);
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 12px 35px rgba(15, 28, 45, 0.12);
}

table th {
  background: rgba(15, 28, 45, 0.06);
  color: #0f1c2d;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid rgba(15, 28, 45, 0.08);
}

table tbody tr:nth-child(even) {
  background: #fff;
}

table td {
  border: 1px solid rgba(15, 28, 45, 0.08);
  padding: 0.9rem 1rem;
  vertical-align: top;
  text-align: left;
  hyphens: auto;
}

table.accessories-table {
  margin: 1.25rem auto 1.75rem;
  width: min(100%, 760px);
  font-size: 0.82rem;
  line-height: 1.35;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(15, 28, 45, 0.08);
}

table.accessories-table td:first-child {
  font-weight: 600;
}

table.accessories-table td,
table.accessories-table th {
  white-space: nowrap;
  padding: 0.45rem 0.6rem;
}

table.accessories-table .group-row td {
  background: linear-gradient(90deg, rgba(238, 114, 3, 0.16), rgba(238, 114, 3, 0.04));
  color: #ee7203;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.6rem;
}

table.key-value-table th {
  width: 220px;
  background: rgba(238, 114, 3, 0.08);
  color: #ee7203;
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
  padding: 0.65rem 0.85rem;
}

table.key-value-table td {
  color: #222e40;
  padding: 0.65rem 1rem;
  word-break: normal;
}

table.key-value-table {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 28, 45, 0.08);
  width: min(100%, 760px);
  margin: 1.5rem auto 2rem;
  table-layout: fixed;
}

table.key-value-table tbody tr {
  background: #fff;
}

table.key-value-table tbody tr:nth-child(even) {
  background: #fff;
}

@media (max-width: 600px) {
  table.key-value-table {
    table-layout: auto;
    margin: 1.5rem 0 2rem;
  }

  table.key-value-table th {
    width: auto;
    display: table-cell;
    padding: 0.6rem 0.8rem;
  }

  table.key-value-table td {
    padding: 0.6rem 0.85rem;
  }
}

table.basic-table td:first-child {
  font-weight: 600;
  color: #1f2f43;
}

table.comparison-table th[scope="row"] {
  width: clamp(160px, 22%, 220px);
  font-weight: 700;
  color: #1f2f43;
  background: rgba(15, 28, 45, 0.04);
}

table.comparison-table td img {
  width: 100%;
  max-width: 160px;
  height: clamp(160px, 22vw, 220px);
  object-fit: contain;
  border-radius: 1rem;
  border: 1px solid rgba(15, 28, 45, 0.12);
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.12);
  background: #fff;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 2.5rem 0 2rem;
}

.kit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 18px 36px rgba(15, 28, 45, 0.12);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.kit-card header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kit-card h4 {
  margin: 0;
  font-size: 1.25rem;
  color: #0f1c2d;
}

.kit-card .kit-code {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(15, 28, 45, 0.7);
}

.kit-card .kit-description {
  margin: 0.2rem 0 0;
  font-size: 0.98rem;
  color: #1f2f43;
  line-height: 1.45;
}

.kit-card figure {
  margin: 0;
  text-align: center;
}

.kit-card figure img {
  width: 100%;
  height: clamp(170px, 20vw, 220px);
  object-fit: contain;
  border-radius: 1rem;
  border: 1px solid rgba(15, 28, 45, 0.12);
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.12);
  background: #fff;
}

.kit-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #1f2f43;
  font-size: 0.97rem;
  line-height: 1.45;
}

.kit-list li {
  margin-bottom: 0.35rem;
}

@media (max-width: 600px) {
  .kit-card {
    padding: 1.25rem;
  }

  .kit-card figure img {
    height: clamp(180px, 55vw, 240px);
  }
}

@media (max-width: 768px) {
  table {
    font-size: 0.95rem;
  }

  table td {
    padding: 0.75rem 0.85rem;
  }

  table.comparison-table td img {
    max-width: 120px;
    height: clamp(160px, 48vw, 240px);
  }

  .interface-panels {
    gap: 1.5rem;
  }

  .interface-panel {
    flex: 1 1 100%;
    max-width: 320px;
  }

  .interface-panel img {
    height: clamp(220px, 52vw, 260px);
  }

  .interface-pressacavi {
    gap: 1.5rem;
  }

  .interface-accessory {
    flex: 1 1 160px;
  }
}

@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%; /* la tabella occupa il viewport ma scrolla al suo interno */
  }

  table tr {
    display: table-row; /* mantieni semantica tabellare per avere colonne consistenti */
  }

  /* Evita il wrapping solo sulle tabelle generiche, non su quelle con layout specifico */
  table:not(.accessories-table):not(.key-value-table):not(.hazard-table) th,
  table:not(.accessories-table):not(.key-value-table):not(.hazard-table) td {
    white-space: nowrap;
  }

  table.accessories-table {
    display: table;
  }

  table.accessories-table tr {
    display: table-row;
  }

  table.accessories-table td,
  table.accessories-table th {
    display: table-cell;
    white-space: normal; /* questa tabella mantiene il wrapping come prima */
    padding: 0.4rem 0.55rem;
  }

  /* La tabella dei simboli di attenzione deve mantenere layout classico e andare a capo */
  table.hazard-table {
    display: table;
    overflow-x: visible;
    width: 100%;
  }
  table.hazard-table td,
  table.hazard-table th {
    display: table-cell;
    white-space: normal;
  }

  .interface-panel {
    padding: 1.1rem;
  }

  .interface-panel img {
    height: clamp(200px, 64vw, 240px);
  }

  .panel-marker {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .interface-accessory {
    padding: 1rem;
  }
}

@page {
  size: A4;
  margin: 18mm 16mm;
}

@media print {
  :root,
  body {
    background: #fff !important;
    color: #0f1c2d !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    padding: 0;
    margin: 0;
    font-size: 11pt;
    line-height: 1.55;
  }

  .print-toolbar,
  .btn,
  .print-button {
    display: none !important;
  }

  .manual-shell {
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    width: auto;
    max-width: none;
  }

  .manual-content {
    padding: 0;
  }

  .manual-hero {
    box-shadow: none;
    border: 1px solid rgba(238, 114, 3, 0.25);
    margin-bottom: 18mm;
  }

  h1.manual-hero__title {
    font-size: 30pt;
  }

  .manual-hero__subtitle {
    font-size: 11pt;
    letter-spacing: 0.2em;
  }

  .manual-hero__tagline {
    font-size: 12pt;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    break-after: avoid;
    page-break-after: avoid;
    color: #0f1c2d;
  }

  h2 {
    margin-top: 18mm;
  }

  table,
  table thead {
    display: table-header-group;
  }

  table {
    width: 100% !important;
    margin: 6mm 0 10mm;
    box-shadow: none !important;
    font-size: 9.5pt;
    line-height: 1.3;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  table td,
  table th {
    padding: 5pt 7pt;
    break-inside: auto !important;
  }

  table tr {
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  table.accessories-table {
    width: 100%;
    margin: 6mm 0 10mm;
    box-shadow: none;
  }

  table.accessories-table td,
  table.accessories-table th {
    white-space: normal;
    word-break: break-word;
    padding: 5pt 7pt;
  }

  table.accessories-table td:first-child,
  table.accessories-table th:first-child,
  table.accessories-table td:nth-child(2),
  table.accessories-table th:nth-child(2) {
    white-space: nowrap;
  }

  table.accessories-table .group-row td {
    padding: 5pt 7pt;
  }

  table.basic-table,
  table.comparison-table,
  table.key-value-table,
  table.accessories-table {
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
  figure,
  .kit-card,
  .interface-panel,
  .accessory-card,
  .interface-accessory {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .kit-grid {
    display: block;
    margin: 0;
  }

  .kit-grid {
    display: block !important;
  }

  .kit-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 55mm;
    column-gap: 9mm;
    row-gap: 4pt;
    page-break-inside: avoid;
    margin: 0 0 12mm !important;
    padding: 0 0 8mm !important;
    border-bottom: 0.3pt solid rgba(15, 28, 45, 0.18);
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    max-width: none !important;
    box-shadow: none !important;
    background: transparent !important;
    align-items: start;
  }

  .kit-card header {
    gap: 2pt !important;
    margin: 0 !important;
    grid-column: 1 / 2;
  }

  .kit-card h4,
  .kit-card .kit-code,
  .kit-card .kit-description {
    font-size: 10pt !important;
  }

  .kit-card figure {
    margin: 0 !important;
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    text-align: center !important;
  }

  .kit-card figure img {
    max-width: 45mm !important;
    height: auto !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .kit-card .kit-description,
  .kit-card .kit-list {
    grid-column: 1 / 2;
  }

  .kit-card .kit-description {
    margin: 2pt 0 4pt !important;
  }

  .kit-card .kit-list {
    padding-left: 12pt !important;
    margin: 4pt 0 0 !important;
    font-size: 9.4pt !important;
  }

  .kit-card .kit-list li {
    margin-bottom: 2.5pt !important;
  }

  .kit-card:last-of-type {
    border-bottom: none;
    padding-bottom: 0 !important;
  }

  .accessories-gallery {
    display: none !important;
  }

  .interface-panels,
  .interface-pressacavi {
    display: block;
  }

  .accessory-card,
  .interface-panel,
  .interface-accessory {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 8mm;
    padding: 10pt;
  }

  .interface-panels,
  .interface-pressacavi {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 6mm 8mm;
    margin: 6mm 0 8mm;
  }

  .interface-panel,
  .interface-accessory {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .interface-panel img,
  .interface-accessory img {
    width: 32mm !important;
    height: auto !important;
    margin: 0 auto 2mm;
  }

  .interface-panel figcaption,
  .interface-accessory figcaption {
    font-size: 8.5pt !important;
    font-weight: 600;
    color: #0f1c2d !important;
    margin: 0;
  }

  .manual-hero__logo img {
    max-width: 110mm;
  }

  .kit-card,
  .accessory-card,
  .interface-panel,
  .interface-accessory {
    box-shadow: none;
    border: 1px solid rgba(15, 28, 45, 0.08);
  }

  .manual-shell a {
    color: inherit;
    text-decoration: underline;
  }

.interface-box {
    display: grid;
    grid-template-columns: minmax(0, clamp(230px, 24vw, 300px)) minmax(0, 1fr);
    gap: clamp(1.4rem, 3vw, 3.2rem);
    align-items: center;
    max-width: 820px;
    margin: clamp(1.8rem, 2.8vw, 2.8rem) auto;
    padding: clamp(1.4rem, 2.7vw, 2.2rem);
    background: #f7f8fb;
    border-radius: 22px;
    box-shadow: 0 20px 38px rgba(15, 28, 45, 0.12);
  }

  .interface-box__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .interface-box__image img {
    width: clamp(240px, 25vw, 320px);
    max-width: 100%;
    height: auto;
  }

  .interface-box__notes {
    font-size: 1rem;
  }

  .interface-box__notes ul,
  .interface-box__notes ol {
    margin: 0;
    padding-left: 1.3rem;
    line-height: 1.65;
  }

  .interface-box__notes li + li {
    margin-top: 0.6rem;
  }

  .interface-box__notes ol.interface-steps {
    counter-reset: simstep;
    list-style: none;
    padding-left: 0;
  }

  .interface-box__notes ol.interface-steps li {
    counter-increment: simstep;
    margin-top: 0.7rem;
    padding-left: 2.2rem;
    position: relative;
  }

  .interface-box__notes ol.interface-steps li::before {
    content: counter(simstep);
    position: absolute;
    left: 0;
    top: 0.02rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #324d83;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    display: grid;
    place-items: center;
  }

}

.hazard-icon {
  width: 72px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hazard-inline {
  width: 1.6rem;
  height: auto;
  vertical-align: middle;
  margin-right: 0.45rem;
  display: inline-block;
}

.hazard-note {
  display: block;
}

.hazard-table td {
  vertical-align: middle;
}

.hazard-icon-cell {
  width: 110px;
  text-align: center;
}

.cmd {
  font-family: "Consolas", "Courier New", monospace;
  white-space: nowrap;
  font-size: 0.95rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0 2.5rem;
}

.store-badges a {
  display: inline-block;
}

.store-badges img {
  height: 48px;
  width: auto;
  max-width: 100%;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.18);
}

.store-badges img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(15, 28, 45, 0.26);
}

.accessories-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin: 1.5rem 0 2.5rem;
}

.accessory-card {
  margin: 0;
  text-align: center;
}

.accessory-card img {
  width: 100%;
  height: clamp(150px, 18vw, 190px);
  object-fit: contain;
  border-radius: 1rem;
  border: 1px solid rgba(15, 28, 45, 0.12);
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.15);
  background: #fff;
}

.accessory-card--padded img {
  padding: clamp(12px, 1.5vw, 18px);
  box-sizing: border-box;
}

.accessory-card figcaption {
  margin-top: 0.65rem;
  color: #1f2f43;
}

.accessory-card .accessory-code {
  color: rgba(31, 47, 67, 0.75);
  font-size: 0.9rem;
}

.interface-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 2.5rem 0 2rem;
}

.interface-panel {
  position: relative;
  margin: 0;
  text-align: center;
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 18px 36px rgba(15, 28, 45, 0.12);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 0 1 clamp(240px, 24vw, 280px);
}

.interface-panel img {
  width: 100%;
  height: clamp(220px, 24vw, 260px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.interface-panel figcaption {
  margin: 1rem 0 0;
  font-weight: 600;
  color: #1f2f43;
}

.panel-marker {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #ee7203;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(238, 114, 3, 0.28);
  pointer-events: none;
}

.interface-pressacavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: 1.5rem 0 2rem;
}

.interface-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem);
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: 0 18px 36px rgba(15, 28, 45, 0.12);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  margin: 2rem 0 2.5rem;
}

.interface-box__image {
  margin: 0;
  flex: 0 0 auto;
}

.interface-box__image img {
  display: block;
  width: clamp(200px, 22vw, 260px);
  height: auto;
}

.interface-box__notes {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.interface-box__notes ul {
  margin: 0;
  padding-left: 1.1rem;
  text-align: left;
  line-height: 1.45;
}

.interface-box__notes li + li {
  margin-top: 0.45rem;
}

/* Mobile: impila immagine sopra e testo sotto (cap. 6.4.2.1 / 6.4.2.2) */
@media (max-width: 600px) {
  .interface-box {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: visible; /* niente scroll della pagina né del box */
  }

  .interface-box__image,
  .interface-box__notes {
    flex: 1 1 auto;
    width: 100%;
  }

  .interface-box__image {
    margin: 0 auto;
  }

  .interface-box__image img {
    width: min(90%, 320px); /* non ingrandire troppo l'immagine su schermi piccoli */
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .interface-box__notes {
    text-align: left;
  }
}

.interface-accessory {
  position: relative;
  margin: 0;
  text-align: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 16px 32px rgba(15, 28, 45, 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 0 1 clamp(200px, 20vw, 240px);
}

.interface-accessory img {
  width: 100%;
  height: clamp(160px, 18vw, 200px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.interface-accessory figcaption {
  margin-top: 0.8rem;
  font-weight: 600;
  color: #1f2f43;
}

.interface-legend {
  margin: 0 0 2.8rem;
  padding-left: 1.5rem;
  color: #1f2f43;
  font-size: 1rem;
}

.interface-legend > li {
  margin-bottom: 0.5rem;
}

.interface-legend ul {
  margin-top: 0.35rem;
  padding-left: 1.3rem;
  list-style-type: lower-alpha;
}

.interface-legend ul li {
  margin-bottom: 0.25rem;
}

.interface-legend > li::marker {
  font-weight: 700;
  color: #ee7203;
}

.interface-legend ul li::marker {
  font-weight: 600;
  color: #ee7203;
}

.sim-guide {
  margin: 2.25rem 0 2.5rem;
}

.sim-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.sim-step-card {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 18px 36px rgba(15, 28, 45, 0.12);
  padding: clamp(1.25rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  min-height: 100%;
}

.sim-step-badge {
  position: absolute;
  top: clamp(1rem, 2vw, 1.4rem);
  left: clamp(1rem, 2vw, 1.4rem);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #ee7203;
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(238, 114, 3, 0.28);
}

.sim-step-card img {
  width: 100%;
  height: clamp(150px, 18vw, 190px);
  object-fit: contain;
}

.sim-step-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  color: #1f2f43;
  font-size: 0.98rem;
  line-height: 1.4;
}

.sim-step-card figcaption strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1c2d;
}

@media (max-width: 600px) {
  .sim-step-grid {
    grid-template-columns: 1fr;
  }

  .sim-step-card {
    padding: 1.1rem;
  }

  .sim-step-badge {
    width: 2rem;
    height: 2rem;
  }

  .sim-step-card img {
    height: clamp(160px, 52vw, 200px);
  }
}

img {
  max-width: 100%;
}

.print-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem 1.2rem;
  margin-bottom: 1.8rem;
}

.toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.toolbar-actions--right {
  justify-self: end;
  justify-content: flex-end;
}

.toolbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.6rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.toolbar-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(238, 114, 3, 0.3);
}

.print-button {
  background: #ee7203;
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(238, 114, 3, 0.25);
}

.print-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(238, 114, 3, 0.35);
}

.print-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(238, 114, 3, 0.28);
}

.toolbar-button--icon {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border-radius: 50%;
  font-size: 1.3rem;
  border: 1px solid rgba(15, 28, 45, 0.12);
  background: #f8fbff;
  color: #d05a00;
  box-shadow: 0 8px 18px rgba(15, 28, 45, 0.1);
}

.toolbar-button--icon:hover,
.toolbar-button--icon:focus-visible {
  background: #ee7203;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(238, 114, 3, 0.28);
}


.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-self: center;
}

.language-option {
  border: 1px solid rgba(15, 28, 45, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 114, 3, 0.08));
  color: #0f1c2d;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.language-option:hover,
.language-option:focus-visible {
  color: #ee7203;
  border-color: rgba(238, 114, 3, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 114, 3, 0.18));
}

.language-option.is-active {
  background: #ee7203;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(238, 114, 3, 0.25);
}

.language-option.is-active:hover,
.language-option.is-active:focus-visible {
  color: #fff;
}

.manual-menu {
  justify-self: start;
}

.language-switcher {
  justify-self: center;
}

.print-toolbar .print-button {
  justify-self: end;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .manual-shell .language-switcher {
    display: none;
  }
}

/* Restore language switcher visibility on the landing (index) page for mobile */
@media (max-width: 768px) {
  .index-shell .index-topbar .language-switcher {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .print-toolbar {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 0.6rem;
  }

  .toolbar-actions {
    justify-self: start;
  }

  .manual-menu {
    justify-self: start;
  }

  .toolbar-actions--right,
  .print-toolbar .print-button {
    justify-self: end;
  }

  .toolbar-button {
    padding: 0.55rem 1.05rem;
  }

  .manual-content h2 {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .section-top-link {
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
  }
}

@media print {
  body {
    background: #fff;
    padding: 0;
  }

  .manual-shell {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }

  .manual-content {
    width: 100%;
    max-width: 140mm;
    margin: 0 auto;
    padding: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    color: #000;
  }

  table {
    page-break-inside: avoid;
  }

  p.bullet::before {
    background: #000;
  }

  .print-toolbar {
    display: none;
  }

  figure.image {
    margin: 1.2rem 0;
    page-break-inside: avoid;
  }

  figure.image img {
    display: block;
    margin: 0 auto;
    max-width: 110mm;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  figure.image.image-no-frame img {
    border: none;
  }

  img {
    max-width: 110mm;
    width: auto;
    height: auto;
    page-break-inside: avoid;
  }

  .accessory-card img {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .hazard-inline {
    width: 1.4rem;
    margin-right: 0.35rem;
  }

  .accessory-card figcaption,
  .accessory-card .accessory-code {
    color: #000;
  }

  table.comparison-table td img {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .kit-card {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8mm;
  }

  .kit-card figure img {
    border-radius: 0;
    box-shadow: none;
  }

  .kit-list {
    color: #000;
  }

  .interface-panel,
  .interface-accessory {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8mm;
  }

  .interface-panel img,
  .interface-accessory img {
    border-radius: 0;
  }

  .panel-marker {
    box-shadow: none;
  }

  .interface-legend {
    color: #000;
  }

  figure.image figcaption {
    color: #000;
  }

  .sim-step-card {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 6mm;
  }

  .sim-step-card img {
    border-radius: 0;
  }

  .sim-step-card figcaption {
    color: #000;
  }

  .sim-step-badge {
    box-shadow: none;
  }
}

@page {
  size: A4;
  margin: 18mm 16mm;
}

.app-logo {
  margin: 1.5rem 0 0.5rem;
  text-align: center;
}

.app-logo img {
  width: 120px;
  max-width: 100%;
  border-radius: 20%;
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.15);
}

p.bullet + p,
p.bullet + .app-logo,
p.bullet + .store-badges {
  margin-top: 0;
}

/* ----- Landing page styles ----- */

.index-shell {
  padding: clamp(1.5rem, 3vw + 0.75rem, 3rem) clamp(1rem, 3vw, 2.2rem);
}

/* Global mobile type scale adjustments: reduce base font size on small screens */
@media (max-width: 640px) {
  html {
    font-size: 15px; /* ~-1px vs default 16px */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px; /* ~-2px (~1.5pt) vs default 16px */
  }
}

.index-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: nowrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.index-topbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.index-topbar__brand img {
  display: block;
  width: clamp(120px, 18vw, 160px);
  max-width: 160px;
  height: auto;
  box-shadow: 0 12px 30px rgba(15, 28, 45, 0.15);
}

.index-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  background: rgba(238, 114, 3, 0.08);
  padding: 0.28rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 114, 3, 0.25);
}

.lang-button {
  border: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 40px;
  color: #d05a00;
  background: transparent;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  background: rgba(238, 114, 3, 0.18);
  color: #0f1c2d;
  outline: none;
}

.lang-button--active {
  background: #ee7203;
  color: #fff;
  box-shadow: 0 10px 22px rgba(238, 114, 3, 0.28);
}

@media (max-width: 640px) {
  .index-topbar {
    gap: 0.6rem;
  }

  .index-topbar__brand img {
    width: clamp(100px, 22vw, 136px);
    max-width: 136px;
  }

  .index-shell {
    padding: 1.3rem 1.1rem 2.5rem;
  }

  .language-switcher {
    padding: 0.24rem 0.3rem;
    gap: 0.24rem;
  }

  .lang-button {
    font-size: 0.76rem;
    padding: 0.32rem 0.5rem;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  .index-topbar {
    gap: 0.45rem;
  }

  .index-topbar__brand img {
    width: clamp(88px, 28vw, 110px);
    max-width: 110px;
  }

  .index-shell {
    padding: 1.1rem 0.85rem 2.25rem;
  }

  .index-topbar__actions {
    gap: 0.4rem;
  }

  .language-switcher {
    padding: 0.2rem 0.26rem;
    gap: 0.2rem;
  }

  .lang-button {
    min-width: auto;
    padding: 0.28rem 0.44rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 380px) {
  .index-topbar__brand img {
    width: clamp(80px, 30vw, 96px);
  }

  .index-shell {
    padding: 1rem 0.75rem 2rem;
  }

  .language-switcher {
    padding: 0.18rem 0.22rem;
    gap: 0.18rem;
  }

  .lang-button {
    font-size: 0.66rem;
    padding: 0.24rem 0.38rem;
  }
}

@media (max-width: 340px) {
  .index-topbar {
    justify-content: flex-start;
    gap: 0.35rem;
  }

  .index-topbar__actions {
    gap: 0.25rem;
  }

  .index-shell {
    padding: 0.9rem 0.65rem 1.8rem;
  }

  .language-switcher {
    padding: 0.16rem 0.2rem;
    gap: 0.16rem;
  }

  .lang-button {
    font-size: 0.6rem;
    padding: 0.22rem 0.32rem;
  }
}

.index-hero__image {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.index-hero__image img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero-actions .primary-button {
  min-height: 56px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  background: #ee7203;
  color: #fff;
  box-shadow: 0 18px 38px rgba(238, 114, 3, 0.3);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(238, 114, 3, 0.35);
  outline: none;
}

.hero-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.hero-actions .store-badge--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-actions .store-badge--hero img {
  height: 100%;
  width: auto;
}

.index-section {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
  color: #0f1c2d;
}

.section-description {
  margin: 0 0 clamp(1.2rem, 2.5vw, 1.8rem);
  color: rgba(15, 28, 45, 0.72);
  max-width: none;
}

.feature-grid,
.product-grid,
.manual-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.85), rgba(247, 251, 255, 0.95));
  border: 1px solid rgba(238, 114, 3, 0.18);
  box-shadow: 0 16px 32px rgba(15, 28, 45, 0.12);
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  color: #d05a00;
}

.feature-card p {
  margin: 0;
  color: rgba(15, 28, 45, 0.75);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.9), rgba(247, 251, 255, 0.96));
  border-radius: 1.6rem;
  border: 1px solid rgba(238, 114, 3, 0.14);
  box-shadow: 0 20px 44px rgba(15, 28, 45, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card__image {
  background: rgba(255, 255, 255, 0.82);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(238, 114, 3, 0.12);
}

.product-card__image img {
  width: 100%;
  max-width: 260px;
  height: 200px;
  object-fit: contain;
}

.product-card__body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card__code {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(213, 91, 0, 0.7);
}

.product-card__title {
  margin: 0;
  font-size: 1.15rem;
  color: #0f1c2d;
}

.product-card__text {
  margin: 0;
  color: rgba(15, 28, 45, 0.75);
  flex: 1;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 28, 45, 0.08);
  box-shadow: 0 12px 26px rgba(15, 28, 45, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 28, 45, 0.18);
  outline: none;
}

.store-badge img {
  display: block;
  width: clamp(140px, 22vw, 170px);
  height: auto;
}

.simple-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.simple-topbar .index-topbar__brand {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1c2d;
}

.lead-text {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.key-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.key-list li {
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.8), rgba(247, 251, 255, 0.9));
  border: 1px solid rgba(238, 114, 3, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 26px rgba(15, 28, 45, 0.12);
  line-height: 1.55;
  color: #1f2f43;
}

.key-list strong {
  color: #d05a00;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  min-width: 220px;
  min-height: 56px;
  border-radius: 999px;
  background: #ee7203;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(238, 114, 3, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(238, 114, 3, 0.35);
  outline: none;
}

.store-badge--inline {
  padding: 0;
  height: 56px;
  min-width: 200px;
  justify-content: center;
}

.store-badge--inline img {
  height: 100%;
  width: auto;
}

.closing-paragraph {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(15, 28, 45, 0.75);
  text-align: center;
}

@media (max-width: 720px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .store-badge--inline {
    width: 100%;
    min-width: 0;
  }
}

.manual-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.manual-card {
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(15, 28, 45, 0.1);
  box-shadow: 0 16px 36px rgba(15, 28, 45, 0.12);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.manual-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(238, 114, 3, 0.16);
  color: #d05a00;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.manual-card__title {
  margin: 0;
  font-size: 1.1rem;
  color: #0f1c2d;
}

.manual-card__text {
  margin: 0;
  color: rgba(15, 28, 45, 0.72);
  flex: 1;
}

.manual-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.manual-card__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ee7203;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.manual-card__link:hover,
.manual-card__link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.manual-card__status {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f1c2d;
  background: rgba(0, 153, 102, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.manual-card--active {
  border-color: rgba(0, 153, 102, 0.28);
  box-shadow: 0 20px 38px rgba(0, 153, 102, 0.18);
}

.index-footer {
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  padding: clamp(1.6rem, 4vw, 2.2rem) 0;
  text-align: center;
  color: rgba(15, 28, 45, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.index-footer__note {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1c2d;
}

.index-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.index-footer__separator {
  color: rgba(15, 28, 45, 0.35);
}

.index-footer a {
  color: #ee7203;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.index-footer a:hover,
.index-footer a:focus-visible {
  color: #c55a00;
  outline: none;
}

.index-footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(15, 28, 45, 0.5);
}

.index-footer__build {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(15, 28, 45, 0.6);
}

.index-footer__build a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .badge-grid {
    justify-content: center;
  }

  .store-badge {
    width: 100%;
  }

  .store-badge img {
    width: 100%;
    max-width: 260px;
  }
}
