/* SFEA Labs Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&family=Questrial&display=swap');

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

body {
  font-family: 'Questrial', sans-serif;
  background: #FAF7F2;
  color: #151515;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #FFFDFB 0%, #FAF7F2 100%);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  background: #FFCFD3;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Rufina', serif;
  font-size: 48px;
  font-weight: 700;
  color: #333333;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 20px;
  color: #151515;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 18px 48px;
  background: #E9C236;
  color: #FFFFFF;
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #d4af2e;
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: #888888;
}

/* PROBLEM SECTION */
.problem {
  padding: 80px 24px;
  background: #FFFFFF;
}

.problem-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 32px;
  line-height: 1.25;
}

.problem p {
  font-size: 17px;
  color: #151515;
  margin-bottom: 20px;
  text-align: left;
}

.problem-highlight {
  background: #FAF7F2;
  padding: 24px;
  margin-top: 32px;
  text-align: left;
}

.problem-highlight p {
  margin-bottom: 0;
  font-size: 17px;
}

/* ABOUT SECTION */
.about {
  padding: 80px 24px;
  background: #FFCFD3;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}

.about-content h2 {
  font-family: 'Rufina', serif;
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stat {
  background: #FFFFFF;
  padding: 8px 16px;
  font-size: 14px;
  color: #333333;
}

/* DATA CALLOUT */
.data-callout {
  background: #333333;
  color: #FFFFFF;
  padding: 48px 24px;
  text-align: center;
}

.data-callout-inner {
  max-width: 900px;
  margin: 0 auto;
}

.data-callout h3 {
  font-family: 'Rufina', serif;
  font-size: 24px;
  font-weight: 700;
  color: #E9C236;
  margin-bottom: 32px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.data-item {
  text-align: center;
}

.data-number {
  font-family: 'Rufina', serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}

.data-label {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.4;
}

/* WHO IT'S FOR */
.who {
  padding: 80px 24px;
  background: #FAF7F2;
}

.who-inner {
  max-width: 800px;
  margin: 0 auto;
}

.who h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.who-item {
  background: #FFFFFF;
  padding: 24px;
  border-left: 4px solid #E9C236;
}

.who-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.who-note {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
  color: #555555;
}

/* NOT FOR YOU */
.not-for {
  padding: 60px 24px;
  background: #FFFFFF;
}

.not-for-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.not-for h3 {
  font-family: 'Rufina', serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
}

.not-for-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.not-for-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #666666;
}

.not-for-item span:first-child {
  color: #999999;
  font-weight: 700;
}

/* MID CTA */
.mid-cta {
  padding: 60px 24px;
  background: #FAF7F2;
  text-align: center;
}

.mid-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.mid-cta p {
  font-size: 18px;
  color: #555555;
  margin-bottom: 24px;
}

/* WHAT'S INSIDE */
.inside {
  padding: 80px 24px;
  background: #FFFFFF;
}

.inside-inner {
  max-width: 880px;
  margin: 0 auto;
}

.inside > .inside-inner > h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 56px;
}

.feature-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #E8E2D9;
}

.feature-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #FFCFD3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.feature-title-wrap {
  flex: 1;
}

.feature-title {
  font-family: 'Rufina', serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.feature-subtitle {
  font-size: 14px;
  color: #888888;
  margin-top: 4px;
}

.feature-body {
  padding-left: 76px;
}

.feature-body p {
  font-size: 16px;
  color: #444444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  font-size: 15px;
  color: #444444;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.feature-list li:before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: #E9C236;
  font-weight: 700;
}

/* AI DEMO BOX */
.ai-demo-box {
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 40px;
  margin-top: 24px;
  margin-left: 76px;
  border-left: 4px solid #E9C236;
}

.ai-demo-box h4 {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #E9C236;
  margin-bottom: 16px;
}

.ai-demo-box p {
  font-size: 15px;
  color: #CCCCCC;
  margin-bottom: 16px;
  line-height: 1.7;
}

.ai-demo-box p:last-child {
  margin-bottom: 0;
}

.ai-demo-box strong {
  color: #FFFFFF;
}

/* COMMUNITY POWER BOX */
.community-box {
  background: #FFCFD3;
  padding: 40px;
  margin-top: 24px;
  margin-left: 76px;
}

.community-box h4 {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.community-box p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.community-box p:last-child {
  margin-bottom: 0;
}

/* SECRET WEAPON BOX */
.secret-box {
  background: #333333;
  color: #FFFFFF;
  padding: 40px;
  margin-top: 24px;
  margin-left: 76px;
}

.secret-box h4 {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #E9C236;
  margin-bottom: 16px;
}

.secret-box p {
  font-size: 15px;
  color: #CCCCCC;
  margin-bottom: 16px;
  line-height: 1.7;
}

.secret-box p:last-child {
  margin-bottom: 0;
}

.secret-box strong {
  color: #FFFFFF;
}

/* EA 101 EXCLUSIVE BOX */
.exclusive-box {
  background: #FFCFD3;
  padding: 40px;
  margin-top: 24px;
  margin-left: 76px;
}

.exclusive-box h4 {
  font-family: 'Rufina', serif;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.exclusive-box p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.exclusive-box p:last-child {
  margin-bottom: 0;
}

/* FOUNDING MEMBER SECTION */
.founding {
  padding: 80px 24px;
  background: #333333;
  color: #FFFFFF;
}

.founding-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founding h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.founding > .founding-inner > p {
  font-size: 17px;
  color: #CCCCCC;
  margin-bottom: 48px;
}

.founding-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.perk {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.perk-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.perk h4 {
  font-family: 'Rufina', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.perk p {
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1.6;
}

.founding-note {
  margin-top: 48px;
  padding: 24px;
  background: #E9C236;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 24px;
  background: #FAF7F2;
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-item {
  background: #FFFFFF;
  padding: 8px;
  border: 1px solid #E8E2D9;
}

.testimonial-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* PRICING */
.pricing {
  padding: 80px 24px;
  background: #FFFFFF;
  text-align: center;
}

.pricing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pricing h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 17px;
  color: #666666;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  background: #FAF7F2;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #E8E2D9;
  position: relative;
}

.price-card.featured {
  border-color: #E9C236;
}

.price-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E9C236;
  color: #FFFFFF;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 16px;
}

.price-label {
  font-size: 14px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Rufina', serif;
  font-size: 56px;
  font-weight: 700;
  color: #333333;
}

.price-amount span {
  font-size: 20px;
  font-weight: 400;
  color: #888888;
}

.price-period {
  font-size: 14px;
  color: #888888;
  margin-bottom: 8px;
}

.price-savings {
  font-size: 14px;
  color: #E9C236;
  font-weight: 700;
  margin-bottom: 24px;
  min-height: 20px;
}

.price-features {
  text-align: left;
  margin-bottom: 24px;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  color: #333333;
}

.price-feature:last-child {
  border-bottom: none;
}

.check {
  color: #E9C236;
  font-weight: 700;
  font-size: 16px;
}

.btn-dark {
  display: inline-block;
  width: 100%;
  padding: 16px 40px;
  background: #333333;
  color: #FFFFFF;
  font-family: 'Questrial', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: #555555;
}

.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: #888888;
}

.value-stack {
  padding: 32px;
  background: #FAF7F2;
  border: 1px solid #E8E2D9;
  text-align: left;
}

.value-stack h4 {
  font-family: 'Rufina', serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  text-align: center;
}

.value-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #E8E2D9;
}

.value-item:last-child {
  border-bottom: none;
}

.value-item span:last-child {
  color: #888888;
}

.value-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #333333;
  font-size: 16px;
  font-weight: 700;
}

.value-total span:last-child {
  color: #E9C236;
}

/* FAQ */
.faq {
  padding: 80px 24px;
  background: #FAF7F2;
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid #E8E2D9;
  padding: 24px;
  background: #FFFFFF;
  margin-bottom: 16px;
}

.faq-q {
  font-family: 'Rufina', serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
  padding: 80px 24px;
  background: #FFFFFF;
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Rufina', serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 17px;
  color: #555555;
  margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }

  .data-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .feature-header {
    flex-direction: column;
    gap: 12px;
  }

  .feature-body {
    padding-left: 0;
  }

  .ai-demo-box,
  .community-box,
  .secret-box,
  .exclusive-box {
    margin-left: 0;
  }

  .founding-perks {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 48px;
  }
}
