/* ============================================================
   Edge Onyx S.r.l. — style.css
   ============================================================ */

/* ------------------------------------------------------------
   0. CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Colori */
  --navy:    #080d1a;
  --navy2:   #0c1425;
  --navy3:   #101c34;
  --blue:    #1a6bc4;
  --cyan:    #2496f0;
  --glow:    #44b8ff;
  --white:   #ffffff;
  --g1:      #b8cfe0;
  --g2:      #5e7a90;
  --border:  rgba(68, 184, 255, 0.15);
  --bord2:   rgba(68, 184, 255, 0.07);

  /* Spacing */
  --section-pad: 100px 6vw;
  --max-w: 1200px;
}

/* ------------------------------------------------------------
   1. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Blazor sposta il focus sull'h1 dopo la navigazione — rimuove il focus ring visivo */
h1:focus {
  outline: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------------------------------------
   2. UTILITIES
   ------------------------------------------------------------ */
.section-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glow);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--g1);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  max-width: 640px;
}

.sep {
  width: 48px;
  height: 2px;
  background: var(--glow);
  margin: 28px 0;
  border-radius: 2px;
}

.ac { color: var(--glow); }

/* Bottoni */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 3px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--glow);
  color: var(--glow);
  transform: translateY(-2px);
}

/* Animazioni */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes float-sm {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ------------------------------------------------------------
   3. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bord2);
}

.nav__logo {
  height: 44px;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--g1);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--glow);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--g2);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.lang-switcher__btn:hover {
  color: var(--g1);
}
.lang-switcher__btn--active {
  color: var(--glow);
}

.lang-switcher__sep {
  color: var(--bord2);
  font-size: 11px;
}

.nav__cta {
  padding: 8px 22px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid var(--glow);
  color: var(--glow);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover {
  background: var(--glow);
  color: var(--navy);
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--g1);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu aperto */
.nav__links--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(8, 13, 26, 0.97);
  padding: 24px 5vw;
  gap: 20px;
  border-bottom: 1px solid var(--bord2);
}

/* ------------------------------------------------------------
   4. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 6vw 90px;
  position: relative;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 150, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 150, 240, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 35%, transparent 100%);
  pointer-events: none;
}

.hero__glow-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  background: radial-gradient(circle, rgba(36, 150, 240, 0.10) 0%, transparent 68%);
  pointer-events: none;
}

.hero__sphere {
  width: 190px;
  height: 190px;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 48px rgba(68, 184, 255, 0.4));
}

.hero__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glow);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.hero__sub {
  max-width: 600px;
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--g1);
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  margin-bottom: 46px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--g2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: pulse 2.6s ease-in-out infinite;
}

.hero__scroll-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--glow));
  position: relative;
}
.hero__scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  border: 4px solid transparent;
  border-top-color: var(--glow);
  border-bottom: none;
}

/* ------------------------------------------------------------
   5. ABOUT
   ------------------------------------------------------------ */
.about {
  padding: var(--section-pad);
  background: var(--navy2);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about__text .section-sub {
  max-width: 100%;
}

/* Pillar cards */
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.pillar {
  background: rgba(36, 150, 240, 0.07);
  border: 1px solid var(--bord2);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pillar__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--glow);
  margin-top: 1px;
}

.pillar__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.pillar__desc {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.5;
}

/* Visual decorativo */
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 28s linear infinite;
}
.about__ring::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(68, 184, 255, 0.07);
  animation: spin-slow 40s linear infinite reverse;
}

.about__ring-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(68, 184, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite reverse;
}

.about__sphere {
  width: 120px;
  height: 120px;
  animation: float-sm 5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(68, 184, 255, 0.35));
}

.about__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 12px var(--glow);
}
.about__dot:nth-child(1) { top: 10%;    left: 50%; transform: translateX(-50%); }
.about__dot:nth-child(2) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.about__dot:nth-child(3) { left: 8%;   top: 50%;  transform: translateY(-50%); }
.about__dot:nth-child(4) { right: 8%;  top: 50%;  transform: translateY(-50%); }

/* ------------------------------------------------------------
   6. SERVICES
   ------------------------------------------------------------ */
.services {
  padding: var(--section-pad);
  background: var(--navy);
}

.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card servizio */
.service-card {
  background: var(--navy3);
  border: 1px solid var(--bord2);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 150, 240, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(68, 184, 255, 0.15);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--glow);
}

.service-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 14px;
  color: var(--g1);
  line-height: 1.7;
  font-weight: 300;
}

.service-card__num {
  position: absolute;
  bottom: 20px;
  right: 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(68, 184, 255, 0.05);
  line-height: 1;
  user-select: none;
}

/* ------------------------------------------------------------
   7. SECTORS
   ------------------------------------------------------------ */
.sectors {
  padding: var(--section-pad);
  background: var(--navy2);
}

.sectors__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.sectors__head {
  text-align: center;
  margin-bottom: 60px;
}
.sectors__head .section-sub {
  margin: 0 auto;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  background: var(--navy3);
  border: 1px solid var(--bord2);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.sector-card:hover {
  border-color: rgba(68, 184, 255, 0.3);
  transform: translateY(-3px);
}

.sector-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.sector-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.sector-card__desc {
  font-size: 12px;
  color: var(--g2);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   8. GREEN / SOSTENIBILITÀ
   ------------------------------------------------------------ */
.green {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #061a10 0%, #071523 100%);
  border-top: 1px solid rgba(68, 184, 255, 0.08);
  border-bottom: 1px solid rgba(68, 184, 255, 0.08);
}

.green__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.green__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: rgba(36, 150, 240, 0.06);
  border: 1px solid rgba(68, 184, 255, 0.1);
  border-radius: 8px;
  padding: 22px 20px;
}

.stat-card__value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--glow);
  line-height: 1;
}

.stat-card__label {
  font-size: 12px;
  color: var(--g2);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.green__circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(36, 150, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.green__circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(36, 150, 240, 0.12);
}
.green__circle::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(36, 150, 240, 0.07);
}

.green__circle-label {
  text-align: center;
  position: relative;
  z-index: 1;
}
.green__circle-label span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--glow);
  display: block;
  line-height: 1;
}
.green__circle-label p {
  font-size: 12px;
  color: var(--g2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ------------------------------------------------------------
   9. CONTACT
   ------------------------------------------------------------ */
.contact {
  padding: var(--section-pad);
  background: var(--navy);
  text-align: center;
}

.contact__inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact__sphere {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 28px rgba(68, 184, 255, 0.35));
}

.contact__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}

.contact__sub {
  color: var(--g1);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 42px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 48px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__label {
  font-size: 12px;
  color: var(--g2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form__input,
.contact-form__textarea {
  background: var(--navy2);
  border: 1px solid var(--bord2);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--g2);
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: rgba(68, 184, 255, 0.4);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.contact-form__error {
  color: #f87171;
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}

/* Modal verifica */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--g2);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal__close:hover {
  color: var(--white);
}

.modal__icon {
  margin-bottom: 20px;
}

.modal__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal__desc {
  color: var(--g1);
  font-size: 14px;
  margin-bottom: 4px;
}

.modal__email {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

.modal__code-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.modal__code-input {
  width: 46px;
  height: 54px;
  background: var(--navy3);
  border: 1px solid var(--bord2);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s;
}
.modal__code-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(36, 150, 240, 0.15);
}

.modal__error {
  color: #f87171;
  font-size: 13px;
  margin-bottom: 16px;
}

.modal__confirm {
  width: 100%;
  margin-bottom: 14px;
}

.modal__resend {
  background: none;
  border: none;
  color: var(--g2);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.modal__resend:hover {
  color: var(--glow);
}

/* Success state */
.contact__success {
  padding: 40px 0;
}
.contact__success-icon {
  margin-bottom: 20px;
}
.contact__success-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact__success-desc {
  color: var(--g1);
  font-size: 15px;
}

/* Animazioni modal */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--navy2);
  border-top: 1px solid var(--bord2);
  padding: 48px 6vw 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer__logo {
  height: 38px;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.7;
  max-width: 320px;
}

.footer__data {
  font-size: 12px;
  color: var(--g2);
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: right;
}
.footer__data strong {
  color: var(--g1);
  font-weight: 500;
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--bord2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--g2);
}

/* ------------------------------------------------------------
   11. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .about__inner,
  .green__inner,
  .services__head,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about__visual {
    display: none;
  }

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

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

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

  .footer__data {
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .services__grid,
  .sectors__grid {
    grid-template-columns: 1fr;
  }

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

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