/* Recreated Offer Whey - Design System */

:root {
  --primary-color: #ff3800; /* Vibrant Orange */
  --primary-dark: #cc2d00;
  --secondary-color: #ffc400; /* Gold/Yellow */
  --accent-color: #22c55e; /* Green for success/badges */
  --bg-color: #ffffff;
  --bg-alt: #fff5eb;
  --text-color: #111111;
  --text-grey: #65676b;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  --radius: 18px;
  --radius-sm: 10px;
  --container-width: 1100px;
  --font-main: 'Manrope', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
section {
  padding: 100px 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 56, 0, 0.3);
}

.btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 56, 0, 0.4);
  background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
  background: #000;
  color: var(--white);
  text-align: center;
  padding: 60px 0 100px;
  position: relative;
}

.hero .pre-title {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.hero .video-container {
  width: 100%;
  max-width: 400px;
  position: relative;
  aspect-ratio: 9/16;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero .subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Problem Section */
.problem-section {
  background-color: #fff;
  text-align: center;
}

.problem-section h2 {
  color: #ff3800;
  font-weight: 800;
  font-size: 2rem;
}

.problem-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 30px;
}

.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.check-list li::before {
  content: "❌";
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Solution Section */
.solution-section {
  background-color: #ff3800;
  color: #fff;
  text-align: center;
}

.solution-section h2 {
  color: #fff;
  margin-bottom: 30px;
}

.solution-grid {
  max-width: 600px;
  margin: 0 auto 40px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 15px;
  border-left: 6px solid var(--secondary-color);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
}

.solution-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.btn-green {
  background-color: #22c55e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
  background-color: #16a34a;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Benefits Section (Fourth) */
.benefits-section {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.benefits-section h2.orange-title {
  color: #ff3800;
  font-style: italic;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.benefits-section h3.italic-subtitle {
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.benefits-section .check-list-white {
  list-style: none;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
}

.benefits-section .check-list-white li {
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: list-item;
}

.benefits-section .check-list-white li::marker {
  content: "✔ ";
  color: #fff;
}

.benefits-section .final-italic {
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 20px;
}

/* Recipe Showcase (Fifth) */
.showcase-section {
  background-color: #fff;
  text-align: center;
}

.showcase-section h2 {
  color: #ff3800;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 10px;
}

.showcase-section p.subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.showcase-list {
  max-width: 600px;
  margin: 0 auto;
}

.showcase-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-card img {
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.showcase-card h4 {
  color: #ff3800;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.showcase-card .kcal {
  color: #d97706; /* Gold/Yellow-ish */
  font-weight: 700;
  font-size: 0.9rem;
}

.showcase-footer {
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #fff5eb;
}

.showcase-footer p {
  color: #111;
  font-weight: 700;
  font-size: 1.2rem;
}

.showcase-footer h3 {
  color: #ff3800;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 10px 0 20px;
}

/* Bonus Section (Sixth) */
.bonus-section {
  background-color: #fff5eb;
  padding: 80px 0;
  text-align: center;
}

.bonus-section h2 {
  color: #ff3800;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 30px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-card {
  background-color: #ff7a00;
  color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-card img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.bonus-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bonus-card .btn-brinde {
  background-color: #22c55e;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section (Seventh) */
.faq-section {
  background-color: #fff;
  padding: 80px 0;
}

.faq-section h2 {
  color: #ff3800;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 30px;
}

.faq-question {
  background-color: #ff3800;
  color: #fff;
  padding: 10px 20px;
  font-weight: 800;
  font-style: italic;
  font-size: 1.2rem;
  border-radius: 4px;
}

.faq-answer {
  padding: 15px 20px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #111;
}

/* Testimonials */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-box {
  background: #f0f2f5;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-box .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-box .time {
  font-size: 0.8rem;
  color: var(--text-grey);
}

.testimonial-box .text {
  font-size: 0.95rem;
  margin: 5px 0;
}

/* Pricing Section (Eighth) */
.pricing-section {
  background-color: #fff;
  padding: 80px 0;
}

.offer-container {
  max-width: 700px;
  margin: 0 auto;
}

.offer-box {
  border: 4px solid #ff3800;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  text-align: center;
  background: #fff;
}

.offer-header {
  background-color: #ff3800;
  color: #fff;
  padding: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.offer-content {
  padding: 30px 20px;
}

.offer-content .offer-img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

.offer-content h3 {
  color: #ff3800;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.offer-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-weight: 600;
}

.offer-list li::before {
  content: "✔";
  color: #22c55e;
  font-weight: 900;
  margin-right: 10px;
}

.offer-list li.bonus::before {
  content: "🎁";
  color: #ff3800;
}

.offer-price {
  margin-bottom: 25px;
}

.offer-price .old-price {
  color: #ff3800;
  font-weight: 700;
  text-decoration: line-through;
  font-size: 1.2rem;
}

.offer-price .new-price-label {
  font-weight: 800;
  font-size: 1.3rem;
  margin: 5px 0;
}

.offer-price .price-value {
  color: #22c55e;
  font-weight: 900;
  font-size: 2.2rem;
}

.offer-price .payment-method {
  font-weight: 700;
  font-size: 1.1rem;
}

.offer-footer-seals {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1.5px solid #eee;
}

.offer-footer-seals img {
  height: 40px;
  opacity: 0.8;
}
