/* ============================================================
   Z24Digital — css/style.css
   Unico file CSS per tutto il progetto.
   Per cambiare colori: modifica le variabili in :root
   Per cambiare font: modifica @import e font-family in body
   ============================================================

   INDICE:
   01. Font & Variabili
   02. Reset & Base
   03. Navbar
   04. Language Switcher
   05. Hero (homepage)
   06. Buttons
   07. Stats Bar
   08. Sezioni generiche
   09. Servizi
   10. Processo
   11. Tech Stack
   12. Form Contatto
   13. Footer
   14. Pagine interne — Layout
   15. Pagine interne — Chi siamo
   16. Pagine interne — Legali (Impressum / Privacy)
   17. Responsive
   ============================================================ */


/* ============================================================
   01. FONT & VARIABILI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

:root {
  --black:    #0d0d0f;
  --white:    #f4f3f0;
  --accent:   #60a5fa;
  --muted:    #71717a;
  --border:   #27272a;
  --card-bg:  #111113;
  --error:    #f87171;
  --success:  #4ade80;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ============================================================
   03. NAVBAR
   ============================================================ */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,15,0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 500 !important;
}


/* ============================================================
   04. LANGUAGE SWITCHER
   ============================================================ */

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
  background: var(--accent);
  color: var(--black);
}


/* ============================================================
   05. HERO (homepage)
   ============================================================ */

.hero {
  padding: 6rem 3.5rem 4.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero h1 em { font-style: normal; color: var(--accent); }

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}


/* ============================================================
   06. BUTTONS
   ============================================================ */

.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-size: 0.92rem;
  cursor: pointer;
  background: none;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: #555; color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.88; }

/* Spinner nel bottone submit */
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.btn-primary.loading .btn-spinner { display: inline-block; }
.btn-primary.loading .btn-label   { opacity: 0.6; }
.btn-primary.loading               { pointer-events: none; }

@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   07. STATS BAR
   ============================================================ */

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 3.5rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-num sup { font-size: 1rem; color: var(--accent); }

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-weight: 300;
}


/* ============================================================
   08. SEZIONI GENERICHE
   ============================================================ */

.section {
  padding: 5rem 3.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}


/* ============================================================
   09. SERVIZI
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem 2rem 1.75rem;
  transition: background 0.2s;
}

.service-card:hover { background: #161618; }

.service-num {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #1e1e22;
  color: #666;
  border: 1px solid var(--border);
}


/* ============================================================
   10. PROCESSO
   ============================================================ */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.process-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  background: var(--card-bg);
}

.process-item:last-child { border-right: none; }

.process-num {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.process-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.process-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}


/* ============================================================
   11. TECH STACK
   ============================================================ */

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
  transition: all 0.2s;
  cursor: default;
}

.pill:hover { border-color: var(--accent); color: var(--white); }

.pill-core {
  border-color: rgba(96,165,250,0.3);
  color: #93c4fd;
  background: rgba(96,165,250,0.06);
}


/* ============================================================
   12. FORM CONTATTO
   ============================================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
}

.contact-intro {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-details a:hover { opacity: 0.75; }

.contact-icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371717a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}

.form-group select option { background: #1a1a1d; color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--error); }

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

.field-error {
  font-size: 0.72rem;
  color: var(--error);
  display: none;
}

.field-error.visible { display: block; }

/* Checkbox consenso */
.form-consent { margin-top: 0.25rem; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-label a { color: var(--accent); text-decoration: none; }
.consent-label a:hover { opacity: 0.75; }

/* Footer form */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.form-privacy {
  font-size: 0.73rem;
  color: #52525b;
  max-width: 380px;
  line-height: 1.5;
}

/* Alert */
.form-alert {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

.form-alert.visible { display: block; }

.form-success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--success);
}

.form-error-alert {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: var(--error);
}


/* ============================================================
   13. FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3f3f46;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a {
  color: #3f3f46;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--muted); }

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #52525b;
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}


/* ============================================================
   14. PAGINE INTERNE — LAYOUT
   ============================================================ */

.page-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 3.5rem 5rem;
}

/* Hero pagine interne */
.page-hero { padding: 5rem 0 4rem; }

.page-hero-inner { max-width: 700px; }

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
}

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
}


/* ============================================================
   15. PAGINE INTERNE — CHI SIAMO
   ============================================================ */

.founder-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0 5rem;
  border-top: 1px solid var(--border);
}

.founder-photo-wrap {
  position: sticky;
  top: 6rem;
}

.founder-photo-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--border);
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3f46;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0.3rem;
}

.founder-role {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.founder-bio p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Valori */
.values-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.value-card {
  background: var(--card-bg);
  padding: 2rem;
  transition: background 0.2s;
}

.value-card:hover { background: #161618; }

.value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}


/* ============================================================
   16. PAGINE INTERNE — LEGALI (Impressum / Privacy)
   ============================================================ */

.legal-page { max-width: 780px; }

.legal-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}

.legal-header p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

.legal-date {
  margin-top: 0.5rem;
  font-size: 0.78rem !important;
  color: #3f3f46 !important;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #aaa;
  margin: 1.25rem 0 0.5rem;
}

.legal-section p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-section a:hover { opacity: 0.75; }

.legal-section strong { color: #ccc; font-weight: 500; }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.legal-list li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.legal-note {
  font-size: 0.78rem !important;
  color: #52525b !important;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-top: 1px solid var(--border); }
  .process-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .stats-bar { padding: 1.5rem; gap: 2.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.5rem; }
  .page-main { padding: 0 1.5rem 4rem; }
  .founder-section { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-wrap { position: static; max-width: 220px; }
  .values-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   18. PAGINA CONTATTACI
   ============================================================ */

.contact-page-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

/* ---- Colonna info ---- */
.contact-page-info {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cp-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cp-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.cp-info-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.55;
}

.cp-email {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 500;
}

.cp-email:hover { opacity: 0.75; }

.cp-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(96,165,250,0.07);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.cp-response-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.cp-divider {
  border-top: 1px solid var(--border);
}

.cp-expect { display: flex; flex-direction: column; gap: 0.75rem; }

.cp-expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cp-expect-list li {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.cp-expect-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 1px;
}

/* ---- Colonna form ---- */
.contact-page-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cp-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .contact-page-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-page-info { position: static; }
}
