/* =============================================================================
   CLINICA PULVIRENTI – Landing page styles
   Colors: navy #1a2e5e | gold #c9a84c | white #ffffff
   Mobile-first, no images, no external dependencies
   ============================================================================= */

/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #212529;
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: #1a2e5e; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout helpers ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ────────────────────────────────────────────────────────────────── */
.site-header {
  background: #1a2e5e;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: #c9a84c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.logo-claim {
  font-size: 11px;
  color: #c9a84c;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c9a84c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
}

.header-cta:hover { background: #b8963f; text-decoration: none; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #1a2e5e 0%, #0f1e3d 100%);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative ring */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(201,168,76,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border: 40px solid rgba(201,168,76,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: #c9a84c;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a84c;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-hero:hover {
  background: #b8963f;
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.location-sep { color: rgba(255,255,255,0.2); font-size: 16px; }

/* ── REQUISITI BOX ─────────────────────────────────────────────────────────── */
.requisiti-section {
  padding: 56px 0;
  background: #f8f9fa;
}

.requisiti-box {
  background: #ffffff;
  border: 2px solid #1a2e5e;
  border-radius: 12px;
  padding: 36px 40px;
  position: relative;
}

.requisiti-box::before {
  content: 'REQUISITI';
  position: absolute;
  top: -13px;
  left: 32px;
  background: #1a2e5e;
  color: #c9a84c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 14px;
  border-radius: 20px;
}

.requisiti-box h2 {
  font-size: 22px;
  color: #1a2e5e;
  margin-bottom: 20px;
  font-weight: 700;
}

.requisiti-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.requisiti-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #344054;
  line-height: 1.5;
}

.requisiti-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #1a2e5e;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.requisiti-nota {
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff8e6;
  border-left: 3px solid #c9a84c;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: #6b5a2a;
  line-height: 1.5;
}

/* ── PERCHÉ NOI ────────────────────────────────────────────────────────────── */
.perche-section {
  padding: 64px 0;
  background: #ffffff;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #1a2e5e;
  margin-bottom: 48px;
  line-height: 1.25;
}

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

.card-perche {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 28px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card-perche:hover {
  box-shadow: 0 8px 28px rgba(26,46,94,0.10);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg { color: #1a2e5e; }

.card-perche h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e5e;
  margin-bottom: 10px;
}

.card-perche p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.65;
}

/* ── SEDI ──────────────────────────────────────────────────────────────────── */
.sedi-section {
  padding: 56px 0;
  background: #1a2e5e;
}

.sedi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.sedi-info h2 {
  font-size: clamp(20px, 3vw, 28px);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

.sedi-info p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sedi-info p strong { color: #c9a84c; }

.sedi-avviso {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.sedi-cards { display: grid; gap: 16px; }

.sede-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sede-dot {
  width: 10px;
  height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  flex-shrink: 0;
}

.sede-nome {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sede-indirizzo {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── CTA FINALE ────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 72px 0;
  text-align: center;
  background: #ffffff;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #1a2e5e;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 17px;
  color: #6c757d;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0f1e3d;
  padding: 32px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-piva {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #c9a84c; }

.footer-sep { color: rgba(255,255,255,0.15); font-size: 12px; }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { gap: 8px; }
  .logo-name { font-size: 13px; }
  .logo-claim { display: none; }

  .requisiti-box { padding: 28px 22px; }

  .sedi-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .header-cta { padding: 8px 14px; font-size: 12px; }
  .hero { padding: 52px 0 48px; }
  .btn-hero { width: 100%; justify-content: center; }
  .requisiti-box { padding: 22px 16px; }
}
