.elementor-1543 .elementor-element.elementor-element-75d7744{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f134b45 *//* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #1a7a4a;
  --green-light: #e8f5ee;
  --green-mid: #2da05f;
  --accent: #f4a623;
  --dark: #111c14;
  --gray: #5a6b60;
  --light-gray: #f2f5f3;
  --white: #ffffff;
  --border: #d4e3da;
  --red-soft: #fff0f0;
  --red: #d94040;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'DM Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.8;
  font-size: 17px;
}

/* ===========================
   GOOGLE FONTS IMPORT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===========================
   TOP BANNER
=========================== */
.top-banner {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===========================
   HEADER / HERO
=========================== */
.hero {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(26, 122, 74, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 28px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===========================
   STAT STRIP
=========================== */
.stat-strip {
  background-color: var(--green);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 13px;
  opacity: 0.85;
  font-weight: 500;
}

/* ===========================
   MAIN LAYOUT
=========================== */
.page-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* ===========================
   SECTION HEADINGS
=========================== */
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

h3 {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

p {
  margin-bottom: 22px;
  color: #2e3d33;
}

/* ===========================
   PULL QUOTE
=========================== */
.pull-quote {
  border-left: 5px solid var(--green);
  margin: 44px 0;
  padding: 24px 32px;
  background-color: var(--green-light);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.6;
}

.pull-quote cite {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray);
  font-style: normal;
  font-weight: 600;
}

/* ===========================
   COST CALCULATOR BOX
=========================== */
.cost-box {
  background-color: var(--red-soft);
  border: 1.5px solid #f5c5c5;
  border-radius: 12px;
  padding: 36px 40px;
  margin: 40px 0;
}

.cost-box h3 {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0cccc;
  font-family: var(--font-ui);
  font-size: 15px;
}

.cost-row:last-of-type {
  border-bottom: none;
}

.cost-row .label {
  color: var(--gray);
}

.cost-row .amount {
  font-weight: 700;
  color: var(--red);
  font-size: 17px;
}

.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px solid var(--red);
  font-family: var(--font-ui);
}

.cost-total .label {
  font-weight: 700;
  font-size: 16px;
}

.cost-total .amount {
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  font-family: var(--font-heading);
}

/* ===========================
   FEATURE CARDS
=========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 122, 74, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ===========================
   COMPARISON TABLE
=========================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0;
  font-family: var(--font-ui);
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.comparison-table thead {
  background-color: var(--dark);
  color: var(--white);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

.comparison-table td:not(:first-child) {
  text-align: center;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--light-gray);
}

.yes {
  color: var(--green);
  font-size: 18px;
}

.no {
  color: var(--red);
  font-size: 18px;
}

/* ===========================
   SCENARIO BOXES
=========================== */
.scenario-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.scenario {
  padding: 28px 24px;
  border-radius: 10px;
}

.scenario.bad {
  background-color: var(--red-soft);
  border: 1.5px solid #f5c5c5;
}

.scenario.good {
  background-color: var(--green-light);
  border: 1.5px solid #a8d9bc;
}

.scenario-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.scenario.bad .scenario-title { color: var(--red); }
.scenario.good .scenario-title { color: var(--green); }

.scenario p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  color: #2e3d33;
}

/* ===========================
   NUMBERED LIST STEPS
=========================== */
.steps-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.steps-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
}

.step-content h3 {
  margin-bottom: 6px;
  margin-top: 8px;
}

.step-content p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--gray);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.testimonial {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}

.stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 15px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-item p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 0;
}

/* ===========================
   CTA BOX
=========================== */
.cta-box {
  background-color: var(--dark);
  color: var(--white);
  border-radius: 14px;
  padding: 56px 48px;
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(26, 122, 74, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-button:hover {
  background-color: var(--green-mid);
  transform: translateY(-2px);
}

.cta-note {
  display: block;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===========================
   DIVIDER
=========================== */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 52px 0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray);
}

.footer a {
  color: var(--green);
  text-decoration: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 640px) {
  .scenario-pair {
    grid-template-columns: 1fr;
  }

  .cost-box {
    padding: 24px 20px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .stat-item {
    flex-basis: 50%;
  }

  .hero {
    padding: 56px 20px 50px;
  }
}/* End custom CSS */