/* =====================================================================
   Enjoy Tutor — sito pubblico
   Palette del brand (stessa dell'app):
   arancio #F5921E / arancio scuro #E07E0F / blu #1D6FF2 / blu scuro #2B4EA2
   fondo #F3F5FB / crema #FAF0DC / testo #1E1E1E / grigio #8A8F98
   ===================================================================== */

:root {
  --orange: #F5921E;
  --orange-dark: #E07E0F;
  --blue: #1D6FF2;
  --blue-dark: #2B4EA2;
  --bg: #F3F5FB;
  --cream: #FAF0DC;
  --text: #1E1E1E;
  --grey: #8A8F98;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 4px 14px rgba(0, 0, 0, .06);
  --shadow-big: 0 10px 30px rgba(43, 78, 162, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

/* Titoli con il font arrotondato "ciccio" del vecchio sito. */
h1, h2, h3, .section-title, .logo strong, .footer-logo .wordmark,
.price-card .amount, .hero h1 {
  font-family: 'Baloo 2', 'Poppins', 'Segoe UI', sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.site-header .container {
  display: flex; align-items: center; gap: 26px;
  height: 68px;
}
/* Logo come nel vecchio sito: pallina + "enjoy tutor" minuscolo. */
.logo { display: flex; align-items: center; gap: 9px; line-height: 1; }
.logo img { width: 34px; height: 34px; }
.logo strong { font-size: 23px; font-weight: 800; }
.logo strong .enjoy { color: var(--orange); }
.logo strong .tutor { color: var(--blue); }
.main-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.main-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--text);
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); border-bottom-color: var(--orange); }
.btn-accedi {
  background: var(--orange); color: #fff !important; font-weight: 700;
  padding: 10px 26px; border-radius: 999px; border-bottom: none !important;
  transition: background .15s;
}
.btn-accedi:hover { background: var(--orange-dark); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 3px; border-radius: 2px;
  background: var(--blue-dark); margin: 4px 0;
}

/* ------------------------------------------------------------------ bottoni */
.btn {
  display: inline-block; font-weight: 700; font-size: 15.5px;
  padding: 13px 32px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .12s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-white { background: #fff; color: var(--blue-dark); }

/* ------------------------------------------------------------------ hero */
.hero {
  background: var(--blue);
  color: #fff;
  padding: 64px 0 110px;
  position: relative;
}
.hero::after {
  /* onda in fondo alla sezione, come nel vecchio sito */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 74" preserveAspectRatio="none"><path fill="white" d="M0,40 C240,90 480,-10 720,20 C960,50 1200,70 1440,30 L1440,74 L0,74 Z"/></svg>') no-repeat;
  background-size: 100% 100%;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800; text-align: center; line-height: 1.15;
  max-width: 780px; margin: 0 auto 14px;
}
.hero p.sub {
  text-align: center; max-width: 640px; margin: 0 auto 30px;
  font-size: 17px; opacity: .93;
}
.search-box {
  max-width: 620px; margin: 0 auto; display: flex;
  background: #fff; border-radius: 999px; padding: 6px;
  box-shadow: var(--shadow-big);
}
.search-box input {
  flex: 1; border: 0; outline: none; font: inherit; font-size: 15.5px;
  padding: 10px 20px; border-radius: 999px; color: var(--text);
  min-width: 0;
}
.search-box button { flex-shrink: 0; }
.chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 26px;
}
.chip {
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.55);
  color: #fff; font-weight: 600; font-size: 14px;
  padding: 8px 20px; border-radius: 999px; cursor: pointer;
  transition: background .15s;
}
.chip:hover { background: rgba(255,255,255,.28); }

/* ------------------------------------------------------------------ sezioni */
section { padding: 64px 0; }
.section-title {
  font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; line-height: 1.2;
  margin-bottom: 10px;
}
.section-sub { color: var(--grey); font-size: 16px; max-width: 640px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

.bg-soft { background: var(--bg); }
.bg-cream { background: var(--cream); }

/* ------------------------------------------------------------------ card tutor */
.tutors-note {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 700; margin-bottom: 28px; font-size: 17px;
}
.stars { color: var(--orange); letter-spacing: 1px; }
.tutor-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px; margin-top: 34px;
}
.tutor-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s, box-shadow .15s;
}
.tutor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-big); }
.tutor-card .top { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-dark); color: #fff; font-weight: 800; font-size: 21px;
  display: flex; align-items: center; justify-content: center;
}
.tutor-card h3 { font-size: 17px; font-weight: 800; }
.tutor-card .cat {
  display: inline-block; background: rgba(29,111,242,.1); color: var(--blue);
  font-size: 11.5px; font-weight: 800; padding: 3px 10px; border-radius: 8px;
}
.badge-flag {
  display: inline-block; background: var(--cream); color: var(--orange-dark);
  font-size: 11.5px; font-weight: 800; padding: 3px 10px; border-radius: 8px;
}
.tutor-card .rating { font-size: 13px; font-weight: 700; color: var(--grey); }
.tutor-card .desc {
  font-size: 13.5px; color: var(--grey);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 42px;
}
.tutor-card .price { font-weight: 800; color: var(--orange-dark); font-size: 17px; }
.tutor-card .free { color: var(--blue); font-size: 12.5px; font-weight: 700; }
.sponsored-tag {
  margin-left: auto; background: rgba(245,146,30,.13); color: var(--orange-dark);
  font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 999px;
}

/* ------------------------------------------------------------------ passi */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.step { text-align: center; padding: 0 10px; }
.step .bubble {
  width: 128px; height: 128px; margin: 0 auto 16px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow); overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.step .bubble img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------- hero con illustrazione */
.hero-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.hero-grid .hero-art img { max-height: 340px; margin: 0 auto; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { display: none; } }

/* --------------------------------------------------- sezione app / mockup */
.mockups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: start; }
.mockups figure { text-align: center; }
.mockups img { max-height: 420px; margin: 0 auto; }
.mockups figcaption { font-weight: 800; font-size: 15.5px; margin-top: 4px; }
.mockups .fig-sub { color: var(--grey); font-size: 13.5px; margin-top: 4px; }
@media (max-width: 860px) { .mockups { grid-template-columns: 1fr; } }

/* --------------------------------------------------- banda ebook */
.ebook-band {
  display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: center;
  background: #fff; border-radius: 26px; box-shadow: var(--shadow); padding: 34px 40px;
}
.ebook-band img { max-height: 300px; margin: 0 auto; }
@media (max-width: 860px) { .ebook-band { grid-template-columns: 1fr; text-align: center; } }

/* --------------------------------------------------- pagina profilo tutor
   Stile alla Superprof: contenuto a sinistra, card fissa a destra. */
.sp-profile {
  display: grid; grid-template-columns: 1fr 330px; gap: 44px;
  align-items: start; padding-top: 40px;
}
.sp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.sp-chip {
  background: rgba(29,111,242,.08); color: var(--blue); font-size: 13px;
  font-weight: 700; padding: 7px 16px; border-radius: 999px;
}
.sp-chip.orange { background: rgba(245,146,30,.12); color: var(--orange-dark); }
.sp-profile h1 {
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; line-height: 1.25;
  margin-bottom: 26px;
}
.sp-profile h2 { font-size: 22px; font-weight: 800; margin: 30px 0 12px; }
.sp-place { display: flex; gap: 12px; flex-wrap: wrap; }
.sp-place span {
  border: 1.6px solid #E3E7EF; border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 700; display: inline-flex; gap: 8px; align-items: center;
}
.sp-panel {
  background: #EDF3FE; border-radius: 18px; padding: 22px 24px; margin: 28px 0;
}
.sp-panel .tag { color: var(--blue); font-weight: 800; font-size: 16px; }
.sp-panel p { font-size: 14.5px; margin-top: 6px; }
.sp-about { font-size: 15px; line-height: 1.65; }
.sp-card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-big);
  padding: 28px; text-align: center; position: sticky; top: 92px;
}
.sp-card .avatar { width: 104px; height: 104px; font-size: 36px; margin: 0 auto 12px; }
.sp-card h3 { font-size: 22px; font-weight: 800; }
.sp-card .rating { font-size: 13.5px; font-weight: 700; color: var(--grey); margin-top: 4px; }
.sp-card table { width: 100%; margin: 18px 0 6px; border-collapse: collapse; }
.sp-card td { padding: 7px 0; font-size: 14.5px; }
.sp-card td:first-child { text-align: left; color: var(--text); }
.sp-card td:last-child { text-align: right; font-weight: 800; }
.sp-card .btn { width: 100%; margin-top: 12px; }
.sp-card .free { color: var(--orange-dark); font-weight: 800; font-size: 13.5px; margin-top: 12px; }
@media (max-width: 900px) {
  .sp-profile { grid-template-columns: 1fr; }
  .sp-card { position: static; order: -1; max-width: 420px; margin: 0 auto; }
}
.step h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--grey); font-size: 14.5px; }

/* ------------------------------------------------------------------ testimonianze */
.reviews-band { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: center; }
.reviews-band .intro .stars { font-size: 24px; }
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.review-card {
  border-radius: var(--radius); padding: 24px; font-size: 15px; line-height: 1.6;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card.c1 { background: var(--cream); }
.review-card.c2 { background: #E3EDFF; }
.review-card.c3 { background: #E9F7EC; }
.review-card .who {
  background: #fff; border-radius: 999px; padding: 6px 16px;
  font-size: 13px; font-weight: 700; align-self: flex-start;
  display: flex; gap: 8px; align-items: center;
}
.review-card .quote { flex: 1; }

/* ------------------------------------------------------------------ banner diventa tutor */
.banner-tutor {
  background: var(--blue); border-radius: 26px; color: #fff;
  padding: 46px 48px; display: flex; align-items: center; gap: 34px;
  flex-wrap: wrap;
}
.banner-tutor .txt { flex: 1; min-width: 260px; }
.banner-tutor h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.banner-tutor p { opacity: .92; margin-bottom: 0; }

/* ------------------------------------------------------------------ prezzi */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 38px; }
.price-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 26px; text-align: center;
}
.price-card.highlight { border: 2.5px solid var(--orange); }
.price-card .amount { font-size: 38px; font-weight: 800; color: var(--orange-dark); }
.price-card .amount small { font-size: 15px; color: var(--grey); font-weight: 700; }
.price-card h3 { font-size: 16px; font-weight: 800; margin: 8px 0 6px; }
.price-card p { font-size: 13.5px; color: var(--grey); }

/* ------------------------------------------------------------------ esplora */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 36px; }
.explore-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px;
}
.explore-card h3 { color: var(--blue-dark); font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.explore-card ul { list-style: none; }
.explore-card li { padding: 3px 0; color: var(--grey); font-size: 14px; font-weight: 600; }

/* ------------------------------------------------------------------ blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 36px; }
.blog-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
}
.blog-card .thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.blog-card .thumb.t1 { background: var(--cream); }
.blog-card .thumb.t2 { background: #E3EDFF; }
.blog-card .thumb.t3 { background: #E9F7EC; }
.blog-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card h3 { font-size: 16.5px; font-weight: 800; line-height: 1.35; }
.blog-card .meta { color: var(--grey); font-size: 12.5px; font-weight: 600; margin-top: auto; }

/* ------------------------------------------------------------------ pagine interne
   Stile del vecchio sito: hero crema con titolo scuro e illustrazione,
   sezioni alternate azzurro/crema, card crema con illustrazioni. */
.hero-cream {
  background: #FDF3EA; text-align: center; padding: 70px 0 0;
}
.hero-cream h1 {
  font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; color: var(--text);
  max-width: 760px; margin: 0 auto 18px; line-height: 1.2;
}
.hero-cream p.sub {
  max-width: 640px; margin: 0 auto 28px; font-size: 16.5px; color: var(--text);
}
.hero-cream .art { max-width: 420px; margin: 30px auto 0; }
.hero-cream .art img { margin: 0 auto; }

.bg-lightblue { background: #EDF3FE; }

/* Card crema con illustrazione grande (pagina metodo / lavora con noi). */
.duo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  max-width: 900px; margin: 44px auto 0;
}
.duo-card { text-align: center; }
.duo-card .pic {
  background: #FFFBEF; border-radius: 22px; padding: 20px;
  border: 1px solid rgba(245,146,30,.18);
}
.duo-card .pic img { max-height: 260px; margin: 0 auto; }
.duo-card h3 { font-size: 19px; font-weight: 800; margin: 18px 0 8px; }
.duo-card p { color: var(--text); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 860px) { .duo-grid { grid-template-columns: 1fr; } }

/* Curva blu che entra nella sezione crema (vecchio sito). */
.curve-into-cream {
  background: #FDF3EA; position: relative; overflow: hidden;
}
.curve-into-cream::before {
  content: ""; position: absolute; left: 50%; top: -240px; transform: translateX(-50%);
  width: 160%; height: 320px; border-radius: 50%;
  background: #EDF3FE;
}
.curve-into-cream .container { position: relative; }

/* ------------------------------------------------------------------ pagine interne (hero blu) */
.page-hero {
  background: var(--blue); color: #fff; padding: 56px 0 90px; position: relative;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 74" preserveAspectRatio="none"><path fill="white" d="M0,40 C240,90 480,-10 720,20 C960,50 1200,70 1440,30 L1440,74 L0,74 Z"/></svg>') no-repeat;
  background-size: 100% 100%;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; max-width: 760px; }
.page-hero p { max-width: 640px; margin-top: 12px; font-size: 16.5px; opacity: .93; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 38px; }
.feature-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px;
}
.feature-card .icon { font-size: 34px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--grey); }

.prose { max-width: 800px; }
.prose h2 { font-size: 24px; font-weight: 800; margin: 34px 0 10px; }
.prose h3 { font-size: 18px; font-weight: 800; margin: 24px 0 8px; color: var(--blue-dark); }
.prose p { margin-bottom: 14px; font-size: 15.5px; }
.prose ul { margin: 0 0 14px 22px; font-size: 15.5px; }

/* ------------------------------------------------------------------ faq
   Come il vecchio sito: domande numerate 01, 02, ... in arancio. */
.faq-group { max-width: 800px; margin: 0 auto; counter-reset: faq; }
.faq-group h2 { font-size: 22px; font-weight: 800; margin: 40px 0 18px; counter-reset: faq; }
.faq-item button { counter-increment: faq; }
.faq-item button::before {
  content: counter(faq, decimal-leading-zero);
  color: var(--orange); font-weight: 800; margin-right: 14px; font-size: 15px;
}
.faq-item {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 12px; overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 15.5px; padding: 18px 52px 18px 20px;
  position: relative; color: var(--text);
}
.faq-item button::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 24px; font-weight: 800; transition: transform .2s;
}
.faq-item.open button::after { content: "–"; }
.faq-item .answer { display: none; padding: 0 20px 18px; color: var(--grey); font-size: 14.5px; }
.faq-item.open .answer { display: block; }

/* ------------------------------------------------------------------ contatti */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact-list { display: grid; gap: 18px; }
.contact-item {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 18px 20px; display: flex; gap: 14px; align-items: center;
}
.contact-item .ico { font-size: 24px; }
.contact-item h3 { font-size: 14px; font-weight: 800; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--grey); font-weight: 600; }
.contact-form {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px;
}
.contact-form label { font-size: 13.5px; font-weight: 700; display: block; margin: 14px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; font-size: 14.5px; padding: 12px 14px;
  border: 1.4px solid var(--orange); border-radius: 10px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange-dark); border-width: 2px; }

/* ------------------------------------------------------------------ cta finale */
.final-cta { text-align: center; }
.final-cta .box {
  background: var(--cream); border-radius: 26px; padding: 52px 30px;
}
.final-cta h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 10px; }
.final-cta p { color: var(--grey); max-width: 620px; margin: 0 auto 26px; }

/* ------------------------------------------------------------------ footer
   Replica del footer del vecchio sito: fondo crema con onda in alto,
   logo con pallina, contatti a sinistra, colonne di link,
   "SEGUICI SU" con i social, riga legale e copyright centrato. */
.site-footer {
  background: #FDF3EA; color: var(--text); padding: 0 0 18px; margin-top: 40px;
  position: relative;
}
.site-footer::before {
  content: ""; display: block; height: 34px; margin-top: -33px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40" preserveAspectRatio="none"><path fill="%23FDF3EA" d="M0,22 C180,4 360,36 540,24 C720,12 900,34 1080,20 C1260,8 1380,26 1440,16 L1440,40 L0,40 Z"/></svg>') no-repeat;
  background-size: 100% 100%;
}
.site-footer .inner { padding-top: 44px; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 54px; height: 54px; margin-left: 8px; }
.footer-logo .wordmark {
  font-size: 26px; font-weight: 800; line-height: 1.05; display: block;
}
.footer-logo .wordmark .enjoy { color: var(--orange); }
.footer-logo .wordmark .tutor { color: var(--blue); }
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr .9fr; gap: 34px;
  margin-top: 18px; align-items: start;
}
.site-footer .contacts p, .site-footer .contacts a {
  font-size: 14.5px; color: var(--text); margin: 4px 0; display: block; font-weight: 500;
}
.site-footer ul { list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { font-size: 14.5px; color: var(--text); font-weight: 500; }
.site-footer a:hover { color: var(--blue); }
.site-footer h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; margin-bottom: 12px;
  color: var(--text);
}
.socials { display: flex; gap: 14px; }
.socials a { display: inline-flex; }
.socials svg { width: 30px; height: 30px; }
.footer-legal {
  display: flex; gap: 90px; flex-wrap: wrap; margin-top: 36px; font-size: 14px;
}
.footer-legal a { font-weight: 500; }
.footer-copy {
  text-align: center; font-size: 11.5px; letter-spacing: .08em; color: var(--grey);
  margin-top: 30px; text-transform: uppercase;
}

/* ------------------------------------------------------------------ responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 10px 20px 20px;
    box-shadow: 0 12px 20px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid #eef1f7; width: 100%; }
  .btn-accedi { text-align: center; margin-top: 12px; }
  .nav-toggle { display: block; }
  .steps { grid-template-columns: 1fr; }
  .reviews-band { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  section { padding: 46px 0; }
}
