/* ===================================================
   Dialog Ausili - DPAD | Foglio di stile principale
   =================================================== */

:root {
  --color-primary: #2f9393;
  --color-primary-dark: #237373;
  --color-accent: #e41616;
  --color-accent-dark: #c01010;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7f7;
  --color-border: #e6e6e6;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container-width: 1140px;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 70px 0;
}

.bg-alt {
  background: var(--color-bg-alt);
}

h1, h2, h3, h4, h5 {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--color-primary); }

p { margin: 0 0 14px; color: var(--color-text-light); }

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

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p {
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(228, 22, 22, 0.25);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 147, 147, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 30px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: 30px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-menu .nav-cta {
  color: #000000;
  font-weight: 700;
}

.nav-menu .nav-cta:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-text);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  background: url("../img/sfondo.jpg") center top / cover no-repeat;
  background-color: #eef6f6;
  padding: 60px 0 40px;
}

.hero-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 40px;
}

.hero-brand {
  text-align: center;
}

.hero-brand img {
  margin: 0 auto;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  margin: 0 auto;
  max-height: 480px;
}

/* ---------- Centered CTA (matches original centered button style) ---------- */

.cta-center {
  text-align: center;
  margin-top: 10px;
}

/* ---------- Content rows (text + image) ---------- */

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-row.reverse .content-row-media {
  order: 2;
}

.content-row.reverse .content-row-text {
  order: 1;
}

.content-row-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.feature-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  color: var(--color-text-light);
}

.feature-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ---------- Video preview ---------- */

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  font: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.video-preview img {
  width: 100%;
  transition: transform 0.3s ease;
}

.video-preview:hover img {
  transform: scale(1.04);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: rgba(47, 147, 147, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

/* ---------- Video modal (in-page lightbox) ---------- */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 20, 0.85);
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Cookie consent ---------- */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 56px 24px 24px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner-close:hover {
  background: var(--color-border);
}

.cookie-banner-title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.cookie-banner-text p:last-child {
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner-actions .btn {
  padding: 10px 20px;
  font-size: 0.86rem;
}

/* Modal "Gestione Preferenze" */

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 20, 0.6);
}

.cookie-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
  margin: 0;
  color: var(--color-text);
}

.cookie-modal-close {
  border: none;
  border-radius: 50%;
  background: var(--color-bg-alt);
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-close:hover {
  background: var(--color-border);
}

.cookie-modal-body {
  padding: 20px 24px;
}

.cookie-modal-body > p {
  font-size: 0.86rem;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.cookie-category-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-category-always {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cookie-category p {
  font-size: 0.85rem;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 42px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  background: var(--color-primary);
}

.cookie-switch input:checked + span::before {
  transform: translateX(18px);
}

.cookie-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--color-border);
}

.cookie-modal-footer .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.84rem;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px 46px 20px 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* ---------- Feature grid (cards) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.feature-card h5 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Auto-scrolling carousels (Splide) ---------- */

.carousel {
  padding: 0 46px;
}

.carousel .splide__track {
  overflow: hidden;
}

.carousel .splide__list {
  align-items: stretch;
}

.carousel .splide__slide {
  height: auto;
}

.carousel .feature-card {
  height: 100%;
}

.carousel-video .video-preview .play-icon {
  width: 44px;
  height: 44px;
}

.carousel-video .video-preview .play-icon::before {
  border-width: 8px 0 8px 13px;
}

.splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  opacity: 1;
}

.splide__arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow:hover {
  background: var(--color-primary);
  color: #fff;
}

.splide__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.splide__arrow--prev { left: 0; }
.splide__arrow--next { right: 0; }

.splide__pagination {
  bottom: 0.2em;
}

.splide__pagination__page {
  background: var(--color-border);
  opacity: 1;
}

.splide__pagination__page.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .carousel {
    padding: 0;
  }

  .splide__arrow {
    display: none;
  }
}

/* ---------- Pricing / CTA banner ---------- */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
}

.cta-banner h2, .cta-banner p {
  color: #fff;
}

.cta-banner p {
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-accent {
  margin-top: 8px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 20px;
  margin: 0;
}

.faq-more {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #ffffff;
  color: var(--color-text);
  padding: 60px 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.footer-grid img {
  height: 40px;
  margin-bottom: 16px;
}

.site-footer h5 {
  color: #111111;
  margin-bottom: 16px;
}

.site-footer a {
  color: var(--color-text);
}

.site-footer a:hover {
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  padding: 22px 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-text-light);
}

/* ---------- Legal / policy pages ---------- */

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h3 {
  margin-top: 36px;
  scroll-margin-top: 100px;
}

.policy-content h3:first-of-type {
  margin-top: 0;
}

.policy-content h4 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  color: var(--color-text);
  scroll-margin-top: 100px;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--color-text-light);
}

.policy-content ul li,
.policy-content ol li {
  margin-bottom: 8px;
}

.policy-toc {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px 24px 24px 42px;
  margin-bottom: 36px;
}

.policy-toc li {
  margin-bottom: 6px;
}

.policy-toc a {
  color: var(--color-text);
  font-weight: 600;
}

.policy-toc a:hover {
  color: var(--color-primary);
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
}

.policy-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.policy-table th,
.policy-table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-weight: 700;
}

.policy-table td {
  color: var(--color-text-light);
}

/* ---------- Devices page ---------- */

.device-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.device-category-header {
  background: #fff;
  /*border-bottom: 1px solid var(--color-border);*/
  padding: 28px 0;
  text-align: center;
  scroll-margin-top: 100px;
}

.device-category-header h2 {
  color: var(--color-primary);
  margin: 0;
}

.device-section {
  padding: 48px 0;
}

.device-item {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.device-item-photo {
  width: 100%;
  max-width: 360px;
  /* aspect-ratio: 4 / 3; */
  object-fit: cover;
  border-radius: var(--radius);
  /*
  background: #fff;
  box-shadow: var(--shadow-sm);
  */
  margin: 0 auto 24px;
  display: block;
}

.device-item h3 {
  margin-bottom: 12px;
}

.device-item p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* ---------- Contact page ---------- */

.page-header {
  background: var(--color-bg-alt);
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-item h5 {
  margin: 0 0 4px;
}

.contact-info-item p {
  margin: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fbfcfc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(47, 147, 147, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-check input {
  margin-top: 4px;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.form-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eaf6f2;
  border: 1px solid #bfe3d5;
  color: #1d6b4c;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-success.is-visible {
  display: flex;
}

.form-success.is-error {
  background: #fdecea;
  border-color: #f3c2be;
  color: #a4272c;
}


.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-brand img { margin: 0 auto; }

  .content-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-row.reverse .content-row-media,
  .content-row.reverse .content-row-text {
    order: initial;
  }

  .content-row-media { order: -1; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    order: -1;
  }

  .device-category-nav {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  section {
    padding: 48px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
