/* ═══════════════════════════════════════════════════════════════════
   YURI SANTINELI — LEGIÃO SANTINELI
   Landing Page Premium | Tema Italiano Escuro
   ═══════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────
   DESIGN TOKENS / CSS VARIABLES
─────────────────────────────────────────────────────────────────── */
:root {
  /* Cores da Bandeira Italiana */
  --italy-green:    #009246;
  --italy-green-lt: #00b355;
  --italy-green-dk: #006631;
  --italy-white:    #f5f5f0;
  --italy-red:      #ce2b37;
  --italy-red-lt:   #e83542;
  --italy-red-dk:   #9a1f29;

  /* Backgrounds escuros — look premium */
  --bg-darkest:  #080a0c;
  --bg-dark:     #0d1014;
  --bg-mid:      #141920;
  --bg-card:     #1a2030;
  --bg-card-hover: #202840;

  /* Acentos/dourado para hero e número */
  --gold:       #c9a84c;
  --gold-lt:    #e0c070;

  /* Textos */
  --text-primary:   #f0f0e8;
  --text-secondary: #b0b8c0;
  --text-muted:     #6a7585;
  --text-white:     #ffffff;

  /* Fontes */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Raleway', sans-serif;

  /* Espaçamentos */
  --section-pad: 100px 0;
  --container-max: 1280px;
  --container-pad: 0 40px;

  /* Bordas e sombras */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-glow-green: 0 0 30px rgba(0,146,70,0.3);
  --shadow-glow-red:   0 0 30px rgba(206,43,55,0.3);

  /* Transições */
  --trans-fast: 0.2s ease;
  --trans-med:  0.35s ease;
  --trans-slow: 0.55s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ───────────────────────────────────────────────────────────────────
   UTILITY CLASSES
─────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.highlight-green { color: var(--italy-green-lt); }
.highlight-red   { color: var(--italy-red-lt); }
.highlight-white { color: var(--italy-white); }
.text-green      { color: var(--italy-green-lt); font-weight: 600; }
.text-red        { color: var(--italy-red-lt); font-weight: 600; }
.text-white-em   { color: var(--italy-white); font-weight: 600; }
.text-italy      { 
  background: linear-gradient(90deg, var(--italy-green), var(--italy-white), var(--italy-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-muted));
}
.label-line:last-child {
  background: linear-gradient(90deg, var(--text-muted), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────────
   BUTTONS
─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.08);
  transition: left var(--trans-med);
}
.btn:hover::before { left: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--italy-green-dk), var(--italy-green));
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0,146,70,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--italy-green), var(--italy-green-lt));
  box-shadow: 0 6px 30px rgba(0,146,70,0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn-large  { padding: 18px 44px; font-size: 1rem; }
.btn-xlarge { padding: 22px 56px; font-size: 1.1rem; font-weight: 600; }

.btn-whatsapp {
  background: linear-gradient(135deg, #128c3e, #25d366);
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #128c3e);
  box-shadow: 0 6px 36px rgba(37,211,102,0.65);
  transform: translateY(-3px) scale(1.02);
}
.btn-whatsapp i { font-size: 1.3em; }

/* ───────────────────────────────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--trans-med);
}

.navbar.scrolled {
  background: rgba(8,10,12,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-placeholder {
  width: 52px;
  height: 52px;
  position: relative;
  overflow: hidden;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-placeholder.logo-fallback .logo-img { display: none; }
.logo-fallback-text {
  display: none;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--italy-green), var(--italy-white), var(--italy-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-placeholder.logo-fallback .logo-fallback-text { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--italy-green);
  transition: width var(--trans-med);
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--italy-green-dk), var(--italy-green)) !important;
  color: var(--text-white) !important;
  border-radius: var(--radius-sm) !important;
  transition: all var(--trans-med) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(0,146,70,0.5) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--trans-med);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────────────────────────────────────────────────────────────────
   ITALY STRIPES DECORATION
─────────────────────────────────────────────────────────────────── */
.italy-stripes {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  display: flex;
  flex-direction: column;
  z-index: 5;
  pointer-events: none;
}
.stripe { flex: 1; }
.stripe-green { background: var(--italy-green); opacity: 0.8; }
.stripe-white { background: var(--italy-white); opacity: 0.5; }
.stripe-red   { background: var(--italy-red);   opacity: 0.8; }

/* ───────────────────────────────────────────────────────────────────
   HERO SECTION
─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--bg-darkest);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Gradient radial background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: 35%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,146,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(206,43,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── HERO TEXT (esquerda) ── */
.hero-text { padding-right: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(206,43,55,0.12);
  border: 1px solid rgba(206,43,55,0.3);
  color: var(--italy-red-lt);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-icon { font-size: 1rem; }

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.title-line-small {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.title-line-big {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--text-white);
}
.title-line-big em { font-style: normal; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--text-white); }

/* Pilares */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pillar i { font-size: 1rem; }
.pillar-green { 
  background: rgba(0,146,70,0.15); 
  border: 1px solid rgba(0,146,70,0.4);
  color: var(--italy-green-lt);
}
.pillar-white { 
  background: rgba(245,245,240,0.08); 
  border: 1px solid rgba(245,245,240,0.25);
  color: var(--italy-white);
}
.pillar-red { 
  background: rgba(206,43,55,0.15); 
  border: 1px solid rgba(206,43,55,0.4);
  color: var(--italy-red-lt);
}
.pillar-divider {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 700;
}

.hero-mission {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.proof-item {
  flex: 1;
  text-align: center;
}
.proof-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--italy-green-lt);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  margin: 0 16px;
}

/* ── HERO IMAGE (direita) ── */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* Decoração de frame */
.photo-frame-decoration {
  position: absolute;
  top: 20px; left: -20px;
  right: 20px; bottom: -20px;
  border: 2px solid rgba(0,146,70,0.25);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 0;
}
.photo-frame-decoration::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, 
    rgba(0,146,70,0.15) 0%, 
    transparent 40%, 
    transparent 60%, 
    rgba(206,43,55,0.15) 100%
  );
}

.hero-photo-container {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--bg-mid);
  box-shadow: var(--shadow-card);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gradient overlay at bottom of photo */
.hero-photo-container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--bg-darkest) 0%, transparent 100%);
  pointer-events: none;
}

/* Placeholder enquanto sem foto real */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border: 2px dashed rgba(255,255,255,0.12);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  color: var(--text-muted);
}
.hero-photo-container.photo-placeholder-active .hero-photo { display: none; }
.hero-photo-container.photo-placeholder-active .photo-placeholder { opacity: 1; }
.placeholder-icon i { font-size: 4rem; color: var(--text-muted); }
.photo-placeholder p { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); }
.photo-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  text-transform: uppercase;
}

.photo-badge-italy {
  position: absolute;
  bottom: 40px; left: -12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,10,12,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--italy-red);
  padding: 10px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  backdrop-filter: blur(10px);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--italy-green), transparent);
  animation: scrollAnim 2s ease infinite;
}
.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ───────────────────────────────────────────────────────────────────
   SECTION STRIPES DECORATION
─────────────────────────────────────────────────────────────────── */
.section-stripe-top,
.section-stripe-bottom {
  height: 3px;
  background: linear-gradient(90deg, 
    var(--italy-green) 0% 33%, 
    var(--italy-white) 33% 66%, 
    var(--italy-red) 66% 100%
  );
  opacity: 0.25;
}

.stripe-red-line {
  background: linear-gradient(90deg, 
    var(--italy-red) 0% 33%, 
    var(--italy-white) 33% 66%, 
    var(--italy-green) 66% 100%
  ) !important;
}

/* ───────────────────────────────────────────────────────────────────
   ABOUT SECTION
─────────────────────────────────────────────────────────────────── */
.about {
  padding: var(--section-pad);
  background: var(--bg-dark);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

/* About Visual */
.about-visual { position: relative; }

.about-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card), var(--shadow-glow-green);
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  border: 2px dashed rgba(255,255,255,0.1);
  color: var(--text-muted);
}
.about-photo-placeholder i { font-size: 5rem; }

.about-italy-tag {
  position: absolute;
  top: 20px; right: -12px;
  background: var(--italy-red);
  color: white;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: 0 4px 16px rgba(206,43,55,0.4);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--trans-med);
}
.credential-item:hover {
  border-color: rgba(0,146,70,0.3);
  color: var(--text-primary);
}
.credential-item i {
  color: var(--italy-green-lt);
  font-size: 0.95rem;
  width: 16px;
  flex-shrink: 0;
}

/* About Text */
.about-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-lead strong { color: var(--text-white); }

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body strong { color: var(--text-primary); }
.about-body em { font-style: italic; color: var(--italy-white); opacity: 0.75; }

.about-quote {
  position: relative;
  padding: 28px 28px 28px 36px;
  background: var(--bg-card);
  border-left: 4px solid var(--italy-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.quote-mark {
  position: absolute;
  top: -10px; left: 12px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--italy-green);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}
.about-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-quote cite {
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--italy-green-lt);
  text-transform: uppercase;
  font-style: normal;
}

/* ───────────────────────────────────────────────────────────────────
   SERVICES SECTION
─────────────────────────────────────────────────────────────────── */
.services {
  padding: var(--section-pad);
  background: var(--bg-darkest);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.card-green::before { background: var(--italy-green); }
.card-red::before   { background: var(--italy-red); }
.card-white::before { background: var(--italy-white); }
.card-gold::before  { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }

.card-green:hover { border-color: rgba(0,146,70,0.3); box-shadow: var(--shadow-glow-green); }
.card-red:hover   { border-color: rgba(206,43,55,0.3); box-shadow: var(--shadow-glow-red); }
.card-white:hover { border-color: rgba(245,245,240,0.2); }
.card-gold:hover  { border-color: rgba(201,168,76,0.3); }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon-wrap {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
}
.icon-green { background: rgba(0,146,70,0.15); color: var(--italy-green-lt); }
.icon-red   { background: rgba(206,43,55,0.15); color: var(--italy-red-lt); }
.icon-white { background: rgba(245,245,240,0.1); color: var(--italy-white); }
.icon-gold  { background: rgba(201,168,76,0.15); color: var(--gold-lt); }

.card-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.card-description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
}
.card-bullets li:hover { color: var(--text-primary); }
.card-green .card-bullets li i { color: var(--italy-green-lt); }
.card-red   .card-bullets li i { color: var(--italy-red-lt); }
.card-white .card-bullets li i { color: var(--italy-white); }
.card-gold  .card-bullets li i { color: var(--gold-lt); }

/* ───────────────────────────────────────────────────────────────────
   RESULTS SECTION
─────────────────────────────────────────────────────────────────── */
.results {
  padding: var(--section-pad);
  background: var(--bg-dark);
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-med);
}
.result-card:hover {
  border-color: rgba(206,43,55,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-red);
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.result-img-wrap { position: relative; }

.result-img-placeholder {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.before-placeholder {
  background: var(--bg-mid);
  color: var(--text-muted);
}
.after-placeholder {
  background: rgba(0,146,70,0.12);
  color: var(--italy-green-lt);
  border: 1px solid rgba(0,146,70,0.2);
}
.result-img-placeholder i { font-size: 1.5rem; opacity: 0.4; }

.result-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.result-label {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 4px;
}
.label-before {
  background: rgba(0,0,0,0.7);
  color: var(--text-muted);
}
.label-after {
  background: rgba(0,146,70,0.8);
  color: var(--text-white);
}

.result-info {
  padding: 16px;
}
.result-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 4px;
}
.result-stats {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--italy-green-lt);
  margin-bottom: 8px;
}
.result-quote {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.results-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
}
.results-disclaimer i { color: var(--text-muted); }

/* ───────────────────────────────────────────────────────────────────
   CTA SECTION
─────────────────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad);
  background: var(--bg-darkest);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,146,70,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(206,43,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-stripes {
  top: 0; bottom: 0;
  right: 0;
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-content { max-width: 760px; margin: 0 auto; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(206,43,55,0.15);
  border: 1px solid rgba(206,43,55,0.4);
  color: var(--italy-red-lt);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: pulse-badge 2.5s ease infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(206,43,55,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(206,43,55,0); }
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-pillars-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-pillars-mini span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.cta-pillars-mini i { color: var(--italy-green-lt); }

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.cta-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ───────────────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-italy-bar {
  display: flex;
  height: 4px;
}
.bar-green { flex: 1; background: var(--italy-green); }
.bar-white { flex: 1; background: var(--italy-white); opacity: 0.4; }
.bar-red   { flex: 1; background: var(--italy-red); }

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 60px 0 40px;
}

.footer-brand { max-width: 300px; }

.footer-logo {
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.footer-logo-fallback {
  display: none;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--italy-green), var(--italy-white), var(--italy-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--trans-med);
}
.footer-social a:hover {
  background: rgba(0,146,70,0.2);
  border-color: var(--italy-green);
  color: var(--italy-green-lt);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--trans-fast);
}
.footer-links a:hover { color: var(--italy-green-lt); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact i { 
  width: 16px;
  color: var(--italy-red-lt);
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────────────────────────────
   BACK TO TOP
─────────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--italy-green-dk), var(--italy-green));
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,146,70,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans-med);
  transform: translateY(10px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,146,70,0.6);
}

/* ───────────────────────────────────────────────────────────────────
   ANIMATIONS
─────────────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fadeInLeft"]  { transform: translateX(-40px); }
[data-animate="fadeInRight"] { transform: translateX(40px); }
[data-animate="fadeInUp"]    { transform: translateY(40px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* ───────────────────────────────────────────────────────────────────
   MOBILE NAV
─────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(8,10,12,0.98);
    backdrop-filter: blur(20px);
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right var(--trans-slow);
    border-left: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
}

/* ───────────────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-container { 
    grid-template-columns: 1fr 360px; 
    gap: 50px; 
  }
  .about-content { grid-template-columns: 300px 1fr; gap: 50px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --container-pad: 0 24px; }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 48px;
  }
  .hero-text { padding-right: 0; text-align: center; }
  .hero-badge { justify-content: center; }
  .hero-pillars { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { max-width: 500px; margin: 0 auto; }
  .hero-image { order: -1; }
  .hero-photo-wrapper { max-width: 280px; margin: 0 auto; }

  .about-content { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-pillars-mini { gap: 16px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 70px 0; }

  .results-grid { grid-template-columns: 1fr; }

  .hero-pillars { flex-direction: column; gap: 10px; }
  .pillar-divider { display: none; }

  .hero-social-proof { flex-direction: column; gap: 16px; padding: 20px; }
  .proof-divider { width: 60px; height: 1px; margin: 0 auto; }

  .footer-bottom { text-align: center; }

  .btn-xlarge { padding: 18px 32px; font-size: 0.95rem; }
}

/* ───────────────────────────────────────────────────────────────────
   SCROLLBAR CUSTOM
─────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { 
  background: linear-gradient(to bottom, var(--italy-green), var(--italy-red));
  border-radius: 3px;
}

/* ───────────────────────────────────────────────────────────────────
   SELECTION
─────────────────────────────────────────────────────────────────── */
::selection {
  background: rgba(0,146,70,0.35);
  color: var(--text-white);
}
