/* CSS Variables Set: Dark Theme with Flame/Gold Accents */
:root {
  --bg-primary: #121212;
  /* Dark background */
  --bg-secondary: #1E1E1E;
  /* Slightly lighter dark */
  --bg-tertiary: #2D2D2D;
  /* Medium dark */
  --text-main: #E0E0E0;
  /* Light text */
  --text-light: #A0A0A0;
  /* Muted text */
  --accent-color: #E8832A;
  /* Flame Orange */
  --accent-hover: #D16B19;
  /* Darker Orange */
  --accent-gold: #F4A261;
  /* Warm gold */

  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(44, 38, 33, 0.05);
  --shadow-md: 0 10px 20px rgba(44, 38, 33, 0.08);
  --shadow-lg: 0 20px 40px rgba(44, 38, 33, 0.12);
  --shadow-glow: 0 10px 30px rgba(232, 131, 42, 0.25);
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1,
h2,
h3,
h4,
.logo,
.eyebrow {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Enhancements */
.eyebrow {
  display: block;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 131, 42, 0.35);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--text-main);
}

.btn-secondary:hover {
  background: var(--text-main);
  color: var(--bg-primary);
}

.btn-outline-small {
  display: inline-block;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-outline-small:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-large {
  font-size: 1.125rem;
  padding: 1.2rem 2.5rem;
  width: 100%;
  text-align: center;
}

.btn-instagram-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #C13584;
  border-color: #C13584;
}

.btn-instagram-hero:hover {
  background: #C13584;
  color: #fff;
  border-color: #C13584;
}

.cta-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 131, 42, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(232, 131, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 131, 42, 0);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-social-icon {
  color: var(--text-main);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: var(--bg-primary);
  position: relative;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image img {
  border-radius: 12px;

  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: rotate(0) scale(1.02);
}

/* Quote Section */
.quote-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
}

.main-quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.4;
}

/* About Section */
.about {
  padding: 8rem 0;
  background: var(--bg-primary);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
  margin-top: 2rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefit-list li span {
  color: var(--text-main);
}

.benefit-list li:first-child {
  display: none;
}

/* Quick fix for markup artifact */
.benefit-list li>li {
  display: inline;
  margin: 0;
}

.benefit-list li:nth-child(n+2) {
  color: var(--accent-color);
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* Who is it for Section */
.who-is-it-for {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 131, 42, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: var(--bg-tertiary);
  position: relative;
}

.pricing-container {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--bg-secondary);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 5px solid var(--accent-color);
}

.pricing-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.price {
  color: var(--text-main);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-right: 0.2rem;
}

.value {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.cents {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.secure-checkout {
  font-size: 0.9rem;
  color: #27ae60;
  margin-top: 1rem;
  font-weight: 600;
}

.includes {
  margin-top: 2rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.includes h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.includes ul {
  list-style: none;
}

.includes ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.includes ul li svg {
  color: var(--accent-color);
}

/* Guarantee Section */
.guarantee {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
  color: #fff;
  text-align: center;
  position: relative;
}

.guarantee-container {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.guarantee-icon {
  margin-bottom: 1.5rem;
}

.guarantee h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.guarantee p {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--bg-primary);
}

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

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* Footer Section */
.footer {
  background: #2C2621;
  color: #E2DBD4;
  padding: 4rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.8rem;
}

.footer a {
  color: #E2DBD4;
}

.footer a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  background: #1F1B17;
  font-size: 0.9rem;
}

/* SVG Shape dividers */
.custom-shape-divider-bottom,
.custom-shape-divider-top {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom {
  bottom: -1px;
}

.custom-shape-divider-top {
  top: -1px;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom svg,
.custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-fill {
  fill: currentColor;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive Media Queries */
@media (max-width: 992px) {

  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .pricing-card {
    padding: 3rem 2rem;
  }
}