@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --bg-dark: #09090b;
  --bg-card: #18181b;
  --bg-card-hover: #27272a;
  --accent-gold: #d4af37;
  --accent-gold-hover: #b5952f;
  --accent-red: #e53935;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --border-color: #27272a;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

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

/* Header / Notice */
.top-notice {
  background-color: var(--accent-red);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 100;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #000;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-pulsing {
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--accent-gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  padding: 60px 0 120px 0;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at right center, rgba(212,175,55,0.1) 0%, rgba(9,9,11,1) 60%);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
  background: linear-gradient(to right, var(--accent-gold), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 0 2px var(--border-color);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Pain Section */
.pain-section {
  background-color: #000;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-red);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Steps Section */
.steps-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-gold);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 900;
  margin-right: 30px;
  line-height: 1;
  opacity: 0.5;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMDkwOTBiIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiMxODE4MWIiPjwvcmVjdD4KPC9zdmc+');
}

.benefits .grid-cards .card .card-icon {
  color: var(--accent-gold);
}

/* Carousel / Examples */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 100%;
  touch-action: pan-y;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

/* Carousel Buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-gold);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s, color 0.3s;
}

.carousel-button:hover {
  background: rgba(212, 175, 55, 0.8);
  color: #000;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 5px var(--accent-gold);
}

/* Testimonials */
.testimonials {
  background-color: #000;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '\"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--border-color);
  line-height: 1;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--accent-gold);
}

.user-info h4 {
  font-size: 1.1rem;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Guarantee Section */
.guarantee {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #1a1a1a, #0d0d0d);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 900px;
}

.guarantee-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.guarantee h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Offer Section */
.offer {
  text-align: center;
  padding: 100px 0;
}

.price-box {
  background: var(--bg-card);
  border: 2px solid var(--accent-red);
  padding: 50px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 50px rgba(229, 57, 53, 0.15);
}


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

.price-new {
  font-size: 5.5rem;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 30px;
  line-height: 1;
  font-weight: 900;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  animation: megaPricePulse 1s infinite alternate ease-in-out;
}

@keyframes megaPricePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.8)); }
}

/* Timer */
.timer-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.time-box {
  background: #000;
  padding: 15px;
  border-radius: 8px;
  min-width: 80px;
}

.time-box span {
  display: block;
}

.time-num {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-primary);
}

.time-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* FAQ Section */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 300px;
}

/* Footer / CTA Final */
footer {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000;
  border-top: 1px solid var(--border-color);
}

footer h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.copyright {
  margin-top: 60px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-image img {
    transform: none;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .price-box {
    margin: 40px auto 0;
    padding: 40px 20px;
  }
  

  .price-new {
    font-size: 4.5rem;
  }
  
  .guarantee {
    padding: 40px 20px;
    margin: 40px 20px;
  }
  
}
