/*
Theme Name: Vivere a Panama
Theme URI: https://www.viverepanama.it
Author: Davide Dante Sala
Author URI: https://www.viverepanama.it
Description: Tema WordPress per Vivere a Panama - La guida completa per italiani che vogliono trasferirsi a Panama. Design elegante con colori ocean e gold, sezioni per servizi, libro e consulenze.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vivere-panama
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options
*/

/* ═══════════════════════════════════════════════════════════════
   VIVERE PANAMA - WORDPRESS THEME STYLES
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ocean: #0A1628;
  --deep: #0D1F3C;
  --gold: #C8893A;
  --gold-light: #E8A855;
  --sand: #F5EDD8;
  --sand-light: #FBF7EE;
  --white: #FFFFFF;
  --mist: rgba(255,255,255,0.07);
  --text-body: #2C3E50;
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--sand-light);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ocean);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Panama Skyline Background Image */
.hero-skyline-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background-image: url('images/panama-skyline-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
  animation: skyline-fade 2s ease-out forwards;
}

@keyframes skyline-fade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 0.25; transform: translateY(0); }
}

.horizon {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.horizon::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, #0B1A35 60%, #0A2040 100%);
}

/* Skyline silhouette - fallback/overlay */
.skyline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 1600px;
  opacity: 0.12;
  animation: skyline-rise 2s ease-out forwards;
}

@keyframes skyline-rise {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to   { opacity: 0.12; transform: translateX(-50%) translateY(0); }
}

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 22%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 35%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 38%, rgba(255,255,255,0.3) 0%, transparent 100%);
}

/* Gold light beam */
.beam {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, transparent 0%, rgba(200,137,58,0.3) 50%, transparent 100%);
  filter: blur(8px);
  animation: beam-pulse 4s ease-in-out infinite;
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  animation: hero-in 1.2s ease-out forwards;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'DM Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.3rem;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.5s forwards;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-title-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.7s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease-out 1.1s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--ocean);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-primary:hover::after { background: rgba(255,255,255,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,137,58,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(200,137,58,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(200,137,58,0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── NUMBERS STRIP ────────────────────────────────────── */
.numbers-strip {
  background: var(--gold);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.number-item {
  text-align: center;
}
.number-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--ocean);
  line-height: 1;
}
.number-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.65);
  margin-top: 0.2rem;
}

/* ── SECTIONS ────────────────────────────────────────── */
.section { 
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 4rem); 
}

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ocean);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── PER CHI ─────────────────────────────────────────── */
.perchi {
  background: var(--ocean);
  color: var(--white);
}
.perchi .section-title { color: var(--white); }
.perchi .section-title em { color: var(--gold); }

.perchi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(255,255,255,0.08);
}

.perchi-card {
  background: var(--deep);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.perchi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.perchi-card:hover::before { height: 100%; }
.perchi-card:hover { background: #0F2545; }

.perchi-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.perchi-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.perchi-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── VANTAGGI ─────────────────────────────────────────── */
.vantaggi {
  background: var(--sand-light);
  max-width: 1200px;
  margin: 0 auto;
}

.vantaggi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.vantaggio-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  margin-bottom: 2rem;
}
.vantaggio-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.vantaggio-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200,137,58,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.vantaggio-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.4rem;
}
.vantaggio-text p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.6;
}

/* Comparison box */
.compare-box {
  background: var(--ocean);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 6rem;
}
.compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-label { color: rgba(255,255,255,0.5); }
.compare-val {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: var(--gold-light);
}

/* ── IL LIBRO ─────────────────────────────────────────── */
.libro {
  background: #F0E8D5;
}

.libro-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.book-cover {
  width: 220px;
  height: 340px;
  background: linear-gradient(135deg, var(--ocean) 0%, #0D2548 100%);
  position: relative;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.3), 4px 4px 0px rgba(200,137,58,0.4);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.2rem;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.book-cover:hover { transform: rotate(0deg) scale(1.02); }
.book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.book-spine {
  position: absolute;
  left: -12px; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(180deg, #0B1E38, #071428);
  box-shadow: -2px 0 8px rgba(0,0,0,0.4);
}
.book-title-cover {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.book-title-cover span { color: var(--gold); display: block; }
.book-subtitle-cover {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.book-author-cover {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.book-band {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  background: var(--gold);
  padding: 0.4rem 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--ocean);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.libro-text .section-tag { color: var(--gold); }
.libro-text .section-title { color: var(--ocean); }
.libro-text p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 540px;
}
.libro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.chip {
  padding: 0.35rem 0.9rem;
  background: rgba(10,22,40,0.08);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ocean);
  letter-spacing: 0.05em;
}

/* ── DAVIDE ───────────────────────────────────────────── */
.davide {
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}
.davide::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(200,137,58,0.06);
  line-height: 1;
  pointer-events: none;
}

.davide-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.davide-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.davide-quote em { color: var(--gold); font-style: normal; }

.davide-bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.davide-facts {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.davide-fact strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.davide-fact span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.avatar-box {
  background: var(--deep);
  border: 1px solid rgba(200,137,58,0.2);
  padding: 2.5rem;
  text-align: center;
}
.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #A0692A 100%);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.avatar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.avatar-role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.avatar-handle {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── SERVIZI ──────────────────────────────────────────── */
.servizi {
  background: var(--sand-light);
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.servizio-card {
  padding: 2.5rem;
  border: 1px solid rgba(10,22,40,0.1);
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.servizio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.servizio-card:hover::after { transform: scaleX(1); }
.servizio-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.servizio-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}
.servizio-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.8rem;
}
.servizio-desc {
  font-size: 0.88rem;
  color: #607080;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.servizio-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.servizio-link:hover { gap: 0.7rem; }

/* ── CTA FINALE ───────────────────────────────────────── */
.cta-finale {
  background: var(--gold);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-finale .section-title {
  color: var(--ocean);
  margin-bottom: 1rem;
}
.cta-finale p {
  font-size: 1rem;
  color: rgba(10,22,40,0.65);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--ocean);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-dark:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,22,40,0.3); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #060E1C;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ── CHECKLIST BOX ────────────────────────────────────── */
.checklist-box {
  margin-top: 1.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,137,58,0.35);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.checklist-icon {
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.checklist-content {
  flex: 1;
  min-width: 160px;
}

.checklist-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.checklist-title {
  color: rgba(245,237,216,0.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.checklist-btn {
  flex: 0 0 auto;
  background: var(--gold);
  color: #0A1628;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.checklist-btn:hover {
  background: var(--gold-light);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .vantaggi-layout { grid-template-columns: 1fr; }
  .compare-box { position: static; }
  .libro-layout { grid-template-columns: 1fr; text-align: center; }
  .book-cover { margin: 0 auto 2rem; }
  .davide-layout { grid-template-columns: 1fr; }
  .avatar-box { max-width: 400px; margin: 0 auto; }
  .davide-facts { justify-content: center; }
  .checklist-box { flex-direction: column; text-align: center; }
  .checklist-content { min-width: 100%; }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* LinkedIn button */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.45rem 0.9rem;
  transition: all 0.2s;
}

.linkedin-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Libro checklist box */
.libro-checklist {
  margin-top: 2rem;
  background: linear-gradient(135deg, #0D1F3C 0%, #0A1628 100%);
  border: 1px solid rgba(200,137,58,0.3);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.libro-checklist-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  background: rgba(200,137,58,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.libro-checklist-content {
  flex: 1;
  min-width: 200px;
}

.libro-checklist-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.libro-checklist-title {
  color: rgba(245,237,216,0.9);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.libro-checklist-subtitle {
  color: rgba(200,220,240,0.6);
  font-size: 0.82rem;
}

.libro-checklist-btn {
  flex: 0 0 auto;
  background: var(--gold);
  color: #0A1628;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  white-space: nowrap;
}

.libro-checklist-btn:hover {
  background: var(--gold-light);
}

/* Container utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* WordPress specific */
.wp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
