/* Christmas Cash Calendar™ - CSS OTTIMIZZATO CON MODIFICHE */
:root {
  --dark-brown: #250A03;
  --dark-red: #38050E;
  --primary-red: #630C12;
  --bright-red: #7F0E12;
  --cream: #FDF1E1;
  --white: #ffffff;
  --black: #000000;
  --light-text: #666;
  --gold: #D4AF37;
}

/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-brown);
  background: var(--white);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border: none !important;
  background: transparent !important;
}

/* SOCIAL FIXED */
.social-fixed {
  position: fixed;
  top: 50px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  padding: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(99, 12, 18, 0.3);
}

.social-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: scale(1.1);
}

/* HERO SECTION CON STICKY TITLE UNICO */
.hero-section {
  min-height: 150vh;
  background: linear-gradient(135deg, var(--cream) 0%, #F5EFE1 50%, var(--white) 100%);
  position: relative;
}

.sticky-title {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(99, 12, 18, 0.1);
  margin-bottom: 2rem;
}

.mega-title {
  margin: 0;
  line-height: 0.9;
  transition: all 0.4s ease;
}

.title-christmas {
  display: block;
  font-size: clamp(2.5rem, 6vw, 6rem);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--bright-red) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-glow 3s ease-in-out infinite alternate;
  transition: all 0.4s ease;
}

.title-cash {
  display: block;
  font-size: clamp(2rem, 5vw, 5rem);
  color: var(--dark-brown);
  margin-top: -0.5rem;
  transition: all 0.4s ease;
}

/* RESPONSIVE LOGO - SINGOLA RIGA QUANDO SI RIDUCE */
@media (max-width: 768px) {
  .mega-title {
    line-height: 1.1;
  }
  
  .title-christmas {
    display: inline;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-right: 0.5rem;
  }
  
  .title-cash {
    display: inline;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-top: 0;
  }
  
  .sticky-title {
    padding: 1rem 0;
  }
}

@media (max-width: 576px) {
  .title-christmas {
    font-size: 1.6rem;
  }
  
  .title-cash {
    font-size: 1.3rem;
  }
}

@keyframes title-glow {
  0% { 
    filter: drop-shadow(0 0 10px rgba(99, 12, 18, 0.3));
  }
  100% { 
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  }
}

/* HERO CONTENT */
.hero-content {
  padding: 2rem 0 4rem;
}

.hero-subtitle {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-subtitle h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--primary-red);
  animation: bounce-in 1.5s ease-out;
}

@keyframes bounce-in {
  0% { 
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-main {
  margin: 4rem 0;
}

.hero-intro {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* HERO BENEFITS */
.hero-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(99, 12, 18, 0.1);
  border-left: 4px solid var(--primary-red);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(99, 12, 18, 0.2);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* HERO PRICE */
.hero-price {
  text-align: center;
  margin: 2rem 0;
}

.price-highlight {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary-red);
  text-shadow: 2px 2px 4px rgba(99, 12, 18, 0.2);
  animation: price-pulse 2s ease-in-out infinite alternate;
}

@keyframes price-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* HERO CTA */
.hero-cta {
  text-align: center;
  margin: 2rem 0;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--bright-red) 100%);
  color: var(--white);
  padding: 1.5rem 4rem;
  font-size: 1.3rem;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(99, 12, 18, 0.4);
}

.btn-hero:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(99, 12, 18, 0.6);
  color: var(--white);
}

.btn-urgent {
  animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(99, 12, 18, 0.4);
  }
  50% { 
    box-shadow: 0 15px 50px rgba(99, 12, 18, 0.8);
  }
}

/* HERO IMAGES */
.hero-images {
  position: relative;
  height: 500px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.overlay-image {
  position: absolute;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  transition: all 0.4s ease;
}

.overlay-image.mockup {
  top: 5%;
  right: -10%;
  width: 35%;
  z-index: 10;
  animation: float-gentle 6s ease-in-out infinite;
}

.overlay-image.contents {
  bottom: 10%;
  left: -10%;
  width: 40%;
  z-index: 15;
  animation: float-gentle 8s ease-in-out infinite 2s;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* SECTIONS */
.section {
  padding: 4rem 1rem;
}

.section-red {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: var(--white);
}

.section-cream {
  background: linear-gradient(135deg, var(--cream) 0%, #F5EFE1 100%);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 2rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* CONTENT CARDS */
.content-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(99, 12, 18, 0.15);
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(99, 12, 18, 0.25);
}

.card-highlight {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--bright-red) 100%);
  color: var(--white);
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--bright-red) 100%);
  color: var(--white);
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(99, 12, 18, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 12, 18, 0.6);
  color: var(--white);
}

/* LISTS */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
}

.cross-list {
  list-style: none;
  padding: 0;
}

.cross-list li {
  margin: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.cross-list li::before {
  content: "❌";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
}

/* HIGHLIGHT BOXES */
.highlight-box {
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.perfect-for {
  background: var(--cream);
  border-left: 4px solid var(--primary-red);
}

.not-for {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
}

.highlight-conclusion {
  background: var(--cream);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-red);
  margin: 2rem 0;
}

.highlight-conclusion p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-red);
  margin: 0;
}

/* SPECIFIC SECTIONS */
.change-card {
  background: var(--cream);
  border-left: 4px solid var(--primary-red);
}

.change-card h3 {
  color: var(--dark-brown);
}

.emphasis-change {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
  background: rgba(99, 12, 18, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.problem-content, .transformation-content {
  padding: 2rem 0;
}

.problem-points {
  margin: 2rem 0;
  font-size: 1.1rem;
}

.solution-hint {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.transformation-story p {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

.transformation-result {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.transformation-result p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0;
}

/* IMMAGINI PNG INGRANDITE */
.problem-image img {
  max-width: 120%; /* Ingrandite del 20% */
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
  transition: all 0.4s ease;
}

.change-image img {
  max-width: 130%; /* Ingrandite del 30% */
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
  transition: all 0.4s ease;
}

.transformation-image img {
  max-width: 125%; /* Ingrandite del 25% */
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
  transition: all 0.4s ease;
}

.author-image img {
  max-width: 110%; /* Leggermente ingrandita */
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(99, 12, 18, 0.3));
  transition: all 0.4s ease;
}

.problem-image img:hover,
.change-image img:hover,
.transformation-image img:hover,
.author-image img:hover {
  filter: drop-shadow(0 25px 60px rgba(99, 12, 18, 0.5));
  transform: scale(1.05);
}

/* FEEDBACK SINGOLI DISTRIBUITI */
.feedback-single {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(99, 12, 18, 0.1);
  margin: 3rem 0;
  transition: all 0.3s ease;
}

.feedback-single:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(99, 12, 18, 0.2);
}

.feedback-single .feedback-image {
  max-width: 100%;
  border-radius: 15px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

.feedback-single .feedback-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
  border-left: 4px solid var(--primary-red);
  padding-left: 1rem;
}

.feedback-single .feedback-content cite {
  font-weight: 600;
  color: var(--primary-red);
}

/* FEEDBACK SECTION - IMMAGINI NORMALI */
.feedback-grid {
  margin: 3rem 0;
}

.feedback-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(99, 12, 18, 0.1);
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.feedback-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(99, 12, 18, 0.2);
}

.feedback-image {
  max-width: 100%; /* Feedback immagini normali */
  border-radius: 15px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

.feedback-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
  border-left: 4px solid var(--primary-red);
  padding-left: 1rem;
}

.feedback-content cite {
  font-weight: 600;
  color: var(--primary-red);
}

/* CONTENT SECTIONS */
.content-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid var(--primary-red);
}

.content-section h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.final-section {
  background: var(--cream);
}

.bonus-section {
  background: linear-gradient(135deg, var(--cream) 0%, #F5EFE1 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border: 2px solid var(--primary-red);
}

.bonus-section h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

/* PRICE BOX */
.price-box {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
  border: 3px solid var(--primary-red);
}

.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--light-text);
  display: block;
  margin-bottom: 0.5rem;
}

.price-current {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red);
  display: block;
  margin: 1rem 0;
  text-shadow: 2px 2px 4px rgba(99, 12, 18, 0.3);
}

.price-reason {
  font-style: italic;
  margin: 1rem 0;
  color: var(--light-text);
}

/* MOCKUP */
.mockup-container {
  text-align: center;
  margin: 3rem 0;
}

.mockup-container img {
  max-width: 600px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.mockup-large img {
  max-width: 900px;
  width: 100%;
}

.mockup-description {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--cream);
  border-radius: 15px;
}

/* OBJECTIONS */
.objection-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border: 1px solid rgba(99, 12, 18, 0.2);
  transition: all 0.3s ease;
}

.objection-item:hover {
  box-shadow: 0 8px 25px rgba(99, 12, 18, 0.15);
  transform: translateY(-2px);
}

.objection-question {
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.objection-answer {
  line-height: 1.6;
}

/* FAQ */
.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0;
  border: 1px solid rgba(99, 12, 18, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(99, 12, 18, 0.15);
}

.faq-question {
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.faq-answer {
  line-height: 1.6;
}

/* FINAL SECTIONS */
.final-message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-message .highlight {
  color: var(--primary-red);
}

.final-message .emphasis {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-red);
  margin: 2rem 0;
}

.final-highlight {
  background: var(--cream);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-red);
}

.final-call {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.urgency-box {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.final-price {
  margin: 2rem 0;
}

.final-price .price-old {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
}

.final-price .price-current {
  font-size: 3.5rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.final-cta {
  margin: 2rem 0;
}

/* FOOTER NERO */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  margin: 2rem 0;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid var(--primary-red);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-images {
    height: 350px;
    margin-top: 2rem;
  }
  
  .overlay-image.mockup,
  .overlay-image.contents {
    display: none;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .content-card {
    padding: 2rem;
  }
  
  .btn-hero,
  .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .price-current {
    font-size: 2.5rem;
  }
  
  .social-fixed {
    top: 40px;
    right: 20px;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
  
  /* Immagini responsive su mobile - dimensioni normali */
  .problem-image img,
  .change-image img,
  .transformation-image img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0.5rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .hero-content {
    padding: 1rem 0 2rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  .feedback-item {
    padding: 1.5rem;
  }
  
  .price-box {
    padding: 2rem;
  }
  
  .mockup-large img {
    max-width: 100%;
  }
}

/* ANIMATIONS */
.animate-in {
  animation: fadeInUp 0.8s ease-out;
}

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

/* UTILITY CLASSES */
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.lead { 
  font-size: 1.2rem; 
  font-weight: 500; 
  line-height: 1.6; 
}
.emphasis { 
  font-size: 1.1rem; 
  font-weight: 600; 
  color: var(--primary-red); 
}
.solution-text { 
  font-size: 1.2rem; 
  font-weight: 600; 
}
.conclusion { 
  font-weight: 600; 
  color: var(--primary-red); 
}