/* =========================================================
   ECOHO DESIGN SYSTEM — SYNCED V2
   Put before page CSS, or use the all-in-one file.
========================================================= */

:root {
  /* Brand */
  --ecoho-primary: #1650a0;
  --ecoho-primary-dark: #0b2f63;
  --ecoho-primary-deep: #071f43;
  --ecoho-accent: #2d9b68;
  --ecoho-accent-light: #77d5a4;

  /* Text and surfaces */
  --ecoho-text: #202b3c;
  --ecoho-muted: #667085;
  --ecoho-border: #dde5ed;
  --ecoho-surface: #ffffff;
  --ecoho-surface-soft: #f4f8fb;

  /* Layout */
  --ecoho-container: 1180px;
  --ecoho-content-narrow: 820px;
  --ecoho-radius-sm: 10px;
  --ecoho-radius-md: 18px;
  --ecoho-radius-lg: 24px;

  /* Shadows */
  --ecoho-shadow-sm: 0 10px 35px rgba(16, 45, 82, 0.07);
  --ecoho-shadow-md: 0 20px 55px rgba(16, 45, 82, 0.13);
  --ecoho-shadow-dark: 0 25px 70px rgba(11, 47, 99, 0.23);

  /* Motion */
  --ecoho-transition: 0.3s ease;

  /* Typography scale */
  --ecoho-fs-hero: clamp(2.35rem, 5vw, 3.65rem);
  --ecoho-fs-page-title: clamp(2.15rem, 4vw, 3.15rem);
  --ecoho-fs-section-title: clamp(1.9rem, 3vw, 2.6rem);
  --ecoho-fs-panel-title: clamp(1.75rem, 2.7vw, 2.35rem);
  --ecoho-fs-card-title: 1.25rem;
  --ecoho-fs-item-title: 1.06rem;
  --ecoho-fs-lead: 1.04rem;
  --ecoho-fs-body: 0.95rem;
  --ecoho-fs-body-compact: 0.88rem;
  --ecoho-fs-eyebrow: 0.68rem;
  --ecoho-fs-meta: 0.74rem;
  --ecoho-fs-number: 2.7rem;

  /* Line height */
  --ecoho-lh-title: 1.48;
  --ecoho-lh-body: 1.95;
  --ecoho-lh-compact: 1.82;

  /* Spacing */
  --ecoho-section-space: 80px;
  --ecoho-card-pad: 34px;
  --ecoho-card-gap: 24px;
  --ecoho-button-height: 49px;
}

/* ---------- Shared containers ---------- */

.ecoho-section {
  padding-right: 15px;
  padding-left: 15px;
}

.ecoho-section .row {
  max-width: var(--ecoho-container);
}

.ecoho-section-heading {
  max-width: var(--ecoho-content-narrow);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ecoho-section-heading .ecoho-eyebrow {
  justify-content: center;
}

.ecoho-section-heading p:last-child {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

/* ---------- Shared typography ---------- */

.ecoho-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0;
  color: var(--ecoho-accent);
  font-size: var(--ecoho-fs-eyebrow);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecoho-eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  flex: 0 0 28px;
  background: currentColor;
}

.ecoho-eyebrow-light {
  color: var(--ecoho-accent-light);
}

.ecoho-title-xl {
  margin: 16px 0 24px;
  color: var(--ecoho-primary-dark);
  font-size: var(--ecoho-fs-page-title);
  font-weight: 700;
  line-height: var(--ecoho-lh-title);
  letter-spacing: 0.01em;
}

.ecoho-lead {
  color: var(--ecoho-text);
  font-size: var(--ecoho-fs-lead);
  font-weight: 500;
  line-height: var(--ecoho-lh-body);
}

.ecoho-copy p {
  color: var(--ecoho-muted);
  font-size: var(--ecoho-fs-body);
  line-height: var(--ecoho-lh-body);
}

/* ---------- Shared cards ---------- */

.ecoho-card {
  height: 100%;
  border: 1px solid var(--ecoho-border);
  border-radius: var(--ecoho-radius-md);
  background: var(--ecoho-surface);
  box-shadow: var(--ecoho-shadow-sm);
  transition:
    transform var(--ecoho-transition),
    border-color var(--ecoho-transition),
    box-shadow var(--ecoho-transition);
}

.ecoho-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 80, 160, 0.28);
  box-shadow: var(--ecoho-shadow-md);
}

.ecoho-panel-dark {
  overflow: hidden;
  border-radius: var(--ecoho-radius-lg);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(78, 205, 144, 0.38),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--ecoho-primary-dark) 0%,
      var(--ecoho-primary) 62%,
      #176f76 100%
    );
  box-shadow: var(--ecoho-shadow-dark);
  color: #ffffff;
}

.ecoho-soft-panel {
  overflow: hidden;
  border: 1px solid rgba(45, 155, 104, 0.19);
  border-radius: var(--ecoho-radius-lg);
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(45, 155, 104, 0.13),
      transparent 30%
    ),
    linear-gradient(135deg, #f6faf8 0%, #f3f7fb 100%);
}

/* ---------- Shared buttons ---------- */

.ecoho-section .button,
.ecoho-home .button,
.home-hero-section .button,
.company-business-section .button {
  min-height: var(--ecoho-button-height);
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 5px;
  line-height: calc(var(--ecoho-button-height) - 2px);
}

.ecoho-section .white.button.is-outline,
.ecoho-home .white.button.is-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.ecoho-section .white.button.is-outline:hover,
.ecoho-home .white.button.is-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ecoho-primary);
}

/* ---------- Shared CTA ---------- */

.ecoho-cta-box {
  max-width: var(--ecoho-container);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(45px, 6vw, 72px);
  border-radius: var(--ecoho-radius-lg);
  background: var(--ecoho-surface-soft);
  text-align: center;
}

.ecoho-cta-box .ecoho-eyebrow {
  justify-content: center;
}

.ecoho-cta-box h2 {
  margin: 15px 0 18px;
  color: var(--ecoho-primary-dark);
  font-size: var(--ecoho-fs-section-title);
  line-height: var(--ecoho-lh-title);
}

.ecoho-cta-box p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--ecoho-muted);
  font-size: var(--ecoho-fs-body);
  line-height: var(--ecoho-lh-body);
}

/* ---------- Common page title fallbacks ---------- */

.duyanh-product-archive-title h1,
.ux-page-title h1,
.page-title h1,
.page-header h1 {
  font-size: var(--ecoho-fs-page-title);
  line-height: 1.35;
}

/* ---------- Responsive system ---------- */

@media screen and (max-width: 849px) {
  :root {
    --ecoho-section-space: 64px;
    --ecoho-card-pad: 30px;
    --ecoho-fs-hero: clamp(2.15rem, 7vw, 3.1rem);
    --ecoho-fs-page-title: clamp(2rem, 5vw, 2.75rem);
    --ecoho-fs-section-title: clamp(1.75rem, 4vw, 2.35rem);
  }
}

@media screen and (max-width: 549px) {
  :root {
    --ecoho-section-space: 52px;
    --ecoho-card-pad: 24px;
    --ecoho-fs-hero: 2rem;
    --ecoho-fs-page-title: 1.85rem;
    --ecoho-fs-section-title: 1.72rem;
    --ecoho-fs-panel-title: 1.62rem;
    --ecoho-fs-card-title: 1.15rem;
    --ecoho-fs-lead: 0.98rem;
    --ecoho-fs-body: 0.92rem;
  }

  .ecoho-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .ecoho-section-heading {
    text-align: left;
  }

  .ecoho-section-heading .ecoho-eyebrow,
  .ecoho-cta-box .ecoho-eyebrow {
    justify-content: flex-start;
  }

  .ecoho-cta-box {
    padding: 40px 24px;
    border-radius: var(--ecoho-radius-md);
    text-align: left;
  }

  .ecoho-cta-box .button {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

/* =========================================================
   ABOUT ECOHO PAGE — SAFE FLATSOME STRUCTURE
   Requires: ecoho-root.css
========================================================= */

/* ---------- Intro ---------- */
.about-intro-editorial {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  overflow: hidden;
  border: 1px solid var(--ecoho-border);
  border-radius: var(--ecoho-radius-lg);
  background: #ffffff;
  box-shadow: var(--ecoho-shadow-sm);
}

.about-intro-editorial .ecoho-eyebrow {
  justify-content: start;
}

.about-intro-editorial::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
}

/* ---------- Brand column ---------- */

.about-intro-brand {
  grid-column: 1 / 5;
  margin: 0;
  padding: 60px 45px;
  border-right: 1px solid var(--ecoho-border);
  background: var(--ecoho-surface-soft);
}

.about-intro-brand h2 {
  margin: 32px 0 18px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.about-intro-brand h4 {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ---------- Main message ---------- */

.about-intro-message {
  grid-column: 5 / 13;
  margin: 0;
  padding: 60px 55px;
}

.about-intro-message h2 {
  margin: 0 0 25px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  line-height: 1.5;
}

.about-intro-message .ecoho-lead {
  margin-bottom: 18px;
  color: var(--ecoho-text);
  font-size: 1.02rem;
  line-height: 2;
}

.about-intro-message p:last-child {
  margin-bottom: 0;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 2;
}

/* ---------- Name meanings ---------- */

.about-name-item {
  min-height: 145px;
  margin: 0;
  padding: 28px 25px;
  border-top: 1px solid var(--ecoho-border);
  border-right: 1px solid var(--ecoho-border);
  background: #ffffff;
  transition:
    background var(--ecoho-transition),
    transform var(--ecoho-transition);
}

.about-name-item-01 {
  grid-column: 1 / 4;
}

.about-name-item-02 {
  grid-column: 4 / 7;
}

.about-name-item-03 {
  grid-column: 7 / 10;
}

.about-name-item-04 {
  grid-column: 10 / 13;
  border-right: 0;
}

.about-name-item:hover {
  transform: translateY(-4px);
  background: var(--ecoho-surface-soft);
}

.about-name-item h6 {
  margin: 0 0 15px;
  color: var(--ecoho-accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.about-name-item h3 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: 1.12rem;
}

.about-name-item h5 {
  margin: 7px 0 0;
  color: var(--ecoho-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---------- Tablet ---------- */

@media screen and (max-width: 849px) {
  .about-intro-brand,
  .about-intro-message {
    grid-column: 1 / 13;
  }

  .about-intro-brand {
    padding: 45px 40px;
    border-right: 0;
    border-bottom: 1px solid var(--ecoho-border);
  }

  .about-intro-brand h2 {
    margin-top: 24px;
    font-size: 4rem;
  }

  .about-intro-message {
    padding: 45px 40px;
  }

  .about-name-item-01,
  .about-name-item-03 {
    grid-column: 1 / 7;
  }

  .about-name-item-02,
  .about-name-item-04 {
    grid-column: 7 / 13;
    border-right: 0;
  }
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 549px) {
  .about-intro-editorial {
    display: block;
    border-radius: var(--ecoho-radius-md);
  }

  .about-intro-brand {
    padding: 38px 24px;
  }

  .about-intro-brand h2 {
    font-size: 3rem;
  }

  .about-intro-message {
    padding: 38px 24px;
  }

  .about-intro-message h2 {
    font-size: 1.85rem;
  }

  .about-name-item {
    min-height: auto;
    padding: 23px 24px;
    border-right: 0;
  }

  .about-name-item:hover {
    transform: none;
  }
}

.about-message-section .button {
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 5px;
  line-height: 49px;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* ---------- Philosophy ---------- */
.about-philosophy-grid .col-inner,
.about-values-grid .col-inner {
  height: 100%;
}

.about-philosophy-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.about-philosophy-card::after {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: rgba(45, 155, 104, 0.07);
  pointer-events: none;
}

.about-philosophy-number,
.about-philosophy-label,
.about-philosophy-body {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-philosophy-number h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 25px;
  border: 1px solid rgba(22, 80, 160, 0.25);
  border-radius: 50%;
  background: rgba(22, 80, 160, 0.05);
  color: var(--ecoho-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-philosophy-label h6 {
  margin: 0 0 8px;
  color: var(--ecoho-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.about-philosophy-body h3 {
  margin-bottom: 17px;
  color: var(--ecoho-primary-dark);
  font-size: 1.25rem;
  line-height: 1.5;
}

.about-philosophy-body p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

/* ---------- Values ---------- */

.about-value-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-content: start;
  gap: 0 24px;
  min-height: 285px;
  padding: 36px;
  overflow: hidden;
}

.about-value-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-number,
.about-value-english,
.about-value-body {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-value-number h4 {
  margin: 0;
  color: var(--ecoho-primary);
  font-size: 2.65rem;
  font-weight: 300;
  line-height: 1;
}

.about-value-english h6 {
  margin: 0;
  color: var(--ecoho-accent);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: right;
}

.about-value-body {
  grid-column: 1 / -1;
  margin-top: 34px;
}

.about-value-body h3 {
  margin-bottom: 15px;
  color: var(--ecoho-primary-dark);
  font-size: 1.3rem;
  line-height: 1.5;
}

.about-value-body p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

/* ---------- Connecting value ---------- */

.about-connection-section {
  position: relative;
  padding-top: clamp(55px, 7vw, 95px);
  padding-bottom: clamp(55px, 7vw, 95px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(45, 155, 104, 0.25),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 55%,
      var(--ecoho-primary) 100%
    );
}

.about-connection-section::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.about-connection-heading {
  padding-right: 45px;
}

.about-connection-heading h2 {
  margin: 18px 0 20px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.55;
}

.about-connection-heading h4 {
  margin: 0;
  color: var(--ecoho-accent-light);
  font-size: 1.05rem;
  font-weight: 600;
}

.about-connection-flow {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.about-connection-step {
  margin: 0;
  padding: 27px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.about-connection-step h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-connection-step h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.08rem;
}

.about-connection-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  line-height: 1.85;
}

/* ---------- CEO message ---------- */

.about-message-profile {
  position: relative;
  min-height: 360px;
  padding: 45px;
}

.about-message-profile::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.about-message-profile-copy {
  position: relative;
  z-index: 1;
}

.about-message-profile-copy h2 {
  margin: 18px 0 5px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-message-profile-copy h4 {
  margin: 0 0 28px;
  color: var(--ecoho-accent);
  font-size: 0.9rem;
}

.about-message-profile-copy p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.92rem;
  line-height: 1.95;
}

.about-message-copy {
  padding-left: 45px;
}

.about-message-copy h2 {
  margin: 15px 0 20px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.55;
}

.about-message-copy > p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

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

.about-cta-box {
  position: relative;
  overflow: hidden;
}

.about-cta-box::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-box .text,
.about-cta-box .button {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .about-intro-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .about-brand-panel {
    min-height: auto;
  }

  .about-philosophy-card,
  .about-value-card {
    min-height: auto;
  }

  .about-connection-heading {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .about-message-profile {
    min-height: auto;
    margin-bottom: 35px;
  }

  .about-message-copy {
    padding-left: 0;
  }
}

@media screen and (max-width: 549px) {
  .about-brand-panel {
    padding: 38px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .about-brand-heading h2 {
    font-size: 3rem;
  }

  .about-brand-item {
    min-height: 115px;
    padding: 18px 14px;
  }

  .about-philosophy-card {
    padding: 28px 24px;
  }

  .about-value-card {
    display: block;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .about-value-number {
    margin-bottom: 12px;
  }

  .about-value-number h4 {
    font-size: 2.3rem;
  }

  .about-value-english h6 {
    text-align: left;
  }

  .about-value-body {
    margin-top: 28px;
  }

  .about-connection-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .about-message-profile {
    padding: 36px 25px;
    border-radius: var(--ecoho-radius-md);
  }
}

/* =========================================================
   WHY ECOHO PAGE — SAFE FLATSOME STRUCTURE
   Requires: ecoho-root.css
========================================================= */

/* ---------- Intro ---------- */

.why-intro-copy {
  max-width: 720px;
  padding-right: 40px;
}

.why-intro-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 470px;
  padding: 50px 42px;
}

.why-intro-panel::before,
.why-intro-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.why-intro-panel::before {
  top: -100px;
  right: -90px;
  width: 290px;
  height: 290px;
}

.why-intro-panel::after {
  right: 40px;
  bottom: -140px;
  width: 280px;
  height: 280px;
}

.why-intro-panel-heading {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
}

.why-intro-panel-heading h3 {
  margin: 8px 0 42px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.why-visual-item {
  position: relative;
  z-index: 1;
  min-height: 125px;
  margin: 0;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.why-visual-item:nth-of-type(3),
.why-visual-item:nth-of-type(5) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.why-visual-item:nth-of-type(4),
.why-visual-item:nth-of-type(5) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.why-visual-item h6 {
  margin: 0 0 13px;
  color: var(--ecoho-accent-light);
  font-size: 0.68rem;
  font-weight: 800;
}

.why-visual-item h4 {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
}

.why-visual-item h5 {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ---------- Strength cards ---------- */

.why-strength-grid > .col {
  margin-bottom: 24px;
}

.why-strength-grid .col-inner {
  height: 100%;
}

.why-strength-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-content: start;
  gap: 0 25px;
  min-height: 370px;
  padding: 38px;
  overflow: hidden;
}

.why-strength-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-strength-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.07);
  border-radius: 50%;
  background: rgba(22, 80, 160, 0.025);
  pointer-events: none;
}

.why-strength-card:hover::before {
  transform: scaleX(1);
}

.why-strength-number-text,
.why-strength-english-text,
.why-strength-body,
.why-strength-tags {
  position: relative;
  z-index: 1;
  margin: 0;
}

.why-strength-number-text h4 {
  margin: 0;
  color: var(--ecoho-primary);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}

.why-strength-english-text h6 {
  margin: 0;
  color: var(--ecoho-accent);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: right;
}

.why-strength-body {
  grid-column: 1 / -1;
  margin-top: 38px;
}

.why-strength-body h3 {
  margin-bottom: 18px;
  color: var(--ecoho-primary-dark);
  font-size: 1.35rem;
  line-height: 1.5;
}

.why-strength-body p {
  min-height: 90px;
  margin-bottom: 25px;
  color: var(--ecoho-muted);
  font-size: 0.95rem;
  line-height: 1.95;
}

.why-strength-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-strength-tags h6 {
  display: inline-flex;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(22, 80, 160, 0.12);
  border-radius: 30px;
  background: rgba(22, 80, 160, 0.045);
  color: var(--ecoho-primary);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  width: auto;
}

/* ---------- ECOHO role ---------- */

.why-role-section {
  position: relative;
  padding-top: clamp(55px, 7vw, 95px);
  padding-bottom: clamp(55px, 7vw, 95px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(45, 155, 104, 0.25),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 55%,
      var(--ecoho-primary) 100%
    );
}

.why-role-section::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.why-role-heading h2 {
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.55;
}

.why-role-heading h4 {
  margin: 0;
  color: var(--ecoho-accent-light);
  font-size: 1.05rem;
  font-weight: 600;
}

.why-role-flow {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.why-role-step {
  margin: 0;
  padding: 25px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.why-role-step h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-role-step h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.06rem;
}

.why-role-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* ---------- Approach ---------- */

.why-approach-section {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(45, 155, 104, 0.13),
      transparent 30%
    ),
    linear-gradient(135deg, #f6faf8 0%, #f3f7fb 100%);
}

.why-approach-grid > .col {
  margin-bottom: 20px;
}

.why-approach-grid .col-inner {
  height: 100%;
}

.why-approach-point {
  min-height: 125px;
  margin: 0;
  padding: 28px;
}

.why-approach-point h6 {
  margin: 0 0 12px;
  color: var(--ecoho-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.why-approach-point h4 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: 1rem;
  font-weight: 600;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .why-intro-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .why-intro-panel {
    min-height: auto;
  }

  .why-strength-card {
    min-height: auto;
  }

  .why-strength-body p {
    min-height: auto;
  }

  .why-role-heading {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 549px) {
  .why-intro-panel {
    padding: 38px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .why-intro-panel-heading h3 {
    margin-bottom: 30px;
    font-size: 1.65rem;
  }

  .why-visual-item {
    min-height: 110px;
    padding: 18px 14px;
  }

  .why-strength-card {
    display: block;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .why-strength-number-text {
    margin-bottom: 12px;
  }

  .why-strength-number-text h4 {
    font-size: 2.3rem;
  }

  .why-strength-english-text h6 {
    text-align: left;
  }

  .why-strength-body {
    margin-top: 28px;
  }

  .why-role-section {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.why-intro-section .ecoho-eyebrow,
.why-role-section .ecoho-eyebrow {
  justify-content: start;
}

/* =========================================================
   PARTNERSHIP PAGE — SAFE FLATSOME STRUCTURE
   Requires: ecoho-root.css
========================================================= */

/* ---------- Partner cards ---------- */

.partnership-card-grid > .col {
  margin-bottom: 24px;
}

.partnership-card-grid .col-inner {
  height: 100%;
}

.partnership-card {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  align-content: start;
  gap: 0 24px;
  min-height: 295px;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(45, 155, 104, 0.08),
      transparent 36%
    ),
    var(--ecoho-surface);
}

.partnership-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.partnership-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 200px;
  height: 200px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.partnership-card:hover::before {
  transform: scaleX(1);
}

.partnership-card-number,
.partnership-card-english,
.partnership-card-body {
  position: relative;
  z-index: 1;
  margin: 0;
}

.partnership-card-number h4 {
  margin: 0;
  color: var(--ecoho-primary);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}

.partnership-card-english h6 {
  margin: 0;
  color: var(--ecoho-accent);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: right;
}

.partnership-card-body {
  grid-column: 1 / -1;
  margin-top: 38px;
}

.partnership-card-body h3 {
  margin-bottom: 17px;
  color: var(--ecoho-primary-dark);
  font-size: 1.35rem;
  line-height: 1.5;
}

.partnership-card-body p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.95rem;
  line-height: 1.95;
}

/* ---------- ECOHO role ---------- */

.partnership-role-section {
  position: relative;
  padding-top: clamp(55px, 7vw, 95px);
  padding-bottom: clamp(55px, 7vw, 95px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(45, 155, 104, 0.25),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 55%,
      var(--ecoho-primary) 100%
    );
}

.partnership-role-section::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.partnership-role-heading {
  padding-right: 45px;
}

.partnership-role-heading h2 {
  margin: 18px 0 20px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.55;
}

.partnership-role-heading h4 {
  margin: 0;
  color: var(--ecoho-accent-light);
  font-size: 1.05rem;
  font-weight: 600;
}

.partnership-role-flow {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.partnership-role-step {
  margin: 0;
  padding: 25px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.partnership-role-step h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partnership-role-step h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.06rem;
}

.partnership-role-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* ---------- Principles ---------- */

.partnership-principle-grid > .col {
  margin-bottom: 24px;
}

.partnership-principle-grid .col-inner {
  height: 100%;
}

.partnership-principle-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
}

.partnership-principle-card::after {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 110px;
  height: 110px;
  content: "";
  border-radius: 50%;
  background: rgba(45, 155, 104, 0.07);
  pointer-events: none;
}

.partnership-principle-number,
.partnership-principle-english,
.partnership-principle-body {
  position: relative;
  z-index: 1;
  margin: 0;
}

.partnership-principle-number h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 25px;
  border: 1px solid rgba(22, 80, 160, 0.25);
  border-radius: 50%;
  background: rgba(22, 80, 160, 0.05);
  color: var(--ecoho-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.partnership-principle-english h6 {
  min-height: 35px;
  margin: 0 0 8px;
  color: var(--ecoho-accent);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.11em;
}

.partnership-principle-body h3 {
  margin-bottom: 17px;
  color: var(--ecoho-primary-dark);
  font-size: 1.22rem;
  line-height: 1.5;
}

.partnership-principle-body p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

.partnership-closing-message {
  max-width: 850px;
  margin: 0 auto;
  padding: 28px 35px;
  border-top: 1px solid var(--ecoho-border);
  border-bottom: 1px solid var(--ecoho-border);
  text-align: center;
}

.partnership-closing-message h3 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

.partnership-cta-box {
  position: relative;
  overflow: hidden;
}

.partnership-cta-box::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.partnership-cta-box .text,
.partnership-cta-box .button {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .partnership-card,
  .partnership-principle-card {
    min-height: auto;
  }

  .partnership-role-heading {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 549px) {
  .partnership-card {
    display: block;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .partnership-card-number {
    margin-bottom: 12px;
  }

  .partnership-card-number h4 {
    font-size: 2.3rem;
  }

  .partnership-card-english h6 {
    text-align: left;
  }

  .partnership-card-body {
    margin-top: 28px;
  }

  .partnership-role-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .partnership-principle-card {
    padding: 28px 24px;
  }

  .partnership-closing-message {
    padding: 24px 15px;
    text-align: left;
  }
}

/* =========================================================
   BUSINESS PAGE — SAFE FLATSOME STRUCTURE
   Requires: ecoho-root.css
========================================================= */

/* ---------- Intro ---------- */

.business-intro-copy {
  max-width: 740px;
  padding-right: 42px;
}

.business-intro-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 510px;
  padding: 48px 40px;
}

.business-intro-panel::before,
.business-intro-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.business-intro-panel::before {
  top: -110px;
  right: -95px;
  width: 300px;
  height: 300px;
}

.business-intro-panel::after {
  right: 35px;
  bottom: -145px;
  width: 290px;
  height: 290px;
}

.business-intro-panel-heading {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 0;
}

.business-intro-panel-heading h2 {
  margin: 10px 0 5px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.business-intro-panel-heading h4 {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 500;
}

.business-intro-item {
  position: relative;
  z-index: 1;
  min-height: 135px;
  margin: 0;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.business-intro-item-02,
.business-intro-item-04 {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.business-intro-item-03,
.business-intro-item-04 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.business-intro-item h6 {
  margin: 0 0 10px;
  color: var(--ecoho-accent-light);
  font-size: 0.66rem;
  font-weight: 800;
}

.business-intro-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.98rem;
}

.business-intro-item h5 {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 500;
}

/* ---------- Business domains ---------- */

.business-domain-grid .col-inner,
.business-product-grid .col-inner,
.business-global-grid .col-inner {
  height: 100%;
}

.business-domain-card {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  align-content: start;
  gap: 0 24px;
  padding: 38px;
  overflow: hidden;
}

.business-domain-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.business-domain-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.07);
  border-radius: 50%;
  background: rgba(22, 80, 160, 0.025);
  pointer-events: none;
}

.business-domain-card:hover::before {
  transform: scaleX(1);
}

.business-domain-number,
.business-domain-english,
.business-domain-body,
.business-domain-tags {
  position: relative;
  z-index: 1;
  margin: 0;
}

.business-domain-number h4 {
  margin: 0;
  color: var(--ecoho-primary);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
}

.business-domain-english h6 {
  margin: 0;
  color: var(--ecoho-accent);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: right;
}

.business-domain-body {
  grid-column: 1 / -1;
  margin-top: 36px;
}

.business-domain-body h3 {
  margin-bottom: 17px;
  color: var(--ecoho-primary-dark);
  font-size: 1.3rem;
  line-height: 1.55;
}

.business-domain-body p {
  min-height: 90px;
  margin-bottom: 24px;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 1.95;
}

.business-domain-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.business-domain-tags h6 {
  display: inline-flex;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(22, 80, 160, 0.12);
  border-radius: 30px;
  background: rgba(22, 80, 160, 0.045);
  color: var(--ecoho-primary);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  width: fit-content;
}

/* ---------- Integrated value ---------- */

.business-value-section {
  position: relative;
  padding-top: clamp(55px, 7vw, 95px);
  padding-bottom: clamp(55px, 7vw, 95px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(45, 155, 104, 0.25),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 55%,
      var(--ecoho-primary) 100%
    );
}

.business-value-section::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.business-value-heading {
  padding-right: 45px;
}

.business-value-heading h2 {
  margin: 18px 0 20px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.55;
}

.business-value-heading h4 {
  margin: 0;
  color: var(--ecoho-accent-light);
  font-size: 1.05rem;
  font-weight: 600;
}

.business-value-flow {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.business-value-step {
  margin: 0;
  padding: 23px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.business-value-step h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.business-value-step h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.06rem;
}

.business-value-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* ---------- Renewable energy ---------- */

.business-product-card {
  min-height: 285px;
  padding: 30px 25px;
  overflow: hidden;
}

.business-product-card h6 {
  margin: 0 0 24px;
  color: var(--ecoho-accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.business-product-card h3 {
  margin: 0 0 8px;
  color: var(--ecoho-primary-dark);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.business-product-card h4 {
  margin: 0 0 18px;
  color: var(--ecoho-primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.business-product-card p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.87rem;
  line-height: 1.85;
}

.business-policy-grid > .col {
  margin-bottom: 15px;
}

.business-policy-item {
  min-height: 105px;
  margin: 0;
  padding: 24px 20px;
  border: 1px solid var(--ecoho-border);
  background: var(--ecoho-surface-soft);
}

.business-policy-item h6 {
  margin: 0 0 9px;
  color: var(--ecoho-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.business-policy-item h4 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

/* ---------- PPA ---------- */

.business-ppa-section {
  position: relative;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(45, 155, 104, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #0b2f63 0%, #1650a0 70%, #176f76 100%);
}

.business-ppa-heading h2,
.business-ppa-heading p {
  color: #ffffff;
}

.business-ppa-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.business-ppa-grid > .col {
  margin-bottom: 20px;
}

.business-ppa-step {
  min-height: 230px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ecoho-radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  transition:
    transform var(--ecoho-transition),
    background var(--ecoho-transition);
}

.business-ppa-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
}

.business-ppa-step h6 {
  margin: 0 0 18px;
  color: var(--ecoho-accent-light);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.business-ppa-step h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.5;
}

.business-ppa-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.85;
}

/* ---------- Global business ---------- */

.business-global-card {
  min-height: 295px;
  padding: 34px;
  overflow: hidden;
}

.business-global-card h6 {
  margin: 0 0 26px;
  color: var(--ecoho-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.business-global-card h3 {
  margin: 0 0 17px;
  color: var(--ecoho-primary-dark);
  font-size: 1.2rem;
  line-height: 1.55;
}

.business-global-card p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.91rem;
  line-height: 1.9;
}

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

.business-cta-box {
  position: relative;
  overflow: hidden;
}

.business-cta-box::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.business-cta-box .text,
.business-cta-box .button {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .business-intro-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .business-intro-panel {
    min-height: auto;
  }

  .business-domain-card,
  .business-product-card,
  .business-global-card {
    min-height: auto;
  }

  .business-domain-body p {
    min-height: auto;
  }

  .business-value-heading {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 549px) {
  .business-intro-panel {
    padding: 38px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .business-intro-panel-heading h2 {
    font-size: 1.8rem;
  }

  .business-intro-item {
    min-height: 115px;
    padding: 18px 14px;
  }

  .business-domain-card {
    display: block;
    padding: 28px 23px;
    border-radius: 16px;
  }

  .business-domain-number {
    margin-bottom: 12px;
  }

  .business-domain-number h4 {
    font-size: 2.3rem;
  }

  .business-domain-english h6 {
    text-align: left;
  }

  .business-domain-body {
    margin-top: 28px;
  }

  .business-value-section,
  .business-ppa-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .business-product-card,
  .business-global-card {
    padding: 28px 23px;
  }

  .business-ppa-step {
    min-height: auto;
    padding: 25px 22px;
  }
}

.business-intro-section .ecoho-eyebrow {
  justify-content: start;
}

/* =========================================================
   COMPANY PAGE V2
   Same ECOHO format, different layout.
   Requires: ecoho-root.css
========================================================= */

/* ---------- Intro ---------- */
.company-intro-simple {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--ecoho-border);
  border-radius: var(--ecoho-radius-lg);
  background: #ffffff;
  box-shadow: var(--ecoho-shadow-sm);
}

.company-intro-simple::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--ecoho-primary), var(--ecoho-accent));
}

/* ---------- Main content ---------- */

.company-intro-simple-heading {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto;
  padding: 65px 45px 55px;
  text-align: center;
}

.company-intro-simple-heading .ecoho-eyebrow {
  justify-content: center;
}

.company-intro-simple-heading h2 {
  margin: 18px 0 25px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.5;
}

.company-intro-simple-heading .ecoho-lead {
  margin-bottom: 18px;
  color: var(--ecoho-text);
  font-size: 1.02rem;
  line-height: 2;
}

.company-intro-simple-heading p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ecoho-muted);
  font-size: 0.94rem;
  line-height: 2;
}

/* ---------- Information items ---------- */

.company-intro-simple-item {
  min-height: 145px;
  margin: 0;
  padding: 28px 24px;
  border-top: 1px solid var(--ecoho-border);
  border-right: 1px solid var(--ecoho-border);
  background: var(--ecoho-surface-soft);
  text-align: center;
  transition:
    background var(--ecoho-transition),
    transform var(--ecoho-transition);
}

.company-intro-simple-item:last-child {
  border-right: 0;
}

.company-intro-simple-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
}

.company-intro-simple-item h6 {
  margin: 0 0 14px;
  color: var(--ecoho-accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.company-intro-simple-item h3 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: 1.05rem;
  line-height: 1.5;
}

.company-intro-simple-item h5 {
  margin: 7px 0 0;
  color: var(--ecoho-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

/* ---------- Tablet ---------- */

@media screen and (max-width: 849px) {
  .company-intro-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-intro-simple-heading {
    padding: 55px 35px 45px;
  }

  .company-intro-simple-item:nth-child(3) {
    border-right: 0;
  }
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 549px) {
  .company-intro-simple {
    display: block;
    border-radius: var(--ecoho-radius-md);
  }

  .company-intro-simple-heading {
    padding: 45px 24px 38px;
    text-align: left;
  }

  .company-intro-simple-heading .ecoho-eyebrow {
    justify-content: flex-start;
  }

  .company-intro-simple-heading h2 {
    font-size: 1.85rem;
  }

  .company-intro-simple-item {
    min-height: auto;
    padding: 23px 24px;
    border-right: 0;
    text-align: left;
  }

  .company-intro-simple-item:hover {
    transform: none;
  }
}

/* ---------- Company data ---------- */

.company-data-heading {
  position: sticky;
  top: 115px;
  padding-right: 45px;
}

.company-data-heading h2 {
  margin: 14px 0 18px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.company-data-heading .ecoho-eyebrow,
.company-business-heading .ecoho-eyebrow {
  justify-content: start;
}

.company-data-heading p {
  color: var(--ecoho-muted);
  line-height: 1.9;
}

.company-data-table {
  border-top: 2px solid var(--ecoho-primary-dark);
}

.company-data-row {
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  padding: 12px 5px;
  border-bottom: 1px solid var(--ecoho-border);
}

.company-data-row h6 {
  margin: 3px 0 0;
  color: var(--ecoho-primary);
  font-size: 0.74rem;
  font-weight: 700;
}

.company-data-row h3 {
  margin: 0;
  color: var(--ecoho-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.company-data-row p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--ecoho-muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.company-data-row a {
  color: var(--ecoho-primary-dark);
}

/* ---------- Business list ---------- */

.company-business-section {
  position: relative;
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 10%,
      rgba(45, 155, 104, 0.24),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 55%,
      var(--ecoho-primary) 100%
    );
}

.company-business-heading {
  padding-right: 45px;
}

.company-business-heading h2 {
  margin: 17px 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.company-business-heading p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.95;
}

.company-business-heading .white.button.is-outline {
  min-width: 175px;
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  min-height: 49px;
  margin: 5px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 5px;
  line-height: 49px;
  color: #fff !important;
}

.company-business-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.company-business-item {
  margin: 0;
  padding: 25px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company-business-item h6 {
  margin: 0 0 8px;
  color: var(--ecoho-accent-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.company-business-item h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.55;
}

.company-business-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.87rem;
  line-height: 1.85;
}

/* ---------- Offices ---------- */

.company-offices-grid > .col {
  margin-bottom: 22px;
}

.company-offices-grid .col-inner {
  height: 100%;
}

.company-office-card {
  position: relative;
  height: 100%;
  min-height: 370px;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--ecoho-radius-lg);
}

.company-office-card-head {
  border: 1px solid var(--ecoho-border);
  background: var(--ecoho-surface-soft);
}

.company-office-card-branch {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(45, 155, 104, 0.22),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--ecoho-primary-dark) 0%,
      var(--ecoho-primary) 100%
    );
  box-shadow: var(--ecoho-shadow-dark);
}

.company-office-card::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.company-office-card-branch::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.company-office-label,
.company-office-address,
.company-office-english {
  position: relative;
  z-index: 1;
}

.company-office-label h6 {
  margin: 0 0 8px;
  color: var(--ecoho-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-office-label h4 {
  margin: 0 0 38px;
  color: var(--ecoho-primary-dark);
  font-size: 1.3rem;
}

.company-office-card-branch .company-office-label h6 {
  color: var(--ecoho-accent-light);
}

.company-office-card-branch .company-office-label h4 {
  color: #ffffff;
}

.company-office-address {
  padding-top: 25px;
  border-top: 1px solid var(--ecoho-border);
}

.company-office-card-branch .company-office-address {
  border-color: rgba(255, 255, 255, 0.18);
}

.company-office-address h3 {
  margin: 0 0 13px;
  color: var(--ecoho-accent);
  font-size: 1rem;
}

.company-office-card-branch .company-office-address h3 {
  color: var(--ecoho-accent-light);
}

.company-office-address p {
  margin: 4px 0;
  color: var(--ecoho-text);
  line-height: 1.75;
}

.company-office-card-branch .company-office-address p {
  color: #ffffff;
}

.company-office-english {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--ecoho-border);
}

.company-office-card-branch .company-office-english {
  border-color: rgba(255, 255, 255, 0.18);
}

.company-office-english h6 {
  margin: 0 0 10px;
  color: var(--ecoho-accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.company-office-card-branch .company-office-english h6 {
  color: var(--ecoho-accent-light);
}

.company-office-english p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.company-office-card-branch .company-office-english p {
  color: rgba(255, 255, 255, 0.68);
}

.company-map {
  overflow: hidden;
  border-radius: var(--ecoho-radius-lg);
  box-shadow: var(--ecoho-shadow-sm);
}

.company-map,
.company-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  margin: 0;
}

/* ---------- Region ---------- */

.company-region-copy {
  padding-right: 42px;
}

.company-region-copy h2 {
  margin: 15px 0 20px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.45;
}

.company-region-copy p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

.company-region-panel {
  padding: 35px 38px;
}

.company-region-item {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--ecoho-border);
}

.company-region-item:last-child {
  border-bottom: 0;
}

.company-region-item h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.company-region-item h3 {
  margin: 0 0 7px;
  color: var(--ecoho-primary-dark);
  font-size: 1.12rem;
}

.company-region-item p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.87rem;
  line-height: 1.8;
}

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

.company-cta-box {
  position: relative;
  overflow: hidden;
}

.company-cta-box::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.company-cta-box .text,
.company-cta-box .button {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .company-intro-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .company-summary-panel {
    min-height: auto;
  }

  .company-data-heading {
    position: static;
    padding-right: 0;
    padding-bottom: 35px;
  }

  .company-business-heading {
    padding-right: 0;
    padding-bottom: 38px;
  }

  .company-office-card {
    min-height: auto;
  }

  .company-region-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 549px) {
  .company-summary-panel {
    padding: 38px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .company-summary-heading h2 {
    font-size: 3rem;
  }

  .company-summary-item {
    min-height: 110px;
    padding: 17px 13px;
  }

  .company-data-row {
    display: block;
    padding: 23px 0;
  }

  .company-data-row h6 {
    margin-bottom: 11px;
  }

  .company-data-row p {
    margin-top: 5px;
  }

  .company-business-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .company-office-card {
    padding: 30px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .company-map,
  .company-map iframe {
    height: 340px;
  }

  .company-region-panel {
    padding: 28px 24px;
    border-radius: var(--ecoho-radius-md);
  }
}

/* =========================================================
   ECOHO HOME PAGE
   Requires: ecoho-root.css
========================================================= */

/* ---------- Hero ---------- */

.home-hero-section,
.home-hero-section > .section-content {
  padding: 0;
}

.home-hero-banner {
  position: relative;
}

.home-hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(7, 31, 67, 0.9) 0%,
    rgba(7, 31, 67, 0.68) 52%,
    rgba(7, 31, 67, 0.18) 100%
  );
  pointer-events: none;
}

.home-hero-banner .banner-inner,
.home-hero-banner .text-box {
  z-index: 2;
}

.home-hero-copy h6 {
  margin: 0 0 20px;
  color: var(--ecoho-accent-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-hero-copy h2 {
  max-width: 850px;
  margin: 0 0 15px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5.2vw, 3rem);
  line-height: 1.35;
}

.home-hero-copy h3 {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.home-hero-copy p {
  max-width: 760px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.95;
}

.home-hero-button {
  min-width: 170px;
  min-height: 50px;
  margin: 5px 8px 5px 0;
  line-height: 50px !important;
  border-radius: 5px;
  border: 1px solid !important;
}

/* ---------- About ---------- */

.home-about-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.home-about-brand {
  padding: 35px 45px 35px 0;
  border-right: 1px solid var(--ecoho-border);
}

.home-about-brand .ecoho-eyebrow {
  justify-content: left;
}

.home-about-brand h2 {
  margin: 24px 0 22px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.home-about-brand h4 {
  margin: 5px 0;
  color: var(--ecoho-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.home-about-copy {
  padding-left: 50px;
}

.home-about-copy h2 {
  margin: 0 0 22px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.5;
}

.home-about-copy p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

a.button,
input[type="button"].button,
input[type="reset"].button,
input[type="submit"],
input[type="submit"].button {
  min-height: 50px;
  border-radius: 5px;
  line-height: 50px;
}

.white.button.is-outline {
  color: #fff !important;
  line-height: 48px !important;
}

.white.button.is-outline:hover {
  color: var(--ecoho-primary) !important;
}

/* ---------- Business domains ---------- */

.home-business-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background: var(--ecoho-surface-soft);
}

.home-business-grid > .col {
  margin-bottom: 18px;
}

.home-business-grid .col-inner {
  height: 100%;
}

.home-business-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--ecoho-border);
  border-radius: var(--ecoho-radius-md);
  background: #ffffff;
  transition:
    transform var(--ecoho-transition),
    box-shadow var(--ecoho-transition);
}

.home-business-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--ecoho-shadow-md);
}

.home-business-number,
.home-business-copy {
  margin: 0;
}

.home-business-number h4 {
  margin: 0;
  color: var(--ecoho-primary);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.home-business-copy h6 {
  margin: 0 0 10px;
  color: var(--ecoho-accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-business-copy h3 {
  margin: 0 0 14px;
  color: var(--ecoho-primary-dark);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-business-copy p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

/* ---------- Energy and PPA ---------- */

.home-solutions-section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.home-solutions-section .col-inner {
  height: 100%;
}

.home-solution-panel {
  height: 100%;
  min-height: 490px;
  padding: clamp(38px, 5vw, 55px);
  border-radius: var(--ecoho-radius-lg);
}

.home-energy-panel {
  border: 1px solid var(--ecoho-border);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(45, 155, 104, 0.13),
      transparent 28%
    ),
    #ffffff;
  box-shadow: var(--ecoho-shadow-sm);
}

.home-ppa-panel {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(45, 155, 104, 0.28),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--ecoho-primary-dark) 0%,
      var(--ecoho-primary) 100%
    );
  box-shadow: var(--ecoho-shadow-dark);
}

.home-solution-heading h6 {
  margin: 0 0 16px;
  color: var(--ecoho-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-solution-heading h2 {
  margin: 0 0 18px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.5;
}

.home-solution-heading p {
  margin-bottom: 28px;
  color: var(--ecoho-muted);
  line-height: 1.9;
}

.home-ppa-panel .home-solution-heading h6 {
  color: var(--ecoho-accent-light);
}

.home-ppa-panel .home-solution-heading h2 {
  color: #ffffff;
}

.home-ppa-panel .home-solution-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.home-solution-list {
  margin: 0 0 30px;
  border-top: 1px solid var(--ecoho-border);
}

.home-solution-list h4 {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--ecoho-border);
  color: var(--ecoho-primary-dark);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.home-ppa-panel .home-solution-list {
  border-color: rgba(255, 255, 255, 0.17);
}

.home-ppa-panel .home-solution-list h4 {
  border-color: rgba(255, 255, 255, 0.17);
  color: #ffffff;
}

/* ---------- Global ---------- */

.home-global-heading h2 {
  margin: 15px 0 20px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.45;
}

.home-global-heading p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

.home-global-directions {
  padding: 18px 36px;
  border: 1px solid var(--ecoho-border);
  border-radius: var(--ecoho-radius-lg);
  background: var(--ecoho-surface-soft);
}

.home-global-item {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--ecoho-border);
}

.home-global-item:last-child {
  border-bottom: 0;
}

.home-global-item h6 {
  margin: 0 0 8px;
  color: var(--ecoho-accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-global-item h3 {
  margin: 0 0 8px;
  color: var(--ecoho-primary-dark);
  font-size: 1.08rem;
}

.home-global-item p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.87rem;
  line-height: 1.8;
}

/* ---------- Why ECOHO ---------- */

.home-why-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background: var(--ecoho-surface-soft);
}

.home-why-grid {
  border-top: 1px solid var(--ecoho-border);
  border-left: 1px solid var(--ecoho-border);
}

.home-why-item {
  min-height: 225px;
  margin: 0;
  padding: 30px 24px;
  border-right: 1px solid var(--ecoho-border);
  border-bottom: 1px solid var(--ecoho-border);
  background: rgba(255, 255, 255, 0.68);
}

.home-why-item h6 {
  margin: 0 0 35px;
  color: var(--ecoho-accent);
  font-size: 0.68rem;
  font-weight: 800;
}

.home-why-item h3 {
  margin: 0 0 14px;
  color: var(--ecoho-primary-dark);
  font-size: 1.04rem;
  line-height: 1.5;
}

.home-why-item p {
  margin: 0;
  color: var(--ecoho-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ---------- Partnership ---------- */

.home-partnership-section {
  position: relative;
  padding-top: clamp(65px, 8vw, 100px);
  padding-bottom: clamp(65px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(45, 155, 104, 0.26),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      var(--ecoho-primary-deep) 0%,
      var(--ecoho-primary-dark) 58%,
      var(--ecoho-primary) 100%
    );
}

.home-partnership-copy {
  padding-right: 50px;
}

.home-partnership-copy h2 {
  margin: 18px 0 20px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.5;
}

.home-partnership-copy p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.95;
}

.home-partnership-groups {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.home-partner-item {
  margin: 0;
  padding: 23px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.home-partner-item h6 {
  margin: 0 0 7px;
  color: var(--ecoho-accent-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-partner-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
}

/* ---------- CEO message ---------- */

.home-message-profile {
  padding: 42px;
}

.home-message-profile h2 {
  margin: 17px 0 5px;
  color: var(--ecoho-primary-dark);
  font-size: 2rem;
}

.home-message-profile h4 {
  margin: 0 0 25px;
  color: var(--ecoho-accent);
  font-size: 0.86rem;
}

.home-message-profile p {
  margin: 0;
  color: var(--ecoho-muted);
  line-height: 1.9;
}

.home-message-copy {
  padding-left: 48px;
}

.home-message-copy h2 {
  margin: 15px 0 20px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.5;
}

.home-message-copy p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

/* ---------- News ---------- */

.home-news-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--ecoho-surface-soft);
}

.home-news-heading h2 {
  margin: 13px 0 13px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.home-news-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--ecoho-muted);
  line-height: 1.9;
}

/* ---------- Company ---------- */

.home-company-copy {
  padding-right: 42px;
}

.home-company-copy h2 {
  margin: 15px 0 10px;
  color: var(--ecoho-primary-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.home-company-copy p:last-child {
  color: var(--ecoho-muted);
  line-height: 2;
}

.home-company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ecoho-border);
  border-left: 1px solid var(--ecoho-border);
}

.home-company-fact {
  min-height: 125px;
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--ecoho-border);
  border-bottom: 1px solid var(--ecoho-border);
  background: var(--ecoho-surface-soft);
}

.home-company-fact h6 {
  margin: 0 0 12px;
  color: var(--ecoho-accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-company-fact h3 {
  margin: 0;
  color: var(--ecoho-primary-dark);
  font-size: 1rem;
}

/* ---------- Contact ---------- */

.home-contact-box {
  position: relative;
  overflow: hidden;
}

.home-contact-box::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(22, 80, 160, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.home-contact-box .text,
.home-contact-box .button {
  position: relative;
  z-index: 1;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 849px) {
  .home-about-brand {
    padding-right: 0;
    padding-bottom: 35px;
    border-right: 0;
    border-bottom: 1px solid var(--ecoho-border);
  }

  .home-about-copy {
    padding-top: 35px;
    padding-left: 0;
  }

  .home-global-heading,
  .home-company-copy {
    padding-right: 0;
    padding-bottom: 35px;
  }

  .home-partnership-copy {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .home-message-profile {
    margin-bottom: 35px;
  }

  .home-message-copy {
    padding-left: 0;
  }
}

@media screen and (max-width: 549px) {
  .home-hero-banner {
    min-height: 690px;
  }

  .home-hero-banner::after {
    background: rgba(7, 31, 67, 0.8);
  }

  .home-hero-copy h2 {
    font-size: 2rem;
  }

  .home-hero-copy h3 {
    font-size: 0.95rem;
  }

  .home-hero-copy p {
    font-size: 0.9rem;
  }

  .home-hero-button {
    width: 100%;
    margin-right: 0;
  }

  .home-about-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .home-about-brand h2 {
    font-size: 3.5rem;
  }

  .home-business-item {
    display: block;
    min-height: auto;
    padding: 27px 23px;
  }

  .home-business-number {
    margin-bottom: 17px;
  }

  .home-solution-panel {
    min-height: auto;
    padding: 35px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .home-global-directions,
  .home-message-profile {
    padding: 28px 24px;
    border-radius: var(--ecoho-radius-md);
  }

  .home-why-item {
    min-height: 190px;
    padding: 25px 18px;
  }

  .home-why-item h6 {
    margin-bottom: 25px;
  }

  .home-partnership-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .home-company-fact {
    min-height: 110px;
    padding: 19px 15px;
  }
}

/* =========================================================
   ECOHO GLOBAL SYNC LAYER
   Keep this block at the END of all page CSS.
   It normalizes semantic elements without flattening layouts.
========================================================= */

/* ---------- Page / intro titles ---------- */

.ecoho-title-xl,
.about-intro-message h2,
.company-intro-simple-heading h2 {
  font-size: var(--ecoho-fs-page-title);
  line-height: var(--ecoho-lh-title);
}

/* ---------- Standard section titles ---------- */

.ecoho-section-heading h2,
.about-philosophy-section .ecoho-section-heading h2,
.about-values-section .ecoho-section-heading h2,
.partnership-principles-heading h2,
.business-domains-section .ecoho-section-heading h2,
.business-energy-section .ecoho-section-heading h2,
.business-global-section .ecoho-section-heading h2,
.company-data-heading h2,
.company-region-copy h2,
.home-about-copy h2,
.home-solution-heading h2,
.home-global-heading h2,
.home-message-copy h2,
.home-news-heading h2,
.home-company-copy h2 {
  font-size: var(--ecoho-fs-section-title);
  line-height: var(--ecoho-lh-title);
}

/* ---------- Dark / split panel titles ---------- */

.about-connection-heading h2,
.why-role-heading h2,
.partnership-role-heading h2,
.business-value-heading h2,
.company-business-heading h2,
.home-partnership-copy h2 {
  font-size: var(--ecoho-fs-section-title);
  line-height: 1.52;
}

/* ---------- Secondary panel titles ---------- */

.about-message-profile-copy h2,
.about-message-copy h2,
.why-intro-panel-heading h3,
.business-intro-panel-heading h2,
.company-office-label h4,
.home-message-profile h2 {
  font-size: var(--ecoho-fs-panel-title);
  line-height: var(--ecoho-lh-title);
}

/* ---------- Card titles ---------- */

.about-philosophy-body h3,
.about-value-body h3,
.why-strength-body h3,
.partnership-card-body h3,
.partnership-principle-body h3,
.business-domain-body h3,
.business-global-card h3,
.company-office-label h4 {
  font-size: var(--ecoho-fs-card-title);
  line-height: 1.55;
}

/* ---------- Compact item titles ---------- */

.about-name-item h3,
.about-connection-step h3,
.why-role-step h3,
.why-approach-point h4,
.partnership-role-step h3,
.business-intro-item h3,
.business-value-step h3,
.business-product-card h3,
.business-policy-item h4,
.business-ppa-step h3,
.company-intro-simple-item h3,
.company-data-row h3,
.company-business-item h3,
.company-office-address h3,
.company-region-item h3,
.home-business-copy h3,
.home-global-item h3,
.home-why-item h3,
.home-partner-item h3,
.home-company-fact h3 {
  font-size: var(--ecoho-fs-item-title);
  line-height: 1.55;
}

/* ---------- Eyebrows and English labels ---------- */

.ecoho-eyebrow,
.about-philosophy-label h6,
.about-value-english h6,
.about-connection-step h6,
.why-strength-english-text h6,
.why-role-step h6,
.why-approach-point h6,
.partnership-card-english h6,
.partnership-role-step h6,
.partnership-principle-english h6,
.business-intro-item h6,
.business-domain-english h6,
.business-value-step h6,
.business-product-card h6,
.business-policy-item h6,
.business-ppa-step h6,
.business-global-card h6,
.company-intro-simple-item h6,
.company-data-row h6,
.company-business-item h6,
.company-office-label h6,
.company-office-english h6,
.company-region-item h6,
.home-hero-copy h6,
.home-business-copy h6,
.home-solution-heading h6,
.home-global-item h6,
.home-why-item h6,
.home-partner-item h6,
.home-company-fact h6 {
  font-size: var(--ecoho-fs-eyebrow);
  line-height: 1.45;
  letter-spacing: 0.11em;
}

/* ---------- Main body text ---------- */

.about-intro-message p,
.about-philosophy-body p,
.about-value-body p,
.about-message-profile-copy p,
.about-message-copy p,
.why-strength-body p,
.partnership-card-body p,
.partnership-principle-body p,
.business-domain-body p,
.business-global-card p,
.company-intro-simple-heading p,
.company-data-row p,
.company-region-copy p,
.home-about-copy p,
.home-solution-heading p,
.home-global-heading p,
.home-message-profile p,
.home-message-copy p,
.home-news-heading p,
.home-company-copy p {
  font-size: var(--ecoho-fs-body);
  line-height: var(--ecoho-lh-body);
}

/* ---------- Compact body text ---------- */

.about-connection-step p,
.why-role-step p,
.partnership-role-step p,
.business-value-step p,
.business-product-card p,
.business-ppa-step p,
.company-business-item p,
.company-office-english p,
.company-region-item p,
.home-business-copy p,
.home-global-item p,
.home-why-item p {
  font-size: var(--ecoho-fs-body-compact);
  line-height: var(--ecoho-lh-compact);
}

/* ---------- Leads ---------- */

.ecoho-lead,
.about-intro-message .ecoho-lead,
.company-intro-simple-heading .ecoho-lead,
.home-about-copy .ecoho-lead,
.home-global-heading .ecoho-lead,
.home-message-copy .ecoho-lead,
.home-company-copy .ecoho-lead {
  font-size: var(--ecoho-fs-lead);
  line-height: var(--ecoho-lh-body);
}

/* ---------- Number scale ---------- */

.about-value-number h4,
.why-strength-number-text h4,
.partnership-card-number h4,
.business-domain-number h4,
.home-business-number h4 {
  font-size: var(--ecoho-fs-number);
  line-height: 1;
}

/* ---------- Card radius and visual rhythm ---------- */

.about-philosophy-card,
.about-value-card,
.why-strength-card,
.why-approach-point,
.partnership-card,
.partnership-principle-card,
.business-domain-card,
.business-product-card,
.business-global-card,
.company-office-card,
.home-business-item,
.home-solution-panel,
.home-message-profile {
  border-radius: var(--ecoho-radius-md);
}

.about-philosophy-card,
.about-value-card,
.why-strength-card,
.partnership-card,
.partnership-principle-card,
.business-domain-card,
.business-global-card {
  padding: var(--ecoho-card-pad);
}

/* ---------- Consistent dark-section spacing ---------- */

.about-connection-section,
.why-role-section,
.partnership-role-section,
.business-value-section,
.company-business-section,
.home-partnership-section {
  padding-top: var(--ecoho-section-space);
  padding-bottom: var(--ecoho-section-space);
}

/* ---------- Consistent CTA ---------- */

.about-cta-box h2,
.why-cta-section .ecoho-cta-box h2,
.partnership-cta-box h2,
.business-cta-box h2,
.company-cta-box h2,
.home-contact-box h2 {
  font-size: var(--ecoho-fs-section-title);
  line-height: var(--ecoho-lh-title);
}

/* ---------- Home hero remains intentionally larger ---------- */

.home-hero-copy h2 {
  font-size: var(--ecoho-fs-hero);
  line-height: 1.35;
}

/* ---------- Mobile alignment ---------- */

@media screen and (max-width: 549px) {
  .about-value-number h4,
  .why-strength-number-text h4,
  .partnership-card-number h4,
  .business-domain-number h4,
  .home-business-number h4 {
    font-size: 2.25rem;
  }

  .about-intro-message h2,
  .company-intro-simple-heading h2,
  .ecoho-title-xl {
    font-size: var(--ecoho-fs-page-title);
  }

  .about-connection-heading h2,
  .why-role-heading h2,
  .partnership-role-heading h2,
  .business-value-heading h2,
  .company-business-heading h2,
  .home-partnership-copy h2 {
    font-size: var(--ecoho-fs-section-title);
  }
}

/* =========================================================
   ECOHO COMPACT SCALE — SMALLER & CLEANER
   Keep this block at the very END of the CSS.
========================================================= */

:root {
  /* Smaller typography */
  --ecoho-fs-hero: clamp(2rem, 4vw, 3rem);
  --ecoho-fs-page-title: clamp(1.85rem, 3.2vw, 2.5rem);
  --ecoho-fs-section-title: clamp(1.65rem, 2.5vw, 2.1rem);
  --ecoho-fs-panel-title: clamp(1.5rem, 2.2vw, 1.9rem);
  --ecoho-fs-card-title: 1.1rem;
  --ecoho-fs-item-title: 0.98rem;
  --ecoho-fs-lead: 0.98rem;
  --ecoho-fs-body: 0.9rem;
  --ecoho-fs-body-compact: 0.84rem;
  --ecoho-fs-eyebrow: 0.62rem;
  --ecoho-fs-meta: 0.68rem;
  --ecoho-fs-number: 2.2rem;

  /* Tighter rhythm */
  --ecoho-lh-title: 1.42;
  --ecoho-lh-body: 1.82;
  --ecoho-lh-compact: 1.72;

  /* Smaller spacing */
  --ecoho-section-space: 64px;
  --ecoho-card-pad: 28px;
  --ecoho-card-gap: 18px;
  --ecoho-button-height: 44px;

  /* Smaller corners */
  --ecoho-radius-sm: 8px;
  --ecoho-radius-md: 14px;
  --ecoho-radius-lg: 18px;

  /* Softer shadow */
  --ecoho-shadow-sm: 0 8px 26px rgba(16, 45, 82, 0.055);
  --ecoho-shadow-md: 0 14px 38px rgba(16, 45, 82, 0.1);
  --ecoho-shadow-dark: 0 18px 48px rgba(11, 47, 99, 0.18);
}

/* ---------- Global section spacing ---------- */

.ecoho-section {
  padding-right: 12px;
  padding-left: 12px;
}

.about-connection-section,
.why-role-section,
.partnership-role-section,
.business-value-section,
.business-ppa-section,
.company-business-section,
.home-partnership-section,
.home-business-section,
.home-news-section {
  padding-top: var(--ecoho-section-space);
  padding-bottom: var(--ecoho-section-space);
}

/* ---------- Headings ---------- */

.ecoho-title-xl,
.about-intro-message h2,
.company-intro-simple-heading h2 {
  margin-bottom: 18px;
}

.ecoho-section-heading h2,
.company-data-heading h2,
.company-region-copy h2,
.home-about-copy h2,
.home-solution-heading h2,
.home-global-heading h2,
.home-message-copy h2,
.home-news-heading h2,
.home-company-copy h2 {
  margin-top: 12px;
  margin-bottom: 15px;
}

.about-connection-heading h2,
.why-role-heading h2,
.partnership-role-heading h2,
.business-value-heading h2,
.company-business-heading h2,
.home-partnership-copy h2 {
  margin-top: 14px;
  margin-bottom: 16px;
}

/* ---------- Eyebrows ---------- */

.ecoho-eyebrow {
  gap: 8px;
  letter-spacing: 0.12em;
}

.ecoho-eyebrow::before {
  width: 22px;
  flex-basis: 22px;
}

/* ---------- Paragraphs ---------- */

.ecoho-lead {
  margin-bottom: 14px;
}

.ecoho-copy p,
.ecoho-section-heading p,
.ecoho-cta-box p {
  margin-bottom: 14px;
}

/* ---------- Cards ---------- */

.ecoho-card,
.about-philosophy-card,
.about-value-card,
.why-strength-card,
.why-approach-point,
.partnership-card,
.partnership-principle-card,
.business-domain-card,
.business-product-card,
.business-global-card,
.company-office-card,
.home-business-item,
.home-solution-panel,
.home-message-profile {
  border-radius: var(--ecoho-radius-md);
}

.about-philosophy-card,
.about-value-card,
.why-strength-card,
.partnership-card,
.partnership-principle-card,
.business-domain-card,
.business-global-card {
  padding: var(--ecoho-card-pad);
}

/* ---------- Specific large cards ---------- */

.why-strength-card,
.business-domain-card {
  min-height: 320px;
}

.partnership-card {
  min-height: 255px;
}

.partnership-principle-card {
  min-height: 285px;
}

.about-value-card {
  min-height: 250px;
}

.business-product-card {
  min-height: 245px;
  padding: 25px 22px;
}

.business-global-card {
  min-height: 255px;
}

.company-office-card {
  min-height: 320px;
  padding: 30px;
}

.home-business-item {
  min-height: 210px;
  padding: 26px;
}

.home-solution-panel {
  min-height: 420px;
  padding: 38px;
}

.home-message-profile {
  padding: 34px;
}

/* ---------- Number blocks ---------- */

.about-value-number h4,
.why-strength-number-text h4,
.partnership-card-number h4,
.business-domain-number h4,
.home-business-number h4 {
  font-size: var(--ecoho-fs-number);
}

/* ---------- Inner card spacing ---------- */

.about-value-body,
.why-strength-body,
.partnership-card-body,
.business-domain-body {
  margin-top: 26px;
}

.about-philosophy-number h4,
.partnership-principle-number h4 {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}

.about-philosophy-body h3,
.about-value-body h3,
.why-strength-body h3,
.partnership-card-body h3,
.partnership-principle-body h3,
.business-domain-body h3,
.business-global-card h3 {
  margin-bottom: 12px;
}

/* ---------- Dark flow sections ---------- */

.about-connection-step,
.why-role-step,
.partnership-role-step,
.business-value-step,
.company-business-item,
.home-partner-item {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ---------- Buttons ---------- */

.ecoho-section .button,
.ecoho-home .button,
.home-hero-section .button,
.company-business-section .button,
a.button,
input[type="button"].button,
input[type="reset"].button,
input[type="submit"],
input[type="submit"].button {
  min-height: var(--ecoho-button-height);
  padding-right: 21px;
  padding-left: 21px;
  border-radius: 4px;
  line-height: calc(var(--ecoho-button-height) - 2px);
  font-size: 0.82rem;
}

.white.button.is-outline,
.home-hero-button {
  line-height: calc(var(--ecoho-button-height) - 2px) !important;
}

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

.ecoho-cta-box {
  padding: clamp(38px, 5vw, 56px);
  border-radius: var(--ecoho-radius-lg);
}

.ecoho-cta-box p {
  max-width: 660px;
  margin-bottom: 24px;
}

/* ---------- Home hero ---------- */

.home-hero-copy h6 {
  margin-bottom: 14px;
}

.home-hero-copy h2 {
  max-width: 760px;
  margin-bottom: 11px;
}

.home-hero-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
}

.home-hero-copy p {
  max-width: 680px;
  margin-bottom: 23px;
  font-size: 0.92rem;
  line-height: 1.82;
}

.home-hero-button {
  min-width: 150px;
}

/* ---------- Home about ---------- */

.home-about-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.home-about-brand {
  padding-top: 25px;
  padding-bottom: 25px;
}

.home-about-brand h2 {
  margin-top: 18px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 6vw, 5rem);
}

/* ---------- Intro panels ---------- */

.why-intro-panel,
.business-intro-panel {
  min-height: 420px;
  padding: 40px 34px;
}

.why-visual-item,
.business-intro-item {
  min-height: 108px;
  padding: 18px;
}

/* ---------- Company ---------- */

.company-intro-simple-heading {
  padding: 50px 38px 42px;
}

.company-intro-simple-item {
  min-height: 120px;
  padding: 22px 18px;
}

.company-data-row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.company-region-panel {
  padding: 28px 30px;
}

/* ---------- Maps ---------- */

.company-map,
.company-map iframe {
  height: 380px;
}

/* ---------- Tablet ---------- */

@media screen and (max-width: 849px) {
  :root {
    --ecoho-section-space: 54px;
    --ecoho-card-pad: 25px;
    --ecoho-fs-hero: clamp(1.9rem, 6vw, 2.65rem);
    --ecoho-fs-page-title: clamp(1.75rem, 4.5vw, 2.25rem);
    --ecoho-fs-section-title: clamp(1.55rem, 3.8vw, 1.95rem);
  }

  .home-about-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-solution-panel {
    min-height: auto;
  }
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 549px) {
  :root {
    --ecoho-section-space: 44px;
    --ecoho-card-pad: 22px;
    --ecoho-fs-hero: 1.8rem;
    --ecoho-fs-page-title: 1.68rem;
    --ecoho-fs-section-title: 1.52rem;
    --ecoho-fs-panel-title: 1.45rem;
    --ecoho-fs-card-title: 1.05rem;
    --ecoho-fs-item-title: 0.94rem;
    --ecoho-fs-lead: 0.94rem;
    --ecoho-fs-body: 0.88rem;
    --ecoho-fs-body-compact: 0.82rem;
  }

  .ecoho-section {
    padding-right: 8px;
    padding-left: 8px;
  }

  .ecoho-title-xl,
  .about-intro-message h2,
  .company-intro-simple-heading h2 {
    margin-bottom: 15px;
  }

  .home-hero-banner {
    min-height: 610px;
  }

  .home-about-brand h2 {
    font-size: 3rem;
  }

  .why-strength-card,
  .partnership-card,
  .business-domain-card,
  .about-value-card,
  .business-global-card,
  .company-office-card,
  .home-business-item {
    min-height: auto;
    padding: 22px;
  }

  .home-solution-panel,
  .home-message-profile,
  .company-region-panel {
    padding: 26px 22px;
  }

  .company-intro-simple-heading {
    padding: 38px 22px 32px;
  }

  .company-intro-simple-item {
    min-height: auto;
    padding: 19px 22px;
  }

  .ecoho-cta-box {
    padding: 34px 22px;
  }

  .company-map,
  .company-map iframe {
    height: 320px;
  }
}
