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

:root {
  --bg-dark: #1e1611;
  --bg-light: #f5ede2;
  --text-on-dark: #fdf6ee;
  --muted-on-dark: #bfae9e;
  --panel-dark: #251c15;
  --text-on-light: #2d221a;
  --muted-on-light: #6e5b4f;
  --panel-light: #ffffff;
  --line: rgba(234, 175, 110, 0.12);
  --accent: #ea9642;
  --shadow: 0 30px 70px rgba(15, 10, 7, 0.25);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Header Split */
.hero-split {
  padding: 120px 0 80px;
  background: var(--bg-dark);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-split-text h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
}

.hero-split-desc {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

.eyebrow-dark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-split-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.hero-split-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section {
  padding: 96px 0;
}

/* 2. Sezione Intro (Chiara) */
.intro {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.intro-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.intro h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-light);
}

.intro p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-light);
}

/* 3. Griglia Tre Valori */
.warm-grid {
  background: var(--bg-light);
  padding-top: 0;
  padding-bottom: 120px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.soft-card {
  background: var(--panel-light);
  border: 1px solid rgba(45, 34, 26, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(45, 34, 26, 0.04);
}

.soft-card h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text-on-light);
}

.soft-card p {
  color: var(--muted-on-light);
  font-size: 16px;
  line-height: 1.6;
}

/* 4. Sezione Spotlight (Scura) */
.spotlight {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-bottom: 40px;
}

.spotlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spotlight h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-dark);
}

.spotlight-text p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-dark);
}

.spotlight-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
}

.spotlight-image img {
  width: 100%;
  min-height: 36px;
  object-fit: cover;
}

/* 5. Sezione Servizi */
.services {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.services-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-on-dark);
}

.services-header p {
  margin-top: 12px;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #1e1611;
  --bg-light: #f5ede2;
  --text-on-dark: #fdf6ee;
  --muted-on-dark: #bfae9e;
  --panel-dark: #251c15;
  --text-on-light: #2d221a;
  --muted-on-light: #6e5b4f;
  --panel-light: #ffffff;
  --line: rgba(234, 175, 110, 0.12);
  --accent: #ea9642;
  --shadow: 0 30px 70px rgba(15, 10, 7, 0.25);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Header Split */
.hero-split {
  padding: 120px 0 80px;
  background: var(--bg-dark);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-split-text h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
}

.hero-split-desc {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

.eyebrow-dark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-split-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.hero-split-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section {
  padding: 96px 0;
}

/* 2. Sezione Intro (Chiara) */
.intro {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.intro-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.intro h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-light);
}

.intro p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-light);
}

/* 3. Griglia Tre Valori */
.warm-grid {
  background: var(--bg-light);
  padding-top: 0;
  padding-bottom: 120px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.soft-card {
  background: var(--panel-light);
  border: 1px solid rgba(45, 34, 26, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(45, 34, 26, 0.04);
}

.soft-card h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text-on-light);
}

.soft-card p {
  color: var(--muted-on-light);
  font-size: 16px;
  line-height: 1.6;
}

/* 4. Sezione Spotlight (Scura) */
.spotlight {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-bottom: 40px;
}

.spotlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spotlight h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-dark);
}

.spotlight-text p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-dark);
}

.spotlight-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
}

.spotlight-image img {
  width: 100%;
  min-height: 36px;
  object-fit: cover;
}

/* 5. Sezione Servizi */
.services {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.services-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-on-dark);
}

.services-header p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted-on-dark);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-title h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-on-dark);
}

.service-desc p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  color: var(--muted-on-dark);
}

/* 6. Banner Finale */
.welcome {
  background: #f4efe9 !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.welcome-box {
  padding: 60px 40px;
  border-radius: 32px;
  background: linear-gradient(90deg, #2d2017 0%, #1a120c 45%, #050403 75%, #000000 100%);
  border: 1px solid rgba(234, 150, 66, 0.4);
  box-shadow: 0 20px 50px rgba(26, 18, 12, 0.15);
}

.welcome-box h2 {
  color: var(--accent) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.02em;
  text-align: center !important;
}

.welcome-box p {
  color: var(--muted-on-dark) !important;
  font-size: 13.8px !important;
  line-height: 1.4 !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: visible !important;
  width: 100% !important;
}

/* 7. Footer */
.site-footer {
  padding: 60px 20px 80px 20px !important;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark) !important;
  border-top: none !important;
}

.site-footer p {
  margin: 0 0 12px 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #f4efe9 !important;
  line-height: 1.2 !important;
  opacity: 0.9 !important;
}

.site-footer p + p {
  margin: 0 !important;
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  color: #f4efe9 !important;
  opacity: 0.45 !important;
}

/* Responsività */
@media (max-width: 980px) {
  .hero-split-inner, .intro-box, .spotlight-box, .services-inner, .service-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-split-visual { order: 2; }
  .cards { grid-template-columns: 1fr; }
  .spotlight-image img { min-height: 280px; }
  
  .welcome-box p {
    white-space: normal !important;
    font-size: 14px !important;
    text-align: center !important;
    width: auto !important;
    display: inline-block !important;
  }
  
  .welcome-box h2 {
    text-align: center !important;
    margin-bottom: 16px !important;
  }
  
  .services-header {
    margin-top: 60px !important;
  }
}

/* Correzione specifica per smartphone in modalità orizzontale */
@media (max-width: 980px) and (orientation: landscape) {
  .services-header {
    margin-top: 30px !important;
  }
}

@media (max-width: 640px) {
  .hero-split { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .soft-card { padding: 28px 24px; border-radius: 20px; }
  .spotlight-image, .welcome-box { border-radius: 20px; }
  .welcome-box { padding: 32px 24px; }
}

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

:root {
  --bg-dark: #1e1611;
  --bg-light: #f5ede2;
  --text-on-dark: #fdf6ee;
  --muted-on-dark: #bfae9e;
  --panel-dark: #251c15;
  --text-on-light: #2d221a;
  --muted-on-light: #6e5b4f;
  --panel-light: #ffffff;
  --line: rgba(234, 175, 110, 0.12);
  --accent: #ea9642;
  --shadow: 0 30px 70px rgba(15, 10, 7, 0.25);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Header Split */
.hero-split {
  padding: 120px 0 80px;
  background: var(--bg-dark);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-split-text h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
}

.hero-split-desc {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

.eyebrow-dark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-split-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}

.hero-split-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section {
  padding: 96px 0;
}

/* 2. Sezione Intro (Chiara) */
.intro {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.intro-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.intro h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-light);
}

.intro p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-light);
}

/* 3. Griglia Tre Valori */
.warm-grid {
  background: var(--bg-light);
  padding-top: 0;
  padding-bottom: 120px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.soft-card {
  background: var(--panel-light);
  border: 1px solid rgba(45, 34, 26, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 40px rgba(45, 34, 26, 0.04);
}

.soft-card h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text-on-light);
}

.soft-card p {
  color: var(--muted-on-light);
  font-size: 16px;
  line-height: 1.6;
}

/* 4. Sezione Spotlight (Scura) */
.spotlight {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-bottom: 40px;
}

.spotlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spotlight h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 400;
  color: var(--text-on-dark);
}

.spotlight-text p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-on-dark);
}

.spotlight-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
}

.spotlight-image img {
  width: 100%;
  min-height: 36px;
  object-fit: cover;
}

/* 5. Sezione Servizi */
.services {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.services-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-on-dark);
}

.services-header p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted-on-dark);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-title h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-on-dark);
}

.service-desc p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  color: var(--muted-on-dark);
}

/* 6. Banner Finale */
.welcome {
  background: #f4efe9 !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.welcome-box {
  padding: 60px 40px;
  border-radius: 32px;
  background: linear-gradient(90deg, #2d2017 0%, #1a120c 45%, #050403 75%, #000000 100%);
  border: 1px solid rgba(234, 150, 66, 0.4);
  box-shadow: 0 20px 50px rgba(26, 18, 12, 0.15);
}

.welcome-box h2 {
  color: var(--accent) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.02em;
  text-align: center !important;
}

.welcome-box p {
  color: var(--muted-on-dark) !important;
  font-size: 13.8px !important;
  line-height: 1.4 !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: visible !important;
  width: 100% !important;
}

/* 7. Footer */
.site-footer {
  padding: 60px 20px 80px 20px !important;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark) !important;
  border-top: none !important;
}

.site-footer p {
  margin: 0 0 12px 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #f4efe9 !important;
  line-height: 1.2 !important;
  opacity: 0.9 !important;
}

.site-footer p + p {
  margin: 0 !important;
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  color: #f4efe9 !important;
  opacity: 0.45 !important;
}

/* Responsività */
@media (max-width: 980px) {
  .hero-split-inner, .intro-box, .spotlight-box, .services-inner, .service-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-split-visual { order: 2; }
  .cards { grid-template-columns: 1fr; }
  .spotlight-image img { min-height: 280px; }
  
  .welcome-box p {
    white-space: normal !important;
    font-size: 14px !important;
    text-align: center !important;
    width: auto !important;
    display: inline-block !important;
  }
  
  .welcome-box h2 {
    text-align: center !important;
    margin-bottom: 16px !important;
  }
  
  .services-header {
    margin-top: 60px !important;
  }
}

/* Correzione specifica per smartphone in modalità orizzontale */
@media (max-width: 980px) and (orientation: landscape) {
  .services-header {
    margin-top: 30px !important;
  }
}

@media (max-width: 640px) {
  .hero-split { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .soft-card { padding: 28px 24px; border-radius: 20px; }
  .spotlight-image, .welcome-box { border-radius: 20px; }
  .welcome-box { padding: 32px 24px; }
}

  color: var(--muted-on-dark);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-title h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-on-dark);
}

.service-desc p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  color: var(--muted-on-dark);
}

/* 6. Banner Finale */
.welcome {
  background: #f4efe9 !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.welcome-box {
  padding: 60px 40px;
  border-radius: 32px;
  background: linear-gradient(90deg, #2d2017 0%, #1a120c 45%, #050403 75%, #000000 100%);
  border: 1px solid rgba(234, 150, 66, 0.4);
  box-shadow: 0 20px 50px rgba(26, 18, 12, 0.15);
}

.welcome-box h2 {
  color: var(--accent) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.02em;
  text-align: center !important;
}

.welcome-box p {
  color: var(--muted-on-dark) !important;
  font-size: 13.8px !important;
  line-height: 1.4 !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: visible !important;
  width: 100% !important;
}

/* 7. Footer */
.site-footer {
  padding: 60px 20px 80px 20px !important;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark) !important;
  border-top: none !important;
}

.site-footer p {
  margin: 0 0 12px 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #f4efe9 !important;
  line-height: 1.2 !important;
  opacity: 0.9 !important;
}

.site-footer p + p {
  margin: 0 !important;
  font-size: 9px !important;
  letter-spacing: 0.18em !important;
  color: #f4efe9 !important;
  opacity: 0.45 !important;
}

/* Responsività */
@media (max-width: 980px) {
  .hero-split-inner, .intro-box, .spotlight-box, .services-inner, .service-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-split-visual { order: 2; }
  .cards { grid-template-columns: 1fr; }
  .spotlight-image img { min-height: 280px; }
  
  .welcome-box p {
    white-space: normal !important;
    font-size: 14px !important;
    text-align: center !important;
    width: auto !important;
    display: inline-block !important;
  }
  
  .welcome-box h2 {
    text-align: center !important;
    margin-bottom: 16px !important;
  }
  
  .services-header {
    margin-top: 60px !important;
  }
}

/* Correzione specifica per smartphone in modalità orizzontale */
@media (max-width: 980px) and (orientation: landscape) {
  .services-header {
    margin-top: 30px !important;
  }
}

@media (max-width: 640px) {
  .hero-split { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .soft-card { padding: 28px 24px; border-radius: 20px; }
  .spotlight-image, .welcome-box { border-radius: 20px; }
  .welcome-box { padding: 32px 24px; }
}

