:root {
  --blue: #000a6b;
  --blue2: #8085B5;
  --blue3: #C0C2DA;
  --gray: #b5b5b5;
  --gray2: #636363;
  --white: #f4f6fa;
  --light: #f9f9ff;
  --red: #c0392b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif !important;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--light);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--gray);
}

.logo-img {
  height: 100px;
}

/* ── HERO ── */
#home {
  height: 100vh;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, var(--blue2) 0%, var(--blue3) 60%, var(--light) 100%); */
  background: '#ffffff';
  padding: 100px 6vw 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #home {
    padding: 140px 6vw 60px;
    height: auto;
  }
}

#home::before {
  content: '';
  position: absolute;
  right: 0%;
  top: 25%;
  width: 50%;
  height: 50%;
  background: url('https://www.michelettilift.it/img/ascensori-a-verona-home.png') center/contain no-repeat;
  opacity: 0.80;
}

.hero-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h1 em {
  color: var(--gray);
  font-style: normal;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.badge {
  background: var(--light);
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.btn-primary {
  display: inline-block;
  background: var(--gray);
  color: var(--blue);
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gray2);
  transform: translateY(-2px);
}


.btn-primary.disabled, .btn-primary:disabled{
  background: #63636380;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gray);
  color: var(--gray);
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  background: transparent;
}

.btn-outline:hover {
  background: var(--gray);
  color: var(--blue);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SERVICES ICONS ── */
.services-strip {
  background: var(--blue3);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3.5rem 1rem;
  border-right: 1px solid var(--gray);
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 192, 64, 0.1);
  border-radius: 50%;
  font-size: 1.4rem;
}

.strip-item span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── SECTION WRAPPER ── */
section {
  padding: 90px 6vw;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  color: var(--blue);
}

.section-lead {
  font-size: 1.05rem;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

p {
  color: var(--gray2);
  margin-bottom: 1rem;
}


/* ── ABOUT / INTRO ── */
#about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
}

.stat p {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
}

.img-box {
  background: var(--blue2);
  border: 1px solid rgba(232, 192, 64, 0.15);
  border-radius: 4px;
  overflow: hidden;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box img {
  object-fit: cover;
  display: block;
  height: auto;
}
@media (max-width: 768px) {
  .img-box img {
    height: 350px;
  }
}


/* ── SERVICES CARDS ── */
#service {
  background: #EAEBF6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--light);
  border-top: 3px solid var(--blue);
  padding: 2rem 1.8rem;
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2rem;
  margin-right: 1rem;
  display: inline-block;
  color: var(--blue);
}
.card-icon i {
  font-weight: 400 !important;
}
.card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  
}

.card p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ── WHY US ── */
#why {
  background: var(--blue3);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: rgba(232, 192, 64, 0.25);
  line-height: 1;
  min-width: 40px;
}

.why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.why-aside {
  background: var(--blue2);
  border: 1px solid rgba(232, 192, 64, 0.2);
  padding: 2.5rem;
  border-radius: 4px;
}

.why-aside h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--light);
}

.check-list li::before {
  content: '✓';
  color: var(--gray);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── AREAS ── */
#zone {
  background: var(--light);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.area-badge {
  background: rgba(0, 11, 107, 0.05);
}

/* ── CONTACT ── */
#contatti {
  background: #EAEBF6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232, 192, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item h4 {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.info-item a,
.info-item p {
  color: var(--gray2);
  text-decoration: none;
  margin: 0;
  font-weight: 500;
}

.info-item a:hover {
  color: var(--gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--blue2);
  border: 1px solid rgba(232, 192, 64, 0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gray);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.privacy-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--gray);
}

.privacy-row input[type=checkbox] {
  margin-top: 3px;
  accent-color: var(--gray);
}

.privacy-row a {
  color: var(--gray);
}

#contactForm input[type="text"], #contactForm input[type="email"], #contactForm input[type="tel"], #contactForm textarea {
  background: rgba(0, 11, 107, 0.05) !important;
  border-bottom: 2px solid var(--blue) !important;
  color: var(--blue);
  padding: 0.85rem 1.2rem;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

#contactForm label {
  color: var(--gray2) !important;
}

#contactForm label a {
  color: var(--blue) !important;
}

#contactForm input::placeholder, #contactForm textarea::placeholder {
  color: var(--blue) !important;
}


/* ── FOOTER ── */
footer {
  background: var(--light);
  border-top: 2px solid var(--blue);
  padding: 3rem 6vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer ul a {
  color: var(--gray2);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--gray);
}

footer p {
  color: var(--gray2);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid #000a6b;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--blue);
  margin: 0;
}

.footer-bottom a {
  color: var(--blue) !important;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #home::before {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── NAV HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.nav-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.nav-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
  }

  nav ul.nav-open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 1rem 0;
  }

  nav ul li a {
    display: block;
    padding: 0.85rem 6vw;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 10, 107, 0.08);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  section {
    padding: 60px 5vw;
  }

  .strip-item {
    min-width: 50%;
  }
}