/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 0, 0, 0.8), rgba(51, 0, 0, 0.8)), url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
}

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

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #e74c3c;
    font-weight: 400;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.cta-button.final {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    font-size: 1.1em;
    padding: 20px 40px;
}

.cta-button.final:hover {
    background: linear-gradient(45deg, #b8860b, #9a7209);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Invisible Section */
.invisible-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
}

.invisible-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.invisible-item {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.invisible-item.reverse {
    flex-direction: row-reverse;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.icon {
    font-size: 3em;
}

.content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #e74c3c;
}

.content p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

.call-to-action {
    text-align: center;
    margin-top: 60px;
}

.call-to-action p {
    font-size: 1.5em;
    font-style: italic;
    color: #e74c3c;
    font-weight: 600;
}

/* Method Section */
.method-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.method-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
}

.method-item:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.method-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.method-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #fff;
}

.method-item p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* What You Do Section */
.what-you-do-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a0000 100%);
}

.action-list {
    max-width: 800px;
    margin: 0 auto;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.action-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #e74c3c;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    width: 60px;
}

.action-content h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #fff;
}

.action-content p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* Results Section - Timeline */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}

.results-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.results-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 10px;
}

.timeline-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #e74c3c;
}

.timeline-content p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* Target Section - Checklist */
.target-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
}

.target-checklist {
    max-width: 900px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.check-content h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #fff;
}

.check-content p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* Receive Section */
.receive-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.receive-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
}

.receive-item:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.receive-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.receive-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #e74c3c;
}

.receive-item p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Bonuses Section */
.bonuses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a1a1a 0%, #3a0000 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.bonus-item {
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #d4af37;
    margin-top: 20px;
}

.bonus-item p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.guarantee-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.guarantee-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #e74c3c;
}

.guarantee-item p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.9;
}

.final-cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero h2 {
        font-size: 1.8em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .section-header h2 {
        font-size: 2.2em;
    }
    
@media (max-width: 768px) {
  .invisible-item,
  .invisible-item.reverse {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    gap: 30px;
  }

  .icon-wrapper {
    order: 0 !important;
  }

  .content {
    order: 1 !important;
  }
}
    
    .icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .icon {
        font-size: 2.5em;
    }
    
    .method-grid,
    .receive-grid,
    .bonus-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .results-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    
    .action-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .action-number {
        width: auto;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.5em;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    section {
        padding: 60px 0;
    }
}



/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3a0000 0%, #4a0000 100%);
    text-align: center;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.offer-summary {
    font-size: 1.4em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #fff;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.offer-list li {
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 30px;
    position: relative;
    color: #fff;
}

.offer-list li::before {
    content: ">"; /* Using a simple arrow for now, can be replaced with an icon */
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.offer-cta {
    font-size: 1.5em;
    padding: 25px 50px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .offer-content {
        padding: 30px;
    }
    
    .offer-summary {
        font-size: 1.2em;
    }
    
    .offer-list li {
        font-size: 1em;
    }
    
    .offer-cta {
        font-size: 1.2em;
        padding: 20px 40px;
    }
}


.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #330000 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.4);
}

.testimonial-item img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.caption {
  font-size: 1em;
  font-style: italic;
  opacity: 0.85;
  color: #fff;
}

.section-cta.centered {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}




.offer-benefits {
  margin: 40px 0;
}

.offer-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.7;
}

.offer-list li {
  margin-bottom: 15px;
}

.anchor-value {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #fff;
  opacity: 0.85;
}

.anchor-value p {
  margin-bottom: 10px;
}


.offer-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
  color: #fff;
}

.offer-section .section-header h2 {
  font-size: 2.8em;
  color: #d4af37;
}

.offer-section .section-header p {
  font-size: 1.3em;
  opacity: 0.9;
  margin-top: 10px;
}

.offer-benefits {
  margin: 40px 0;
}

.offer-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.3em;
  line-height: 2;
}

.offer-list li {
  margin-bottom: 15px;
}

.anchor-value {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
  opacity: 0.85;
}

.anchor-value em {
  font-style: italic;
  font-size: 1.1em;
}

.anchor-value strong {
  font-size: 1.3em;
  color: #fff;
}

.offer-cta.centered {
  text-align: center;
  margin-top: 50px;
}




#hero-title {
  white-space: nowrap;
  overflow: hidden;
}





.product-video-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
  color: #fff;
}

.product-video {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}