.elementor-79425 .elementor-element.elementor-element-be0bf6c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-79425 .elementor-element.elementor-element-dd8e722{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-20260fa *//* esg-article.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1f44;
  --navy-light: #1a3a6b;
  --green: #2e7d32;
  --green-light: #43a047;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --text-dark: #0a1f44;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --bg-green: #f0fdf4;
  --bg-navy: #0a1f44;
  --white: #ffffff;
  --red-light: #fff1f1;
  --red: #c62828;
  --amber-light: #fffbeb;
  --amber: #d97706;
  --font: 'Inter', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 4px rgba(10,31,68,0.07);
  --shadow-md: 0 4px 16px rgba(10,31,68,0.09);
}

/* ── Section Wrapper ── */
.esg-article {
  font-family: var(--font);
  width: 100%;
  padding: 20px 20px;
  color: var(--text-body);
}

/* ── Main Heading ── */
.esg-article h2.esg-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}

.esg-gold-bar {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ── Lead Text ── */
.esg-lead {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.esg-lead + .esg-lead {
  margin-top: -6px;
}

/* ── Key Takeaways Box ── */
.esg-takeaways {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.esg-takeaways h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.esg-takeaways h3::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.esg-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esg-takeaways ul li {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.esg-takeaways ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 0.82rem;
}

.esg-takeaways ul li strong {
  color: var(--navy);
}

/* ── Section Headings ── */
.esg-article h2.esg-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.esg-article h3.esg-sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-top: 28px;
  margin-bottom: 10px;
}

/* ── Body Paragraphs ── */
.esg-article p.esg-body {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── Bullet Lists ── */
.esg-bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.esg-bullet-list li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.esg-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.4;
}

.esg-bullet-list li strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── 3-Column ESG Pillars ── */
.esg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 28px;
}

.esg-pillar-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.esg-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.esg-pillar-e::before { background: var(--green); }
.esg-pillar-s::before { background: var(--navy); }
.esg-pillar-g::before { background: var(--gold); }

.esg-pillar-letter {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.esg-pillar-e .esg-pillar-letter { color: var(--green); }
.esg-pillar-s .esg-pillar-letter { color: var(--navy); }
.esg-pillar-g .esg-pillar-letter { color: var(--gold); }

.esg-pillar-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 0;
}

.esg-pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Trend Cards ── */
.esg-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 28px;
}

.esg-trend-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}

.esg-trend-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.esg-trend-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.35;
}

.esg-trend-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── Impact Cards ── */
.esg-impacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 28px;
}

.esg-impact-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.esg-impact-icon {
  font-size: 1.3rem;
}

.esg-impact-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.esg-impact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Expert Insight Box ── */
.esg-expert {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.esg-expert::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(201,168,76,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.esg-expert-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.esg-expert-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.esg-expert p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── SME Benefits Grid ── */
.esg-sme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}

.esg-sme-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-green);
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.esg-sme-check {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Comparison Table ── */
.esg-table-wrap {
  overflow-x: auto;
  margin: 22px 0 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

.esg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}

.esg-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.esg-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.esg-table thead th:first-child { border-radius: 8px 0 0 0; }
.esg-table thead th:last-child  { border-radius: 0 8px 0 0; }

.esg-table tbody tr { border-bottom: 1px solid var(--border); }
.esg-table tbody tr:last-child { border-bottom: none; }
.esg-table tbody tr:nth-child(even) { background: var(--bg-light); }

.esg-table tbody td {
  padding: 13px 18px;
  color: var(--text-body);
  vertical-align: top;
  line-height: 1.55;
}

.esg-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.esg-table tbody td.esg-td-bad  { color: var(--red);   font-weight: 500; }
.esg-table tbody td.esg-td-good { color: var(--green);  font-weight: 500; }

/* ── Checklist Box ── */
.esg-checklist-box {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 22px 0 28px;
  box-shadow: var(--shadow-sm);
}

.esg-checklist-header {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.esg-checklist-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.esg-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.esg-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 4px;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}

.esg-check-row strong {
  color: var(--navy);
}

/* ── Quick Wins Banner ── */
.esg-quick-wins {
  background: var(--amber-light);
  border: 1.5px solid #fcd34d;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 20px 0 28px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

.esg-quick-wins strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── Mistakes Grid ── */
.esg-mistakes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 28px;
}

.esg-mistake-card {
  background: var(--red-light);
  border: 1.5px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.esg-mistake-icon {
  font-size: 1.2rem;
}

.esg-mistake-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  margin: 0;
  line-height: 1.3;
}

.esg-mistake-card p {
  font-size: 0.82rem;
  color: #7f1d1d;
  line-height: 1.6;
  margin: 0;
}

/* ── Future Section ── */
.esg-future-box {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 22px 0 36px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.esg-future-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.esg-future-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.esg-future-box p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .esg-article {
    padding: 44px 24px;
  }

  .esg-pillars,
  .esg-trends,
  .esg-impacts,
  .esg-mistakes {
    grid-template-columns: repeat(2, 1fr);
  }

  .esg-article h2.esg-main-title { font-size: 1.65rem; }
  .esg-article h2.esg-section-title { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .esg-article {
    padding: 36px 16px;
  }

  .esg-pillars,
  .esg-trends,
  .esg-impacts,
  .esg-mistakes,
  .esg-sme-grid {
    grid-template-columns: 1fr;
  }

  .esg-article h2.esg-main-title { font-size: 1.4rem; }
  .esg-article h2.esg-section-title { font-size: 1.1rem; }
  .esg-expert { padding: 22px 20px; }
  .esg-future-box { flex-direction: column; gap: 10px; }
  .esg-takeaways { padding: 18px 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fe45d85 *//* esg-infographic.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a1f44;
  --navy-light: #1a3a6b;
  --green: #2e7d32;
  --green-light: #43a047;
  --green-bg: #e8f5e9;
  --teal: #00796b;
  --teal-bg: #e0f2f1;
  --blue: #1565c0;
  --blue-bg: #e3f2fd;
  --purple: #6a1b9a;
  --purple-bg: #f3e5f5;
  --amber: #f57f17;
  --amber-bg: #fff8e1;
  --gold: #c9a84c;
  --red: #c62828;
  --red-bg: #ffebee;
  --text-dark: #0a1f44;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(10,31,68,0.08);
}

/* ── Wrapper ── */
.esg-infographic {
  font-family: var(--font);
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  color: var(--text-body);
}

/* ══ HERO HEADER ══ */
.esgi-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a5276 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 32px 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.esgi-hero-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.7rem;
  border: 1.5px solid rgba(255,255,255,0.2);
}

.esgi-hero-text h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 4px;
}

.esgi-hero-text .esgi-hero-sub {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}

.esgi-hero-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

.esgi-hero-desc + .esgi-hero-desc {
  margin-top: 6px;
}

/* ══ SECTION BLOCKS ══ */
.esgi-block {
  padding: 28px 36px;
  border-left: 4px solid transparent;
}

.esgi-block:nth-child(even) {
  background: var(--bg-light);
}

/* Section header row */
.esgi-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.esgi-block-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.esgi-block-title h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 3px;
  line-height: 1.2;
}

.esgi-block-title p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

/* ── Colour variants ── */
.esgi-env   { border-left-color: var(--green);  }
.esgi-env .esgi-block-icon   { background: var(--green-bg);  color: var(--green);  }

.esgi-social { border-left-color: var(--blue);  }
.esgi-social .esgi-block-icon { background: var(--blue-bg);  color: var(--blue);   }

.esgi-gov   { border-left-color: #37474f; }
.esgi-gov .esgi-block-icon   { background: #eceff1; color: #37474f; }

.esgi-supply { border-left-color: var(--teal);  }
.esgi-supply .esgi-block-icon { background: var(--teal-bg);  color: var(--teal);   }

/* ── 3-column card grid ── */
.esgi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ── Individual card ── */
.esgi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
}

.esgi-card-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.esgi-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.esgi-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

/* Icon colour variants */
.esgi-ci-green  { background: var(--green-bg);  color: var(--green);  }
.esgi-ci-blue   { background: var(--blue-bg);   color: var(--blue);   }
.esgi-ci-teal   { background: var(--teal-bg);   color: var(--teal);   }
.esgi-ci-purple { background: var(--purple-bg); color: var(--purple); }
.esgi-ci-amber  { background: var(--amber-bg);  color: var(--amber);  }
.esgi-ci-red    { background: var(--red-bg);    color: var(--red);    }
.esgi-ci-navy   { background: #e8edf5;          color: var(--navy);   }

/* ── Checklist within card ── */
.esgi-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.esgi-card ul li {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.esgi-card ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1.5px solid #a5d6a7;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%232e7d32' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ══ BENEFITS BLOCK ══ */
.esgi-benefits {
  background: var(--amber-bg);
  border: 1.5px solid #ffe082;
  border-radius: var(--radius);
  margin: 0 36px 28px;
  padding: 24px 24px 20px;
}

.esgi-benefits-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.esgi-benefits-icon {
  width: 48px;
  height: 48px;
  background: #fff3cd;
  border: 1.5px solid #ffd54f;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.esgi-benefits-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 3px;
}

.esgi-benefits-header p {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
  margin: 0;
}

.esgi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.esgi-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid #ffe082;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.esgi-benefit-item span.esgi-bi-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══ QUICK CHECKLIST ══ */
.esgi-quick {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 28px 36px;
}

.esgi-quick-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.esgi-quick-header-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.esgi-quick-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 3px;
}

.esgi-quick-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.esgi-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.esgi-quick-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.esgi-quick-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(67,160,71,0.25);
  border: 1.5px solid rgba(67,160,71,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.62rem;
  color: #81c784;
  font-weight: 800;
}

/* ══ FOOTER STRIP ══ */
.esgi-footer {
  background: var(--navy);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 22px 36px;
  text-align: center;
}

.esgi-footer h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
}

.esgi-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 720px) {
  .esgi-hero { padding: 24px 20px; flex-direction: column; gap: 12px; }
  .esgi-hero-text h1 { font-size: 1.4rem; }
  .esgi-block { padding: 22px 20px; }
  .esgi-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .esgi-benefits { margin: 0 20px 24px; }
  .esgi-benefits-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .esgi-quick { padding: 22px 20px; }
  .esgi-quick-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .esgi-footer { padding: 18px 20px; }
}

@media (max-width: 500px) {
  .esgi-cards { grid-template-columns: 1fr; }
  .esgi-benefits-grid { grid-template-columns: 1fr; }
  .esgi-quick-grid { grid-template-columns: 1fr; }
  .esgi-hero-text h1 { font-size: 1.2rem; }
  .esgi-block-title h2 { font-size: 1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fcb9ea4 *//* ==================== CTA BUTTONS CSS ==================== */

.aa-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
  align-items: stretch;
}

/* --- Base Button --- */
.aa-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.aa-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aa-cta-btn:hover::before {
  opacity: 1;
}

/* --- Primary Button (Main Website) --- */
.aa-cta-primary {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.aa-cta-primary::before {
  background: #2a2a2a;
}

.aa-cta-primary .aa-cta-icon svg {
  stroke: #c8a84b;
}

.aa-cta-primary .aa-cta-label {
  color: #f0d080;
}

.aa-cta-primary .aa-cta-sub {
  color: #aaaaaa;
}

.aa-cta-primary .aa-cta-arrow {
  color: #c8a84b;
}

.aa-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.2);
  border-color: #c8a84b;
}

/* --- Secondary Button (Freezone + Mainland) --- */
.aa-cta-secondary {
  background: #ffffff;
  border-color: #c8a84b;
}

.aa-cta-secondary::before {
  background: linear-gradient(135deg, rgba(200,168,75,0.06), rgba(240,208,128,0.06));
}

.aa-cta-secondary .aa-cta-icon svg {
  stroke: #c8a84b;
}

.aa-cta-secondary .aa-cta-label {
  color: #1a1a1a;
}

.aa-cta-secondary .aa-cta-sub {
  color: #888888;
}

.aa-cta-secondary .aa-cta-arrow {
  color: #c8a84b;
}

.aa-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.15);
  border-color: #b8922a;
  background: #fffdf5;
}

/* --- Gold Button (Contact / CTA) --- */
.aa-cta-gold {
  background: linear-gradient(135deg, #c8a84b 0%, #f0d080 50%, #c8a84b 100%);
  background-size: 200% auto;
  border-color: transparent;
}

.aa-cta-gold::before {
  background: linear-gradient(135deg, #b8922a 0%, #e0c060 50%, #b8922a 100%);
  background-size: 200% auto;
}

.aa-cta-gold .aa-cta-icon svg {
  stroke: #ffffff;
}

.aa-cta-gold .aa-cta-label {
  color: #ffffff;
}

.aa-cta-gold .aa-cta-sub {
  color: rgba(255,255,255,0.8);
}

.aa-cta-gold .aa-cta-arrow {
  color: #ffffff;
}

.aa-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.45);
  background-position: right center;
}

/* --- Icon Wrapper --- */
.aa-cta-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.aa-cta-icon svg {
  width: 20px;
  height: 20px;
}

/* --- Text Block --- */
.aa-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.aa-cta-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.aa-cta-sub {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.3;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* --- Arrow --- */
.aa-cta-arrow {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.aa-cta-btn:hover .aa-cta-arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .aa-cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .aa-cta-btn {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .aa-cta-btn {
    padding: 12px 16px;
  }

  .aa-cta-label {
    font-size: 13.5px;
  }

  .aa-cta-sub {
    font-size: 11px;
  }
}/* End custom CSS */