/* ============================================================
   SISS — Landing Page Servizi
   ============================================================ */

:root {
  --navy: #0C1B33;
  --navy-light: #162D54;
  --orange: #E8601C;
  --orange-light: #F4854D;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --warm-gray: #E8E4DF;
  --text: #1A1A1A;
  --text-light: #5A5650;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 27, 51, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 27, 51, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--off-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Top Nav ── */
.srv-nav {
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.srv-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.srv-nav-logo img { width: 40px; height: 40px; border-radius: 8px; }
.srv-nav-links { display: flex; gap: 16px; align-items: center; }
.srv-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.srv-nav-links a:hover { color: var(--white); }
.srv-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.srv-nav-cta:hover { background: var(--orange-light) !important; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── Hero ── */
.srv-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.srv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.srv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.srv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,27,51,0.85) 0%, rgba(12,27,51,0.6) 100%);
}
.srv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  color: var(--white);
}
.srv-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.srv-hero-content h1 em {
  color: var(--orange-light);
  font-style: normal;
}
.srv-hero-content .srv-hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}
.srv-hero-price {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
}
.srv-hero-price .price-amount { color: var(--orange-light); font-size: 1.4rem; }

/* ── Container ── */
.srv-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.srv-section { padding: 80px 0; }
.srv-section-alt { background: var(--white); }

/* ── Content ── */
.srv-content { max-width: 780px; }
.srv-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}
.srv-content h2 em { color: var(--orange); font-style: normal; }
.srv-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ── Steps ── */
.srv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.srv-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.srv-section-alt .srv-step { background: var(--off-white); }
.srv-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.srv-step h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.srv-step p { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }

/* ── Features list ── */
.srv-features {
  list-style: none;
  margin: 24px 0;
}
.srv-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--warm-gray);
}
.srv-features li:last-child { border-bottom: none; }
.srv-features li svg { flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ── */
.srv-faq { margin-top: 32px; }
.srv-faq-item {
  border-bottom: 1px solid var(--warm-gray);
  padding: 20px 0;
}
.srv-faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  cursor: default;
}
.srv-faq-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Servizi correlati ── */
.srv-related { background: var(--white); }
.srv-related .srv-section-title {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--navy); margin-bottom: 32px; text-align: center;
}
.srv-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.srv-related-card {
  display: block; padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--off-white); border: 1px solid var(--warm-gray);
  transition: all 0.3s; position: relative; text-decoration: none; color: var(--text);
}
.srv-related-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.srv-related-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--navy); margin-bottom: 8px;
}
.srv-related-card p {
  font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px;
}
.srv-related-price {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--orange); background: rgba(232,96,28,0.08);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.srv-related-link {
  font-size: 13px; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.srv-related-card:hover .srv-related-link { text-decoration: underline; }
.srv-related-all {
  text-align: center; margin-top: 28px;
}
.srv-related-all a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; border-bottom: 2px solid var(--warm-gray);
  padding-bottom: 2px; transition: border-color 0.3s;
}
.srv-related-all a:hover { border-color: var(--orange); }
@media (max-width: 768px) {
  .srv-related-grid { grid-template-columns: 1fr; }
}

/* ── CTA ── */
.srv-cta {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}
.srv-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}
.srv-cta p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.srv-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-cta-primary { background: var(--orange); color: var(--white); }
.btn-cta-primary:hover { background: var(--orange-light); }
.btn-cta-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-cta-outline:hover { border-color: var(--white); }

/* ── Footer mini ── */
.srv-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.srv-footer a { color: rgba(255,255,255,0.7); }
.srv-footer a:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .srv-nav-links a:not(.srv-nav-cta) { display: none; }
  .srv-hero-content { padding: 60px 20px; }
  .srv-hero-content h1 { font-size: 1.8rem; }
  .srv-steps { grid-template-columns: 1fr; }
}
