@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #0A5C36;
  --dark-forest: #073C21;
  --light-mint: #F4F9F6;
  --card-green-bg: #F4F9F1;
  --card-blue-bg: #F2F6FA;
  --card-gold-bg: #FFF7ED;
  --accent-lime: #78BE20;
  --accent-gold: #E2F585;
  --gold: #FFC72C;
  --text-dark: #1A2B20;
  --text-muted: #506659;
  --border-color: #E2EAE5;
  --white: #FFFFFF;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(7, 60, 33, 0.04);
  --shadow-md: 0 10px 30px rgba(7, 60, 33, 0.06);
  --shadow-lg: 0 20px 40px rgba(7, 60, 33, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-forest);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Header & Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-forest);
  line-height: 1.1;
}

.logo-text span {
  color: #D32F2F; /* Matching the red app play-icon style logo text if needed, otherwise forest green */
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover, .nav-links a.active-link {
  color: var(--primary-green);
}

.nav-links a.active-link {
  position: relative;
}

.nav-links a.active-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-green);
  border-radius: 2px;
}

.btn-connect {
  background: var(--dark-forest);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-connect:hover {
  background: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 92, 54, 0.2);
}

/* Sections Base */
section {
  padding: 100px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-bg-light {
  background-color: var(--light-mint);
  max-width: 100%;
}

.section-bg-light > .section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card-green-bg);
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary-green);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  min-height: 90vh;
  padding: 140px 80px 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card-green-bg);
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '•';
  color: var(--accent-lime);
  font-size: 18px;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-forest);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary-green);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Bullets Row */
.hero-bullets {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.bullet-item {
  flex: 1;
  background: #F5F7F6;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
}

.bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card-green-bg);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.bullet-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.btn-solid {
  background: var(--dark-forest);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 60, 33, 0.15);
}

.btn-outline {
  background: var(--white);
  color: var(--dark-forest);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--dark-forest);
  background: #F9FAF9;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 92, 54, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-mockups-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(7, 60, 33, 0.08));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockups-img:hover {
  transform: translateY(-8px) scale(1.01);
}

/* About Us Section styles */
#about {
  padding-top: 40px;
  padding-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 92, 54, 0.12);
}

.feature-card-header {
  color: var(--dark-forest);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--card-green-bg);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Premium Mission Card on the right */
.mission-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 92, 54, 0.15);
}

.mission-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--card-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.mission-card:hover .mission-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.mission-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-forest);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.mission-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* What We Offer Section */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-card {
  border-radius: 24px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 92, 54, 0.1);
}

.offer-card.green-theme {
  background: var(--card-green-bg);
}
.offer-card.blue-theme {
  background: var(--card-blue-bg);
}
.offer-card.gold-theme {
  background: var(--card-gold-bg);
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.offer-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 64px;
}

.offer-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark-forest);
  line-height: 1.3;
  margin: 0;
}

.offer-card-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.offer-card-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.offer-card-features li .check-icon {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 16px;
}

/* Offerings Section Layout */
.offerings-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card-new {
  border-radius: 24px;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.offer-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 92, 54, 0.1);
}

.offer-card-new.green-theme {
  background: var(--card-green-bg);
}
.offer-card-new.blue-theme {
  background: var(--card-blue-bg);
}
.offer-card-new.gold-theme {
  background: var(--card-gold-bg);
}

.card-body-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-image-wrapper {
  flex: 0 0 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.card-mockup-img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(7, 60, 33, 0.06));
}

.card-mockup-img.phone-img {
  max-height: 160px;
}

.card-text-wrapper {
  flex: 1;
}

.card-text-wrapper h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark-forest);
  line-height: 1.3;
}

.card-text-wrapper p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.checklist-new {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist-new li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.check-icon {
  color: var(--primary-green);
  font-weight: 700;
}

.card-footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.btn-offer-new {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(10, 92, 54, 0.08);
  transition: all 0.3s ease;
}

.btn-offer-new:hover {
  background: var(--dark-forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 60, 33, 0.15);
}

/* Horizontal Bundle Banner Section Styling */
.bundle-offer-section {
  max-width: 100%;
  background: var(--white);
  padding: 40px 80px;
}

.bundle-banner-container {
  background: var(--dark-forest);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1024px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bundle-badge-col {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bundle-badge-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: transform 0.4s ease;
}

.bundle-banner-container:hover .bundle-badge-img {
  transform: scale(1.04) rotate(-2deg);
}

.bundle-info-col {
  flex: 1;
  text-align: left;
  color: var(--white);
}

.bundle-info-col h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.bundle-info-col h2 span {
  color: var(--accent-gold);
}

.bundle-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 20px;
}

.bundle-highlights-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-item-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.check-svg {
  color: var(--accent-gold);
}

.bundle-checkout-col {
  flex: 0 0 240px;
  display: flex;
  justify-content: flex-end;
}

.checkout-form-new {
  margin: 0;
}

.checkout-button-img-wrapper {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  display: block;
  transition: transform 0.3s ease;
}

.checkout-button-img-wrapper:hover {
  transform: translateY(-4px) scale(1.02);
}

.checkout-price-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}


/* Why Choose Us Section */
/* Why Choose Us New Grid Styles */
.why-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card-new {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.why-card-icon-new {
  font-size: 28px;
  background: var(--card-green-bg);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(10, 92, 54, 0.08);
}

/* Specific background highlight colors for icons matching design token themes */
.why-card-new:nth-child(2) .why-card-icon-new { background: var(--card-blue-bg); }
.why-card-new:nth-child(3) .why-card-icon-new { background: var(--card-gold-bg); }
.why-card-new:nth-child(4) .why-card-icon-new { background: var(--card-green-bg); }
.why-card-new:nth-child(5) .why-card-icon-new { background: var(--card-blue-bg); }
.why-card-new:nth-child(6) .why-card-icon-new { background: var(--card-gold-bg); }

.why-card-new h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 12px;
}

.why-card-new p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .why-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .why-grid-new {
    grid-template-columns: 1fr;
  }
  .why-choose-new {
    padding: 60px 20px !important;
  }
}

/* Salesforce (Join Us) Section */
.salesforce-container {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.sales-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.sales-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sales-girl-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 20px 40px rgba(7, 60, 33, 0.08));
  transition: transform 0.4s ease;
}

.sales-girl-img:hover {
  transform: translateY(-6px) scale(1.02);
}

.sales-content-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sales-action-btn-wrapper {
  text-align: left;
  margin-top: 12px;
}

.sales-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.sales-benefit-card {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  background: var(--light-mint);
}

.sales-benefit-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.sales-benefit-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.sales-audience {
  background: var(--card-green-bg);
  border: 1px solid rgba(10, 92, 54, 0.1);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.sales-audience-icon {
  font-size: 24px;
}

.sales-audience-text h4 {
  font-size: 15px;
  color: var(--dark-forest);
  margin-bottom: 4px;
}

.sales-audience-text p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* FAQs Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-green);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-forest);
}

.faq-toggle {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 24px 20px 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  transition: max-height 0.4s ease-in-out;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-channel {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-mint);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-channel-text h4 {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-channel-text p a {
  color: var(--dark-forest);
  font-weight: 700;
  font-size: 16px;
}

.contact-channel-text p a:hover {
  color: var(--primary-green);
}

.social-panel {
  background: var(--light-mint);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px;
}

.social-panel h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-forest);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14.5px;
}

.social-link:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateX(4px);
}

.social-link svg {
  color: var(--primary-green);
}

/* Footer */
footer {
  background-color: var(--dark-forest);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 80px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Products Grid Section styling */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  padding: 39px 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.product-card:hover {
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03) translateY(-6px);
  z-index: 2;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.featured-badge {
  background: var(--card-green-bg);
  color: var(--primary-green);
}

.course-badge {
  background: var(--card-blue-bg);
  color: #2b7080;
}

.tools-badge {
  background: var(--card-gold-bg);
  color: #9c7810;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.product-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.product-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.product-check-icon {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 15px;
}

.product-card-bottom {
  margin-top: auto;
}

.product-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-green);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  line-height: 1.1;
}

.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.btn-product-solid {
  background: var(--primary-green);
  color: var(--white) !important;
  border: none;
}

.btn-product-solid:hover {
  background: var(--dark-forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 92, 54, 0.15);
}

.btn-product-outline {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border-color);
}

.btn-product-outline:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--text-muted);
  color: var(--text-dark);
}

.btn-product[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-product[disabled]:hover {
  transform: none;
  box-shadow: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  nav {
    padding: 16px 40px;
  }
  
  section {
    padding: 80px 40px;
  }
  
  .section-bg-light > .section-container {
    padding: 0 40px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

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

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

  .trust-bar {
    padding: 40px 40px 10px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offerings-grid-new {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    gap: 24px;
  }

  .bundle-banner-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }

  .bundle-info-col {
    text-align: center;
  }

  .bundle-highlights-row {
    justify-content: center;
  }

  .bundle-checkout-col {
    justify-content: center;
    flex: 0 0 auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 28px;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }
  .why-choose {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .sales-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sales-girl-img {
    max-width: 300px;
  }

  .sales-action-btn-wrapper {
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none; /* Can build burger trigger if needed, but keeping simple for single page */
  }

  section {
    padding: 60px 20px;
  }
  
  .section-bg-light > .section-container {
    padding: 0 20px;
  }

  .hero-bullets {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .card-body-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-image-wrapper {
    min-height: auto;
    margin-bottom: 12px;
    flex: 0 0 auto;
  }

  .checklist-new {
    align-items: center;
  }

  .sales-benefits {
    grid-template-columns: 1fr;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Web Services Section Styles */
.web-services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
}

.web-services-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark-forest);
}

.web-services-info .intro-p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s-benefit-item {
  display: flex;
  gap: 16px;
}

.s-benefit-icon {
  font-size: 24px;
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.s-benefit-text h4 {
  font-size: 18px;
  color: var(--dark-forest);
  margin-bottom: 4px;
}

.s-benefit-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quote Form Card */
.quote-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.quote-form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--dark-forest);
}

.quote-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-forest);
}

.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--light-mint);
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.08);
}

.quote-success-msg {
  background-color: #E8F5E9;
  color: #2E7D32;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border-left: 4px solid #2E7D32;
  text-align: center;
}

.quote-error-msg {
  background-color: #FFEBEE;
  color: #C62828;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border-left: 4px solid #C62828;
  text-align: center;
}

.quote-whatsapp-hint {
  margin-top: 24px;
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
  text-align: center;
}

.quote-whatsapp-hint p {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.whatsapp-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-link-btn:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
}

.wa-btn-icon {
  width: 18px;
  height: 18px;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .web-services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-form-card {
    padding: 24px;
  }
}

/* Phone Mockup Frame inside Cards */
.phone-mockup-frame {
  position: relative;
  width: 100px;
  height: 200px;
  border: 4px solid #1A2B20; /* Sleek bezel */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(7, 60, 33, 0.08);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Phone Speaker Notch */
.phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 6px;
  background: #1A2B20;
  border-radius: 4px;
  z-index: 10;
}

.mockup-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Design Switcher Panel Styles */
.design-switcher-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  background: var(--light-mint);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px dashed var(--primary-green);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.switcher-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.switcher-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.switcher-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.switcher-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.switcher-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 10px rgba(10, 92, 54, 0.15);
}

/* DESIGN 1: White Grid Cards */
.design-1-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 60px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-header-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.design-1-card h2 {
  font-size: 32px;
  color: var(--dark-forest);
  margin-bottom: 12px;
}

.partner-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

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

.d1-grid-item {
  display: flex;
  gap: 16px;
  background: var(--light-mint);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(10, 92, 54, 0.04);
  text-align: left;
  align-items: flex-start;
}

.d1-item-icon {
  font-size: 24px;
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.d1-item-text h4 {
  font-size: 16px;
  color: var(--dark-forest);
  margin-bottom: 6px;
}

.d1-item-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Who Can Join Divider & Badges */
.who-can-join-wrapper {
  margin-bottom: 48px;
}

.join-divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  line-height: 0.1em;
  margin: 20px 0 30px 0;
}

.join-divider span {
  background: var(--white);
  padding: 0 16px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.join-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.join-badge {
  background: var(--card-green-bg);
  color: var(--dark-forest);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(10, 92, 54, 0.08);
}

.partner-cta-wrapper {
  display: flex;
  justify-content: center;
}

.partner-apply-btn {
  padding: 14px 36px;
  font-size: 15px;
}

/* DESIGN 2: Dark Green Banner */
.design-2-card {
  background: var(--dark-forest);
  color: var(--white);
  border-radius: 20px;
  padding: 60px;
  max-width: 1150px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Background dots ornament simulating ChatGPT layout visual */
.design-2-card::before {
  content: '•••\n•••\n•••';
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  line-height: 0.8;
  white-space: pre;
}

.d2-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.d2-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.d2-badge-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.d2-pre-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--accent-lime);
  margin-bottom: 4px;
}

.d2-main-title {
  font-size: 36px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.d2-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

.d2-checklist {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.d2-check-item {
  background: rgba(120, 190, 32, 0.15);
  color: var(--accent-lime);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(120, 190, 32, 0.2);
}

.d2-apply-btn {
  background: var(--accent-lime);
  color: var(--dark-forest) !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 30px;
}

.d2-apply-btn:hover {
  background: var(--white);
  color: var(--dark-forest) !important;
  transform: translateY(-2px);
}

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

.d2-grid-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.d2-item-icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.d2-grid-item h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.d2-grid-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.d2-footer-row {
  width: 100%;
}

.d2-join-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.d2-join-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.d2-join-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.d2-badge {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* DESIGN 3: Simple 3-Column Layout */
.design-3-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 60px;
  text-align: center;
  max-width: 1050px;
  margin: 0 auto;
}

.design-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.d3-card-item {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.d3-card-icon-wrapper {
  background: var(--card-green-bg);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(10, 92, 54, 0.05);
}

.d3-card-item:nth-child(2) .d3-card-icon-wrapper { background: var(--card-blue-bg); }
.d3-card-item:nth-child(3) .d3-card-icon-wrapper { background: var(--card-gold-bg); }

.d3-card-icon {
  font-size: 32px;
}

.d3-card-item h3 {
  font-size: 18px;
  color: var(--dark-forest);
  margin-bottom: 10px;
}

.d3-card-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Swapping Layouts */
@media (max-width: 992px) {
  .design-1-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .d2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .design-3-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .design-1-card, .design-2-card, .design-3-card {
    padding: 30px 20px;
  }
  .d2-join-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .design-1-grid {
    grid-template-columns: 1fr;
  }
  .d2-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CSS Mockup Device Frames
   ========================================================================== */

/* Laptop Mockup CSS */
.laptop-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.laptop-screen {
  background: #000;
  border: 10px solid #1A2B20; /* Sleek bezel */
  border-bottom-width: 14px; /* Slightly thicker bottom bezel */
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Webcam dot */
.laptop-screen::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #444;
  border-radius: 50%;
  z-index: 10;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laptop-base {
  background: #D1D5D2; /* Silver keyboard base */
  height: 6px;
  border-radius: 0 0 10px 10px;
  position: relative;
  width: 110%;
  left: -5%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #E2E8F0;
}

/* Notch to lift lid */
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #A0A5A1;
  border-radius: 0 0 4px 4px;
}

/* Design 1 Phone Stack */
.phone-stack-d1 {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

/* Overwrite general card mockup sizes for stack placement */
.phone-stack-d1 .phone-mockup-frame {
  position: absolute;
  width: 90px;
  height: 180px;
  border-radius: 14px;
  border-width: 3.5px;
  box-shadow: 0 12px 24px rgba(7, 60, 33, 0.12);
}

.phone-stack-d1 .phone-notch {
  width: 24px;
  height: 4px;
  border-radius: 3px;
}

.d1-phone-left {
  z-index: 1;
  left: 0;
  top: 40px;
  transform: rotate(-6deg);
}

.d1-phone-center {
  z-index: 3;
  left: 80px;
  top: 10px;
  transform: translateY(0);
}

.d1-phone-right {
  z-index: 2;
  left: 160px;
  top: 40px;
  transform: rotate(6deg);
}

/* Design 2 Mockup Stack (Laptop + 2 overlapping phones) */
.d2-mockups-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 280px;
  margin: 0 auto;
}

.d2-laptop {
  position: absolute;
  left: 50px;
  top: 40px;
  z-index: 1;
  max-width: 320px;
}

.d2-mockups-stack .phone-mockup-frame {
  position: absolute;
  width: 90px;
  height: 180px;
  border-radius: 14px;
  border-width: 3.5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.d2-mockups-stack .phone-notch {
  width: 24px;
  height: 4px;
  border-radius: 3px;
}

.d2-phone-left {
  z-index: 3;
  left: 10px;
  top: 80px;
}

.d2-phone-right {
  z-index: 2;
  right: 20px;
  top: 80px;
}

/* Design 3 Mockup Stack (Top phones stack + bottom laptop) */
.d3-mockups-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  margin: 0 auto;
}

.d3-phone-stack {
  position: absolute;
  top: 0;
  left: 90px;
  width: 240px;
  height: 200px;
  z-index: 1;
}

.d3-phone-stack .phone-mockup-frame {
  position: absolute;
  width: 80px;
  height: 160px;
  border-radius: 12px;
  border-width: 3px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.d3-phone-stack .phone-notch {
  width: 20px;
  height: 4px;
  border-radius: 2px;
}

.d3-phone-left {
  z-index: 2;
  left: 0;
  top: 20px;
  transform: rotate(-5deg);
}

.d3-phone-center {
  z-index: 4;
  left: 75px;
  top: 0;
}

.d3-phone-right {
  z-index: 3;
  left: 150px;
  top: 20px;
  transform: rotate(5deg);
}

.d3-laptop {
  position: absolute;
  bottom: 20px;
  left: 45px;
  z-index: 5;
  max-width: 330px;
}

/* Hero Design Switcher Panel Override */
.hero-switcher-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

.hero-switcher-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-switcher-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.hero-switcher-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 10px rgba(10, 92, 54, 0.15);
}

/* ==========================================================================
   HERO DESIGN 1: Centered Layout Styles
   ========================================================================== */
.hero-d1-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px 80px 80px;
}

.hero-d1-layout {
  display: grid;
  grid-template-columns: 420px 1.2fr 440px;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-d1-left {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-d1-left img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(7, 60, 33, 0.08));
}

.d1-floating-badge-left {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.d1-badge-icon {
  font-size: 20px;
  background: var(--card-green-bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d1-floating-badge-left div, .d1-floating-badge-right div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.d1-floating-badge-left div strong, .d1-floating-badge-right div strong {
  font-size: 13px;
  color: var(--dark-forest);
  font-weight: 700;
}

.d1-floating-badge-left div span, .d1-floating-badge-right div span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-d1-right {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.hero-d1-right img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(7, 60, 33, 0.08));
}

.d1-floating-badge-right {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.hero-d1-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-d1-badge {
  background: var(--card-green-bg);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 92, 54, 0.08);
}

.hero-d1-center h1 {
  font-size: 42px;
  color: var(--dark-forest);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-d1-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-d1-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 600px;
}

.d1-cat-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 8px);
  min-width: 160px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.d1-cat-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Custom Category SVGs */
.cat-svg-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  stroke-width: 2.2px;
  transition: transform 0.2s ease;
}

.d1-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-green-bg);
  border-radius: 50%;
  margin-bottom: 12px;
  border: 1px solid rgba(10, 92, 54, 0.04);
}

.d1-cat-card:nth-child(2) .d1-cat-icon { background: var(--card-blue-bg); }
.d1-cat-card:nth-child(2) .cat-svg-icon { color: var(--primary-blue); }

.d1-cat-card:nth-child(3) .d1-cat-icon { background: var(--card-gold-bg); }
.d1-cat-card:nth-child(3) .cat-svg-icon { color: var(--primary-gold); }

.d1-cat-card:nth-child(4) .d1-cat-icon { background: var(--card-green-bg); }
.d1-cat-card:nth-child(4) .cat-svg-icon { color: var(--primary-green); }

.d1-cat-card:nth-child(5) .d1-cat-icon { background: var(--card-blue-bg); }
.d1-cat-card:nth-child(5) .cat-svg-icon { color: var(--primary-blue); }

.d1-cat-card strong {
  font-size: 13px;
  color: var(--dark-forest);
  margin-bottom: 4px;
  font-weight: 700;
}

.d1-cat-card span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-d1-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-d1-trust {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  gap: 8px;
}

/* Design 1 Bottom Banner */
.hero-d1-bottom-banner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.d1-banner-item {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.d1-b-icon {
  font-size: 28px;
  background: var(--card-green-bg);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(10, 92, 54, 0.05);
}

.d1-banner-item:nth-child(2) .d1-b-icon { background: var(--card-blue-bg); }
.d1-banner-item:nth-child(3) .d1-b-icon { background: var(--card-gold-bg); }
.d1-banner-item:nth-child(4) .d1-b-icon { background: var(--card-green-bg); }

.d1-banner-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 4px;
}

.d1-banner-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   HERO DESIGN 2: Left Align Slogan Styles
   ========================================================================== */
.hero-d2-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px 80px 80px;
}

.hero-d2-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-d2-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-d2-badge {
  background: var(--card-green-bg);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 92, 54, 0.08);
  align-self: flex-start;
}

.d2-slogan {
  font-size: 64px;
  color: var(--primary-green);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-d2-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-d2-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-d2-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.d2-cat-card {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.d2-cat-icon {
  font-size: 24px;
  background: var(--card-green-bg);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(10, 92, 54, 0.05);
}

.d2-cat-icon .cat-svg-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
}

.d2-cat-card:nth-child(1) .d2-cat-icon .cat-svg-icon { color: var(--primary-green); }
.d2-cat-card:nth-child(2) .d2-cat-icon { background: var(--card-blue-bg); }
.d2-cat-card:nth-child(2) .d2-cat-icon .cat-svg-icon { color: var(--primary-blue); }
.d2-cat-card:nth-child(3) .d2-cat-icon { background: var(--card-gold-bg); }
.d2-cat-card:nth-child(3) .d2-cat-icon .cat-svg-icon { color: var(--primary-gold); }
.d2-cat-card:nth-child(4) .d2-cat-icon { background: var(--card-green-bg); }
.d2-cat-card:nth-child(4) .d2-cat-icon .cat-svg-icon { color: var(--primary-green); }
.d2-cat-card:nth-child(5) .d2-cat-icon { background: var(--card-blue-bg); }
.d2-cat-card:nth-child(5) .d2-cat-icon .cat-svg-icon { color: var(--primary-blue); }

.d2-cat-card strong {
  font-size: 14px;
  color: var(--dark-forest);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.d2-cat-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-d2-media {
  display: flex;
  justify-content: center;
}

.d2-stack-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(7, 60, 33, 0.08));
}

/* Design 2 Bottom Banner */
.hero-d2-bottom-banner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.d2-banner-item {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.d2-b-icon {
  font-size: 24px;
  color: var(--primary-green);
  background: var(--card-green-bg);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.d2-banner-item:nth-child(2) .d2-b-icon { color: var(--primary-blue); background: var(--card-blue-bg); }
.d2-banner-item:nth-child(3) .d2-b-icon { color: var(--primary-gold); background: var(--card-gold-bg); }
.d2-banner-item:nth-child(4) .d2-b-icon { color: var(--primary-green); background: var(--card-green-bg); }

.d2-banner-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 2px;
}

.d2-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.d2-banner-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   HERO DESIGN 3: Checks & Columns Styles
   ========================================================================== */
.hero-d3-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 80px 80px 80px;
}

.hero-d3-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-d3-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.d3-stack-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(7, 60, 33, 0.08));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.d3-floating-badge {
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.d3-badge-tick {
  color: var(--primary-green);
  font-weight: 700;
}

.hero-d3-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-d3-badge {
  background: var(--card-green-bg);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(10, 92, 54, 0.08);
}

.hero-d3-content h1 {
  font-size: 44px;
  color: var(--dark-forest);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-d3-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-d3-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  width: 100%;
}

.d3-val-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.d3-val-icon {
  font-size: 20px;
  background: var(--card-green-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(10, 92, 54, 0.04);
}

.d3-val-icon .cat-svg-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

.d3-val-item:nth-child(1) .d3-val-icon .cat-svg-icon { color: var(--primary-green); }
.d3-val-item:nth-child(2) .d3-val-icon { background: var(--card-blue-bg); }
.d3-val-item:nth-child(2) .d3-val-icon .cat-svg-icon { color: var(--primary-blue); }
.d3-val-item:nth-child(3) .d3-val-icon { background: var(--card-gold-bg); }
.d3-val-item:nth-child(3) .d3-val-icon .cat-svg-icon { color: var(--primary-gold); }
.d3-val-item:nth-child(4) .d3-val-icon { background: var(--card-green-bg); }
.d3-val-item:nth-child(4) .d3-val-icon .cat-svg-icon { color: var(--primary-green); }
.d3-val-item:nth-child(5) .d3-val-icon { background: var(--card-blue-bg); }
.d3-val-item:nth-child(5) .d3-val-icon .cat-svg-icon { color: var(--primary-blue); }
.d3-val-item:nth-child(6) .d3-val-icon { background: var(--card-gold-bg); }
.d3-val-item:nth-child(6) .d3-val-icon .cat-svg-icon { color: var(--primary-gold); }

.d3-val-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 2px;
}

.d3-val-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.hero-d3-ctas {
  display: flex;
  gap: 16px;
}

/* Design 3 Bottom Banner */
.hero-d3-bottom-banner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-shadow: var(--shadow-sm);
}

.d3-banner-item {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.d3-b-icon {
  font-size: 24px;
  color: var(--primary-green);
  background: var(--card-green-bg);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.d3-banner-item:nth-child(2) .d3-b-icon { color: var(--primary-blue); background: var(--card-blue-bg); }
.d3-banner-item:nth-child(3) .d3-b-icon { color: var(--primary-gold); background: var(--card-gold-bg); }

.d3-banner-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 2px;
}

.d3-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.d3-banner-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   HERO RESPONSIVE RULES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-d1-layout {
    grid-template-columns: 300px 1.2fr 310px;
  }
}

@media (max-width: 992px) {
  .hero-d1-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-d1-left, .hero-d1-right {
    display: none; /* Hide side mockups on tablet/mobile to keep it compact */
  }
  .hero-d1-bottom-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-d2-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-d2-media {
    order: -1; /* Place image on top on mobile */
  }
  .hero-d2-bottom-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-d3-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-d3-media {
    order: -1;
  }
  .hero-d3-bottom-banner {
    grid-template-columns: 1fr;
  }
  
  .hero-d1-section, .hero-d2-section, .hero-d3-section {
    padding: 30px 20px 60px 20px !important;
  }
  .hero-switcher-wrapper {
    padding: 0 20px !important;
  }
}

@media (max-width: 600px) {
  .hero-d1-categories {
    grid-template-columns: 1fr;
  }
  .d1-cat-card {
    width: 100%;
  }
  .hero-d1-center h1 {
    font-size: 32px;
  }
  .d2-slogan {
    font-size: 48px;
  }
  .hero-d3-content h1 {
    font-size: 32px;
  }
  .hero-d3-value-grid {
    grid-template-columns: 1fr;
  }
  .hero-d1-bottom-banner, .hero-d2-bottom-banner {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WHO WE ARE (ABOUT US) NEW SECTION
   ========================================================================== */
.about-new-section {
  padding: 100px 0;
  background-color: var(--bg-light, #f7f9f8);
  overflow: hidden;
}

.about-subheader {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-subheader::before,
.about-subheader::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--primary-green);
}

.about-new-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

/* Left Column content styling */
.about-lead-para {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-forest);
  margin-bottom: 16px;
  font-weight: 600;
}

.about-body-para {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #666);
  margin-bottom: 20px;
}

.about-mission-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Feature Grid inside Left Column */
.about-features-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-feat-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feat-card-icon {
  color: var(--primary-green);
  background: rgba(10, 92, 54, 0.05);
  padding: 10px;
  border-radius: 12px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-card-icon svg {
  width: 24px;
  height: 24px;
}

.about-feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 8px;
}

.about-feat-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted, #666);
  margin: 0;
}

/* Right Column Mission Card Image styling */
.about-new-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Right Column Mission Card */
.about-mission-card {
  background: var(--white);
  border-top: 4px solid var(--primary-green);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mission-card-badge {
  background: rgba(10, 92, 54, 0.05);
  color: var(--primary-green);
  padding: 16px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-card-badge svg {
  width: 32px;
  height: 32px;
}

.about-mission-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-forest);
  margin-bottom: 16px;
}

.about-mission-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #666);
  margin: 0;
}

/* Stats Banner in Right Column (2x2 Grid) */
.about-stats-banner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.about-stat-item {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
  padding: 8px;
}

/* 2x2 grid cross-dividers */
.about-stat-item:nth-child(odd) {
  border-right: 1px solid rgba(10, 92, 54, 0.1);
  padding-right: 16px;
}

.about-stat-item:nth-child(-n+2) {
  border-bottom: 1px solid rgba(10, 92, 54, 0.1);
  padding-bottom: 16px;
}

.about-stat-item:nth-child(n+3) {
  padding-top: 16px;
}

.stat-icon {
  background: rgba(10, 92, 54, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.stat-icon svg,
.stat-icon img {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  fill: none;
}

.stat-icon img {
  object-fit: contain;
}

.about-stat-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 4px;
}

.about-stat-item p,
.stat-stars {
  font-size: 12px;
  color: var(--text-muted, #666);
  margin: 0;
}

.stat-stars {
  color: #ffb400;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .about-new-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-features-new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-stat-item {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .about-features-new-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-stat-item {
    border: none !important;
    padding: 12px 0 !important;
  }
  .about-mission-card {
    padding: 30px 20px 30px 20px;
  }
  .about-new-section {
    padding: 60px 0;
  }
}




