/* =================================================
   GLOBAL RESET & VARIABLES
================================================= */

:root {
  --brand-green: #22C55E;
  --brand-dark: #0F172A;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
}
/* Desktop: disable click */
@media (min-width: 769px) {
  .menu-item-has-children > a {
    pointer-events: none;
    cursor: default;
  }
}

/* Mobile: enable click */
@media (max-width: 768px) {
  .menu-item-has-children > a {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  .sub-menu {
    display: none;
  }

  .sub-menu.open {
    display: block;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--brand-dark);
  line-height: 1.6;
  background: var(--bg-white);

}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


/* =================================================
   HEADER & NAVIGATION (TOP-NOTCH)
================================================= */

.site-header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-green);
}

/* NAV MENU */
.main-nav {
  display: flex;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-weight: 500;
  color: var(--brand-dark);
  padding: 8px 4px;
  transition: color .2s ease;
}

.nav-menu > li > a:hover {
  color: var(--brand-green);
}

/* DROPDOWN */
.nav-menu li ul {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: var(--bg-white);
  padding: 12px 0;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}

.nav-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.nav-menu li ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.nav-menu li ul li a:hover {
  background: var(--bg-light);
  color: var(--brand-green);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu > li > a {
    padding: 16px 24px;
    width: 100%;
  }

  /* Mobile dropdown */
  .nav-menu li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    display: none;
  }

  .nav-menu li.open > ul {
    display: block;
  }
}



/* =====================
   BUTTON BASE RESET
===================== */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
  height: 52px;             
  padding: 0 32px;           
  min-width: 160px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #ffffff;
  color: #16A34A;
  border: 1.5px solid #16A34A;
}

.btn-secondary:hover {
  background: #F0FDF4;
}

/* =================================================
   SECTIONS (SHARED)
================================================= */

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
}


/* =================================================
   FOUNDER QUOTE
================================================= */

.founder-quote {
  padding: 80px 0;
  text-align: center;
}

.quote-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 24px;
}

blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 760px;
  margin: auto;
}

.quote-author {
  margin-top: 16px;
  color: var(--text-muted);
}


/* =================================================
   ABOUT LECOG
================================================= */

.about-intro {
  padding: 80px 0;
}

.about-text {
  max-width: 820px;
  margin: 16px auto;
  font-size: 1rem;
  color: #334155;
  text-align: center;
}


/* =================================================
   TEAM SECTION
================================================= */

.team-section {
  padding: 100px 0;
}

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.1rem;
}

.team-member span {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* =================================================
   PARTNERS SECTION
================================================= */

.partners-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.partner-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-white);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.partner-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.partner-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* =================================================
   REGISTRATION DETAILS
================================================= */

.registration-section {
  padding: 80px 0;
}

.registration-box {
  max-width: 760px;
  margin: auto;
  padding: 32px;
  border-radius: 16px;
  background: var(--bg-light);
  font-size: 0.95rem;
  color: #334155;
}

.registration-box p {
  margin-bottom: 12px;
}


/* =================================================
   MOBILE REFINEMENTS
================================================= */

@media (max-width: 768px) {

  .hero-image {
    min-height: 70vh;
  }

  .hero-content h1 span {
    display: inline;
  }

  .founder-quote,
  .about-intro,
  .team-section,
  .partners-section,
  .registration-section {
    padding: 60px 0;
  }
}


.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.context-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.context-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.context-text p {
  color: #64748B;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .context-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* =====================
   CARD SYSTEM (TEAM + PARTNERS)
===================== */

.team-member,
.partner-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08); /* soft border */
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Hover / Focus State */
.team-member:hover,
.partner-card:hover {
  border-color: #22C55E; /* brand green */
  box-shadow: 0 20px 48px rgba(34,197,94,0.18);
  transform: translateY(-6px);
}

/* Focus accessibility (keyboard users) */
.team-member:focus-within,
.partner-card:focus-within {
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.35);
}

/* Avatar polish */
.team-member img,
.partner-card img {
  transition: transform 0.25s ease;
}

.team-member:hover img,
.partner-card:hover img {
  transform: scale(1.05);
}
/* =====================
   PARTNER IMAGE ROUND FIX
===================== */

.partner-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;          /* makes it round */
  object-fit: contain;         /* logo stays intact */
  background: #ffffff;         /* clean background */
  padding: 12px;               /* breathing space for logos */
  margin-bottom: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease;
}

/* Hover polish */
.partner-card:hover img {
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .hero-right {
    margin-top: 48px;
  }

  .hero-actions {
      display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap; 
  }
}
/* =====================
   NAVBAR LOGO
===================== */

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;          /* perfect navbar height */
  width: auto;
  display: block;
}

/* =================================================
   CLEAN, READABLE HERO (FINAL)
================================================= */

.hero-clean {
  padding: 120px 0 100px;
  background: #ffffff;
}

.hero-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* image slightly dominant */
  gap: 64px;
  align-items: center;
}

.hero-clean-content h1 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: #0F172A;
}

.hero-clean-content h1 span {
  color: #16A34A; /* calm green, not neon */
}

.hero-clean-content p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #475569;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Buttons */


.btn-secondary {
  padding: 14px 32px;
  min-width: 160px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid #CBD5E1; /* stronger border */
  color: #0F172A;
  font-weight: 600;
  transition: 
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-secondary:hover {
  border-color: #16A34A;
  color: #16A34A;
  background: #F0FDF4; /* very light green */
  box-shadow: 0 8px 20px rgba(22,163,74,0.15);
}

/* Image */
.hero-clean-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(15,23,42,0.18);
}
/* Mobile */
@media (max-width: 992px) {
  .hero-clean-grid {
    grid-template-columns: 1fr;
  }

  .hero-clean {
  padding: 80px 0 120px; /* closer to navbar, grounded bottom */
  min-height: calc(100vh - 72px); /* fills viewport below navbar */
  display: flex;
  align-items: center;
}
}

/* =====================
   QUOTE SIGNATURE
===================== */

.quote-signature {
  margin-top: 24px;
}

.quote-signature img {
  max-width: 220px;    /* keeps it elegant */
  height: auto;
  opacity: 0.9;
}

/* Optional context line */
.quote-context {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #64748B;
}


/*Footer*/

/* =================================================
   FOOTER (MODERN & CLEAN)
================================================= */

.site-footer {
  background: #0F172A;
  color: #CBD5E1;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand */
.footer-logo {
  height: 42px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94A3B8;
}

/* Columns */
.footer-column h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #CBD5E1;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #22C55E;
}

/* Contact */
.footer-contact li {
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(148,163,184,0.15);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-legal a {
  margin-left: 20px;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-legal a:hover {
  color: #22C55E;
}

/* Mobile */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #22C55E;
  color: #0F172A;
  transform: translateY(-3px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  min-width: 160px;
  background: #16A34A;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary:hover {
  background: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22,163,74,0.25);
}


/* ===============================
   ABOUT PAGE – SELF CONTAINED
================================ */

.about-page .founder-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-page .founder-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-page .founder-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.about-page .mission-vision-section {
  padding: 120px 0;
  background: #eef2f7;
}

.about-page .mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.about-page .mv-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-page .mv-card:hover {
  transform: translateY(-12px);
  border-color: #16a34a;
  box-shadow: 0 40px 90px rgba(22,163,74,0.35);
}

.about-page .mv-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-page .mv-card h4 {
  margin-top: 22px;
  font-size: 18px;
  color: #16a34a;
}

.about-page .mv-card p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #334155;
}

@media (max-width: 992px) {
  .about-page .founder-wrapper,
  .about-page .mv-grid {
    grid-template-columns: 1fr;
  }

  .about-page .founder-image img {
    margin: 0 auto 30px;
  }
}
.mv-vision-quote blockquote {
  font-size: 20px;
  line-height: 1.9;
  color: #0f172a;
  font-weight: 500;
  margin: 30px 0 0;
  padding-left: 24px;
  border-left: 5px solid #16a34a;
}

/*EPR Compliance Page*/
/* ================= INTRO ================= */
.epr-intro {
  padding: 60px 0 20px;
  text-align: center;
}
.epr-lead {
	font-size: 16px;
	padding-bottom: 20px;
	text-align: center;
}

.epr-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.epr-subtitle {
  font-size: 18px;
  color: #475569;
}

/* ================= PROCESS ================= */
.epr-process {
	background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f8fafc 100%
  );
  
  padding-bottom: 20px; 
}

.epr-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: stretch;
}

.epr-item {
  position: relative;
  display: flex;
}

.epr-item:not(:last-child)::after {
  content: "➜";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  font-size: 22px;
  color: #c7d2fe;
  transition: 0.3s ease;
}

.epr-item:hover::after {
  color: #2563eb;
  transform: translateY(-50%) translateX(6px);
}

.epr-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.epr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(37,99,235,0.18);
}

.step-badge {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #dbeafe;
  color: #2563eb;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.epr-card h3 {
  min-height: 64px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.icon-wrap {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}

  
}

.epr-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ================= CTA ================= */
.epr-cta {
  position: relative;
  margin-top: 0px;   /* 🔥 pulls CTA up */
  padding-top: 80px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


.epr-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.epr-cta p {
  color: #475569;
  margin-bottom: 28px;
}
/* ===============================
   EPR – WHAT WE DO (CARDS)
================================ */

.epr-services {
  padding: 100px 0;
  background: #ffffff;
}

.epr-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 60px;
}

.epr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;

}

/* Card style aligned with CSR page */

.epr-service-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.epr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

/* Icon */

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  margin: 0 auto 20px auto; 
}

/* Text */

.epr-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.epr-service-card p {
  font-size: 14.8px;
  line-height: 1.65;
  color: #5a6b85;
}

/* Note */

.epr-note {
  margin-top: 36px;
  text-align: center;
  font-size: 14.5px;
  color: #475569;
}

/* Responsive */

@media (max-width: 1024px) {
  .epr-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .epr-services-grid {
    grid-template-columns: 1fr;
  }

  .epr-section-title {
    font-size: 28px;
  }
}
/* Intro text */
.service-intro {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Bullet points */
.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.service-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: #2563eb;
}
@media (max-width: 768px) {
  .epr-services {
    padding: 70px 0;
  }

  .epr-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .epr-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .epr-item::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .epr-flow {
    grid-template-columns: 1fr;
  }

  .epr-title {
    font-size: 30px;
  }
}
/* ================= CSR HERO ================= */
.csr-hero , .epr-hero{
  padding: 80px 0 40px;
  background: #f3f8ff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.csr-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #dbeafe, transparent 70%);
}
.epr-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #dbeafe, transparent 70%);
}

.csr-title, .epr-title{
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.csr-subtitle, .epr-subtitle {
  font-size: 18px;
  color: #475569;
}

/* ================= INTRO ================= */
.csr-intro {
  padding: 40px 0;
}

.csr-text p {
  font-size: 16px;
  color: #475569;
  max-width: 820px;
  margin: auto;
  text-align: center;
  line-height: 1.75;
}

/* ================= CSR SERVICES ================= */
.csr-services {
  padding: 60px 0;
  background: #ffffff;
}

.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0f172a;
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.csr-card {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.csr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(37,99,235,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.csr-card:hover::before {
  opacity: 1;
}
.csr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(37,99,235,0.18);
}

.csr-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.csr-icon {
  font-size: 34px;
  margin-bottom: 14px;
}


/* ================= CTA ================= */
.csr-cta {
  padding: 60px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.csr-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: #16A34A; /* LECOG green */
  color: #ffffff;
  border-radius: 14px; /* less pill, more premium */
  text-decoration: none;
  max-width: 100%;
  line-height: 1.3;
  transition: 
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.csr-cta .btn-primary:hover {
  background: #15803D;
  box-shadow: 0 10px 24px rgba(22,163,74,0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .csr-cta .btn-primary {
    font-size: 0.90rem;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    white-space: normal;     /* allows wrapping */
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .csr-title {
    font-size: 30px;
  }

  .csr-subtitle {
    font-size: 16px;
  }
}

/* ================= CARBON HERO ================= */
.carbon-hero {
  padding: 80px 0 40px;
  background: #f2fbff;
  text-align: center;
}

.carbon-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.carbon-subtitle {
  font-size: 18px;
  color: #475569;
}

/* ================= INTRO TEXT ================= */
.carbon-intro {
  padding: 40px 0;
}

.carbon-intro p {
  font-size: 16px;
  color: #475569;
  max-width: 820px;
  margin: auto;
  text-align: center;
  line-height: 1.75;
}

/* ================= SERVICES GRID ================= */
.carbon-services {
  padding: 60px 0;
  background: #ffffff;
}

.section-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0f172a;
}

.carbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.carbon-card {
  background: #f8fafc;
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carbon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(37,99,235,0.16);
}

.carbon-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.carbon-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.carbon-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ================= CTA ================= */
.carbon-cta {
  padding: 60px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #e0f7ff, #d9fbf0);
}

.carbon-cta .btn-primary {
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  background: #2563eb;
  color: #fff;
  border-radius: 32px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.carbon-cta .btn-primary:hover {
  background: #1e40af;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .carbon-title {
    font-size: 30px;
  }
  .carbon-subtitle {
    font-size: 16px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

#scrollToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #16A34A;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  z-index: 999;
}

/* Hover */
#scrollToTop:hover {
  background: #15803D; /* slightly darker green */
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22,163,74,0.35);
}

/* Mobile tweak */
@media (max-width: 600px) {
  #scrollToTop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
/* ================= IT PAGE ================= */

.it-intro {
  padding: 80px 0 50px;
  text-align: center;
  background: #f3f8fb;
}

.it-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.it-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
}

.it-description {
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
}

/* ================= SERVICES ================= */

.it-services {
  padding: 70px 0;
  background: #ffffff;
}

.it-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.it-card {
  background: #f8fafc;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(22,163,74,0.18);
}

.it-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.it-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.it-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ================= CTA ================= */

.it-cta {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(135deg, #eefcf4, #f0fdfa);
}

.it-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .it-title {
    font-size: 30px;
  }

  .it-subtitle {
    font-size: 16px;
  }
}
/* ================= TRAINING PAGE ================= */

.training-intro {
  padding: 80px 0 50px;
  text-align: center;
  background: #f3f8fb;
}

.training-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.training-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 24px;
}

.training-description {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

/* ================= PROGRAMS ================= */

.training-programs {
  padding: 70px 0;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.training-card {
  background: #f8fafc;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.training-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  margin: 0 auto 18px auto; 
}

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

.training-card ul {
  padding-left: 18px;
  color: #475569;
}
.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: training-counter;
}

.training-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.training-list li::before {
  counter-increment: training-counter;
  content: counter(training-counter);
  position: absolute;
  left: 0;
  top: 2px;

  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= MODULES ================= */

.training-modules {
  padding: 60px 0;
  background: #ffffff;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.module-card {
  padding: 18px;
  background: #eefcf4;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

/* ================= FEATURES ================= */

.training-features {
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.feature-card {
  padding: 18px;
  background: #f0fdfa;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

/* ================= ADVISORY ================= */

.training-advisory {
  padding: 70px 0;
  background: #ffffff;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 32px 0;
}

.advisory-card {
  padding: 20px;
  background: #f8fafc;
  border-radius: 14px;
  font-weight: 600;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.who-grid span {
  background: #eefcf4;
  padding: 10px 16px;
  border-radius: 20px;
}

.challenge-list {
  max-width: 800px;
  margin: 20px auto 0;
  color: #475569;
}

/* ================= CTA ================= */

.training-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #eefcf4, #f0fdfa);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .training-title {
    font-size: 30px;
  }
}
/* ================= WHY HERO ================= */

.why-hero {
  padding: 120px 0 100px;
  background:
    linear-gradient(rgba(15,23,42,0.55), rgba(15,23,42,0.55)),
    url('/wp-content/themes/your-theme/assets/images/why-hero.jpg') center/cover no-repeat;
  text-align: center;
}

.why-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.why-hero h1 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
}
.why-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
}

/* ================= WHY POINTS ================= */

.why-points {
  padding: 80px 0;
  background: #eefcf4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.why-card {
  text-align: center;
  padding: 30px 26px;
  background: transparent;
}

.why-icon {
  font-size: 40px;
  color: #16A34A;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ================= SDG SECTION ================= */

.sdg-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.sdg-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sdg-subtitle {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #475569;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.sdg-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 20px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover */
.sdg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.sdg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.sdg-card img {
  width: 96px;
  height: auto;
  margin-bottom: 16px;
}

.sdg-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.sdg-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
.sdg-3::before  { background: #4C9F38; }
.sdg-6::before  { background: #26BDE2; }
.sdg-11::before { background: #FD9D24; }
.sdg-12::before { background: #BF8B2E; }
.sdg-13::before { background: #3F7E44; }
.sdg-15::before { background: #56C02B; }
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
  }

  .sdg-title {
    font-size: 28px;
  }
}
/* ================= CAREERS HERO ================= */

.careers-hero {
  padding: 90px 0 60px;
  background: linear-gradient(135deg, #eefcf4, #f0fdfa);
  text-align: center;
}

.careers-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.careers-subtitle {
  font-size: 18px;
  color: #475569;
}

/* ================= INTRO ================= */

.careers-intro {
  padding: 40px 0;
}

.careers-intro p {
  max-width: 820px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
}

/* ================= JOB OPENINGS ================= */

.careers-openings {
  padding: 70px 0;
  background: #ffffff;
}

.job-card {
  max-width: 900px;
  margin: 40px auto 0;
  background: #f8fafc;
  border-radius: 22px;
  padding: 36px 34px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* Header */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.job-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.job-badge {
  background: #16A34A;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Meta */
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 20px;
}

/* Description */
.job-description {
  font-size: 15px;
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.7;
}

/* Sections */
.job-section {
  margin-bottom: 26px;
}

.job-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0f172a;
}

.job-section ul {
  padding-left: 20px;
  color: #475569;
}

.job-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Apply */
.job-apply {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 15px;
  color: #334155;
}

.job-apply a {
  color: #16A34A;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .careers-title {
    font-size: 30px;
  }

  .job-card {
    padding: 28px 22px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ================= HERO ================= */
.contact-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #eefcf4, #f0fdfa);
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.contact-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #475569;
}

/* ================= FORM SECTION ================= */
.contact-section {
  padding: 80px 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

/* LEFT COLUMN */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #475569;
  line-height: 1.7;
}

.contact-checks {
  margin: 16px 0 18px;
  padding-left: 18px;
}

.contact-checks li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* INLINE BRIDGE */
.contact-bridge-inline {
  margin-top: 18px;
  padding: 18px;
  background: #f0fdf4;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bridge-item {
  text-align: center;
  font-size: 13px;
}

.bridge-item span {
  width: 32px;
  height: 32px;
  background: #16A34A;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 6px;
}

/* FORM */
.custom-form {
  background: #f8fafc;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.custom-form label {
  font-weight: 600;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

.custom-form button {
  width: 100%;
  padding: 15px;
  background: #16A34A;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
}

/* ================= MAP ================= */
.contact-map-section {
  padding: 80px 0;
}

.contact-map-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
}

.contact-panel {
  background: #3f3f3f;
  color: #fff;
  padding: 36px;
  border-radius: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-wrap,
  .contact-map-wrap {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTACT FORM MESSAGE ================= */

.form-message {
  display: none;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}

.form-message.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #34d399;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #f87171;
}
/* ===============================
   LEGAL PAGES (TERMS & PRIVACY)
================================ */

.legal-page {
  background: #ffffff;
}

/* Hero */
.legal-hero {
  background: linear-gradient(135deg, #0e5c4b, #1b8a6b);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.legal-hero p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Content */
.legal-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #0e5c4b;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 14px;
  color: #444;
}

.legal-content a {
  color: #0e5c4b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 2rem;
  }

  .legal-content {
    margin: 40px auto;
  }
}
/* ================= COMMON CTA ================= */

.common-cta {
  background: #ecfdf5; /* same mint bg */
  padding: 90px 0;
  text-align: center;
}

.common-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.common-cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.common-cta p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Button consistency */
.common-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  transition: all 0.25s ease;
}

.common-cta .btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
}
/* =================================================
   BUSINESS WEBSITE LANDING PAGE (LECOG STYLE)
================================================= */

.business-landing {
  padding: 100px 0;
  background: #ffffff;
}

.business-landing .container {
  max-width: 960px;
}

/* ---------- HERO ---------- */

.business-hero {
  text-align: center;
  margin-bottom: 80px;
}

.business-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-dark);
}

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

.business-hero p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.business-hero .hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- SECTION BLOCK ---------- */

.business-section {
  margin-bottom: 80px;
}

.business-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.business-section .section-note {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ---------- TARGET GRID ---------- */

.business-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.business-target-card {
  background: var(--bg-light);
  padding: 28px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(22,163,74,0.18);
}

.business-target-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ---------- FEATURES LIST ---------- */

.business-features {
  max-width: 760px;
  margin: auto;
}

.business-features ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 24px;
}

.business-features li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #334155;
}

.business-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  color: var(--brand-green);
}

/* ---------- PRICING ---------- */

.business-pricing {
  background: #f8fafc;
  padding: 48px 32px;
  border-radius: 22px;
  max-width: 760px;
  margin: auto;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.business-pricing h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.business-pricing .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-green);
  margin: 12px 0;
}

.business-pricing p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- PROCESS ---------- */

.business-process {
  max-width: 760px;
  margin: auto;
}

.business-process ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.business-process li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #334155;
}

.business-process li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FINAL CTA ---------- */

.business-final-cta {
  text-align: center;
  margin-top: 100px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border-radius: 28px;
}

.business-final-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.business-final-cta p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 1rem;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .business-landing {
    padding: 70px 0;
  }

  .business-final-cta {
    padding: 60px 20px;
  }

  .business-final-cta h2 {
    font-size: 1.8rem;
  }
}
/* ===============================
   LANDING PAGE HEADER CTA
================================ */

.header-cta {
  height: 44px;
  padding: 0 22px;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .header-cta {
    padding: 0 18px;
    font-size: 0.85rem;
  }
}

.page-id-5276 .header-cta {
  height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
  border-radius: 8px;
}
.page-id-5276 .site-header {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ---------- PRICING ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: left;
  position: relative;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.pricing-card li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}

/* Featured card */
.pricing-card.featured {
  border: 2px solid var(--brand-green);
  transform: scale(1.04);
}

.pricing-card.featured .price {
  color: var(--brand-green);
}

.tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--brand-green);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Buttons */
.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--brand-green);
  color: #fff;
}
.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #64748b;
}
.offer-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #f97316;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.offer-badge {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.pricing-card.featured .btn-primary {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}