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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 19px;
  line-height: 1.8;
  color: #2C2C2C;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C2C2C;
}

h1 {
  font-size: 64px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #2C5530;
  margin: 24px auto 0;
}

h3 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

/* Container Widths */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Logo */
.site-header {
  background: #FAF9F6;
  padding: 32px 0 24px;
  border-bottom: 1px solid #D0CCC4;
}

.logo {
  text-align: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #2C5530;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Buttons */
.btn-cta {
  display: inline-block;
  background: #2C5530;
  color: #FAF9F6;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 48px;
  min-height: 60px;
  border: 2px solid #2C5530;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: #234426;
  border-color: #234426;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.btn-large {
  font-size: 21px;
  padding: 22px 56px;
  min-height: 68px;
}

.btn-mobile {
  width: 100%;
  font-size: 16px;
}

/* Section Spacing */
section {
  padding: 120px 0;
}

section:nth-child(odd) {
  background: #FAF9F6;
}

section:nth-child(even) {
  background: #E8E4DC;
}

/* HERO SECTION */
.hero {
  background: #FAF9F6 !important;
  color: #2C2C2C;
  text-align: center;
  padding: 120px 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: #2C2C2C;
  font-size: 64px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-text {
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-highlight {
  font-size: 22px;
  font-weight: 600;
  color: #2C2C2C;
  margin: 48px auto 48px;
  max-width: 680px;
  line-height: 1.6;
}

.hero .btn-cta {
  margin-top: 24px;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 14px;
  color: #b0b0b0;
  margin-top: 12px;
}

/* THE PATTERN SECTION */
.pattern {
  text-align: center;
  padding: 120px 0;
  background: #E8E4DC;
}

.pattern h2 {
  margin-bottom: 40px;
}

.pattern p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pattern .emphasis {
  font-weight: 600;
  font-size: 19px;
  color: #000000;
  margin-top: 32px;
}

/* ISOLATION SECTION */
.isolation {
  background: #E8E4DC;
  text-align: center;
  padding: 120px 0;
}

.isolation h2 {
  margin-bottom: 64px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.col-card {
  background: #FFFFFF;
  padding: 48px 36px;
  border-radius: 0;
  border: 2px solid #E8E4DC;
  border-top: 3px solid #2C5530;
  text-align: center;
  transition: all 0.25s ease;
}

.col-card:hover {
  border-top-color: #234426;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.col-card h3 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: #FAF9F6;
  text-align: center;
  padding: 120px 0;
}

.testimonials-section h2 {
  margin-bottom: 24px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.testimonial {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 0;
  border: 2px solid #E8E4DC;
  border-left: 4px solid #2C5530;
  text-align: left;
  transition: all 0.25s ease;
}

.testimonial:hover {
  border-left-color: #234426;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.testimonial p {
  font-size: 19px;
  font-style: italic;
  line-height: 1.8;
  color: #2C2C2C;
  margin: 0;
}

.social-proof {
  margin: 48px auto;
  padding: 36px 48px;
  background: #FFFFFF;
  border-radius: 0;
  max-width: 680px;
  border: 2px solid #E8E4DC;
  border-left: 4px solid #2C5530;
}

.social-proof p {
  margin: 0;
  color: #2C2C2C;
  font-size: 18px;
  font-weight: 600;
}

.social-proof .small {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.testimonials-section .btn-cta {
  margin-top: 32px;
}

/* HOW IT WORKS SECTION */
.how-it-works {
  background: #E8E4DC;
  padding: 120px 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  color: #2C5530;
  border: 3px solid #2C5530;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 2px 12px rgba(44, 85, 48, 0.1);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 12px;
}

.step-content p {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.step-detail {
  font-size: 15px;
  color: #666;
  font-style: italic;
}

/* WHAT YOU GET SECTION */
.what-you-get {
  background: #FAF9F6;
  padding: 120px 0;
}

.what-you-get h2 {
  text-align: center;
  margin-bottom: 64px;
}

.what-you-get h3 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

.what-you-get h3:first-of-type {
  margin-top: 0;
}

.checklist {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 64px;
}

.checklist li {
  padding: 24px 0 24px 48px;
  position: relative;
  border-bottom: 2px solid #E8E4DC;
  transition: all 0.2s ease;
}

.checklist li:hover {
  padding-left: 52px;
  background: rgba(44, 85, 48, 0.02);
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5530;
  font-size: 28px;
  font-weight: 700;
  top: 20px;
}

.checklist strong {
  display: block;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 0;
  border: 2px solid #E8E4DC;
  border-left: 3px solid #2C5530;
  transition: all 0.25s ease;
}

.bonus-card:hover {
  border-left-color: #234426;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transform: translateX(2px);
}

.bonus-card h4 {
  color: #2C2C2C;
  margin-bottom: 12px;
  font-weight: 600;
}

.bonus-card p {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0;
}

/* PRICING SECTION */
.pricing {
  background: #1A3A52 !important;
  color: #FAF9F6;
  text-align: center;
  padding: 120px 0;
}

.pricing h2 {
  color: #FAF9F6;
  margin-bottom: 48px;
}

.currency-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.currency-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #E8E4DC;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.currency-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.currency-btn.active {
  background: #FAF9F6;
  color: #1A3A52;
  border-color: #FAF9F6;
}

.price-box {
  margin: 0 auto 48px;
  max-width: 500px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
}

.price {
  font-size: 72px;
  font-weight: 700;
  color: #FAF9F6;
  margin-bottom: 0;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  display: inline-block;
}

.currency-label {
  font-size: 28px;
  font-weight: 600;
  color: #E8E4DC;
  display: inline-block;
  margin-left: 8px;
  vertical-align: baseline;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.price-desc {
  font-size: 18px;
  color: #E8E4DC;
  margin: 16px 0 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.pricing p {
  color: #E8E4DC;
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.pricing .btn-cta,
.final-cta .btn-cta {
  margin-top: 48px;
  background: #FAF9F6;
  color: #1A3A52;
}

.pricing .btn-cta:hover,
.final-cta .btn-cta:hover {
  background: #E8E4DC;
  color: #1A3A52;
}

/* WHO THIS IS FOR SECTION */
.who-this-is-for {
  background: #E8E4DC;
  padding: 120px 0;
}

.who-this-is-for h2 {
  text-align: center;
  margin-bottom: 64px;
}

.two-col-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.comparison-col h3 {
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
}

.check-list li {
  padding: 16px 0 16px 36px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5530;
  font-size: 20px;
  font-weight: 700;
}

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

.x-list {
  list-style: none;
  text-align: left;
}

.x-list li {
  padding: 16px 0 16px 36px;
  position: relative;
  font-size: 17px;
  color: #666;
}

.x-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #999;
  font-size: 20px;
  font-weight: 700;
}

/* COMPARISON TABLE SECTION */
.comparison-table-section {
  background: #FAF9F6;
  padding: 120px 0;
}

.comparison-table-section h2 {
  text-align: center;
  margin-bottom: 64px;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-col-left,
.comparison-col-right {
  padding: 40px;
  border-radius: 0;
  border: 2px solid #E8E4DC;
  background: #FFFFFF;
  transition: all 0.25s ease;
}

.comparison-col-left:hover,
.comparison-col-right:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.comparison-col-right {
  border-left: 4px solid #2C5530;
  background: #FFFFFF;
}

.comparison-table h3 {
  margin-bottom: 24px;
  text-align: center;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list.highlight li {
  font-weight: 500;
  color: #2C2C2C;
}

/* GUARANTEE SECTION */
.guarantee {
  background: #FAF9F6;
  text-align: center;
  padding: 120px 0;
}

.guarantee h2 {
  margin-bottom: 32px;
}

.guarantee p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.guarantee-detail {
  font-size: 16px;
  color: #666;
}

.guarantee-note {
  font-weight: 600;
  color: #2C2C2C;
  font-size: 17px;
}

/* FAQ SECTION */
.faq {
  background: #E8E4DC;
  padding: 120px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 64px;
}

.faq-item {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 32px;
  background: #FFFFFF;
  border: 2px solid #E8E4DC;
  border-left: 3px solid #2C5530;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-left-color: #234426;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  color: #2C2C2C;
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 600;
}

.faq-item p {
  color: #4a4a4a;
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}

/* FINAL CTA SECTION */
.final-cta {
  background: #1A3A52 !important;
  color: #FAF9F6;
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 {
  color: #FAF9F6;
  margin-bottom: 40px;
}

.final-cta p {
  color: #E8E4DC;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.final-cta .btn-cta {
  margin-top: 48px;
}

/* FOOTER */
.footer {
  background: #000000 !important;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FAF9F6;
  padding: 16px 24px;
  border-top: 1px solid #D0CCC4;
  z-index: 1000;
  display: none;
}

.mobile-sticky-cta.visible {
  display: block;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 80px 0;
    min-height: auto;
  }

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

  .hero-text {
    font-size: 18px;
  }

  .hero-highlight {
    font-size: 19px;
  }

  .pattern,
  .isolation,
  .testimonials-section,
  .how-it-works,
  .what-you-get,
  .who-this-is-for,
  .comparison-table-section,
  .guarantee,
  .faq,
  .pricing,
  .final-cta {
    padding: 80px 0;
  }

  .three-col,
  .testimonials-grid,
  .two-col,
  .two-col-comparison,
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .price {
    font-size: 48px;
  }
  
  .currency-label {
    font-size: 20px;
  }
  
  .currency-toggle {
    margin-bottom: 24px;
  }
  
  .currency-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .btn-cta {
    width: 100%;
    font-size: 16px;
  }

  .mobile-sticky-cta {
    display: block;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

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

  .container,
  .container-narrow {
    padding: 0 20px;
  }

  .col-card,
  .testimonial {
    padding: 24px;
  }
}
