/*
 Theme Name:   Hello Child Zenvora
 Theme URI:    https://zenvora.partners
 Description:  Child theme for Zenvora Growth Partners
 Author:       Dativa Dwi
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-child-zenvora
*/

/* ============================================================
   DESIGN TOKENS — Single source of truth
   ============================================================ */
:root {
  --color-primary:       #082240;   /* Primary Dark Blue */
  --color-secondary:     #162D56;   /* Secondary Blue */
  --color-accent:        #D6AC56;   /* Accent Gold */
  --color-green-deep:    #084439;   /* Deep Green */
  --color-green-sage:    #719281;   /* Sage Green */
  --color-green-light:   #147e38;   /* Light Green (used sparingly) */
  --color-gray-light:    #F0F3F8;   /* Light Gray (backgrounds) */
  --color-gray-text:     #596478;   /* Text Gray */
  --color-blue: #1956E2; /* Bright Blue (used sparingly for accents) */
  --color-white:         #FFFFFF;

  --font-heading:        'Manrope', sans-serif;
  --font-body:           'Inter', sans-serif;

  --weight-heading:      700;
  --weight-body:         400;

  --radius-card:         12px;
  --radius-btn:          12px;

  --shadow-card:         0px 6px 20px rgba(0, 0, 0, 0.04);
  --shadow-card-hover:   0px 12px 32px rgba(0, 0, 0, 0.10);

  --container-width:     1200px;
  --section-pad-desktop: 80px;
  --section-pad-tablet:  60px;
  --section-pad-mobile:  40px;

  --container-width: 1200px;
}


/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  color: var(--color-gray-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  color: var(--color-secondary);
  line-height: 1.2;
  margin-top: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.elementor-section.elementor-section-boxed > .elementor-container,
.e-con.e-con-boxed > .e-con-inner {
    max-width: var(--container-width) !important;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section, .section-pad {
  padding-top: var(--section-pad-desktop) !important;
  padding-bottom: var(--section-pad-desktop) !important;
}

#content {
    min-height: calc(100vh - 440px);
    max-width: 100%;
}

:where(.wp-block-columns) {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
  section, .section-pad {
    padding-top: var(--section-pad-tablet) !important;
    padding-bottom: var(--section-pad-tablet) !important;
  }
}

@media (max-width: 767px) {
  section, .section-pad {
    padding-top: var(--section-pad-mobile) !important;
    padding-bottom: var(--section-pad-mobile) !important;
  }
}


/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, .h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3, .h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4, .h4 { font-size: 1.125rem; }

p { line-height: 1.7; margin-top: 0; }

.text-accent   { color: var(--color-accent); }
.text-green    { color: var(--color-green-deep); }
.text-green-sage { color: var(--color-green-sage); }
.text-white    { color: var(--color-white); }
.text-primary  { color: var(--color-primary); }
.text-light-blue { color: var(--color-blue); }

.text-bold { font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */

/* Primary — Gold (used on dark backgrounds & main CTAs) */
.btn-primary,
.elementor-button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-primary:hover,
.elementor-button.btn-primary:hover {
  background-color: #C49A45;
  box-shadow: 0 4px 16px rgba(214, 172, 86, 0.35);
}

/* Secondary — Dark Navy (used on light backgrounds) */
.btn-secondary,
.elementor-button.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-secondary:hover,
.elementor-button.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
}

/* Green CTA (Industries/Contact page hero) */
.btn-green,
.elementor-button.btn-green {
  background-color: var(--color-green-deep);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-green.light{
  background-color: var(--color-green-light);
}

.btn-green:hover,
.elementor-button.btn-green:hover {
  background-color: #0a5a4e;
  color: var(--color-white) !important;
}


/* ============================================================
   CARDS (Solutions, Industries, Why Us grid items)
   ============================================================ */
.zenvora-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.zenvora-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.zenvora-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.zenvora-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.zenvora-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  margin-bottom: 16px;
}

.zenvora-card .card-arrow {
  color: var(--color-accent);
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.zenvora-card:hover .card-arrow {
  transform: translateX(4px);
}

[id] {
  scroll-margin-top: 70px;
}

.site-header,
section > [data-element_type="container"] {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}


/* ============================================================
   SECTION LABELS (e.g. "OUR SOLUTIONS" eyebrow text)
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Decorative underline on section headings (green bar) */
.section-heading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-heading-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--color-green-deep);
  border-radius: 2px;
}


/* ============================================================
   HEADER / NAV (Hello theme overrides)
   ============================================================ */
.site-header {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(8, 34, 64, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.elementor-nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.elementor-nav-menu a:hover,
.elementor-nav-menu .current-menu-item > a {
  color: var(--color-accent);
}

/* Active nav underline */
.elementor-nav-menu .current-menu-item > a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: 2px;
}


/* ============================================================
   HERO DARK OVERLAY SECTIONS
   ============================================================ */
.hero-dark {
  position: relative;
  background-color: var(--color-primary);
  overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 34, 64, 0.92) 0%,
    rgba(22, 45, 86, 0.75) 100%
  );
  z-index: 1;
}

.hero-dark > * {
  position: relative;
  z-index: 2;
}

.hero-dark h1,
.hero-dark h2,
.hero-dark p {
  color: var(--color-white);
}


/* ============================================================
   ICON STYLE (line icons, brand colors)
   ============================================================ */
.zenvora-icon {
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
}

.icon-container {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-light);
}

.icon-container.accent  { background-color: rgba(214, 172, 86, 0.12); color: var(--color-accent); }
.icon-container.green   { background-color: rgba(8, 68, 57, 0.10);   color: var(--color-green-deep); }
.icon-container.navy    { background-color: rgba(8, 34, 64, 0.08);   color: var(--color-primary); }


/* ============================================================
   CHECKLIST ITEMS (Solutions / Industries bullet lists)
   ============================================================ */
.zenvora-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zenvora-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.zenvora-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084439' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}


/* ============================================================
   STEP NUMBERS (Structured Approach section)
   ============================================================ */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  max-width: 100% !important;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 32px 0;
}


/* ============================================================
   BREADCRUMB
   ============================================================ */
.zenvora-breadcrumb {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.zenvora-breadcrumb a { color: rgba(255,255,255,0.7); }
.zenvora-breadcrumb span { color: var(--color-green-sage); }
.zenvora-breadcrumb .sep { margin: 0 6px; opacity: 0.5; }

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for cards in a grid */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* Trust Bar */

.trust-bar {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 32px;
  border-right: 2px solid var(--color-gray-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  white-space: nowrap;
}

/* ============================================================
   SECTION LAYOUT — shared 2-col left/right pattern
   ============================================================ */
.section-split {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.section-split-left {
  flex: 0 0 260px;
  width: 260px;
}

.section-split-right {
  flex: 1;
  min-width: 0;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-number span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
}

.section-number::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--color-accent);
  max-width: 32px;
}

.section-split-left h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.section-split-left p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-text);
  margin-bottom: 24px;
}

/* ============================================================
   SECTION 01 — ACHIEVE CARDS GRID
   ============================================================ */
.achieve-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.achieve-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.achieve-card {
  background: var(--color-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.achieve-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  cursor: pointer;
}

.achieve-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.achieve-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.achieve-card p {
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.achieve-card .card-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-size: 1.125rem;
  transition: transform 0.2s ease;
  margin-top: auto;
}

.achieve-card .card-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.achieve-card:hover .card-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SECTION 02 — STRUCTURED APPROACH STEPS
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.step-connector {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px; /* align with icon center */
  color: var(--color-gray-text);
  opacity: 0.4;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.step-badge .badge-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 6px 8px;
  border-radius: 50%;
}

.step-badge .badge-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-align: left;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* ============================================================
   SECTION 03 — SOLUTION FRAMEWORK
   ============================================================ */
.solution-framework {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  width: 100%;
}

.solution-panel {
  padding: 48px 40px;
  position: relative;
}

.solution-panel.panel-navy {
  background: var(--color-primary);
}

.solution-panel.panel-green {
  background: var(--color-green-deep);
}

.solution-panel-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.solution-panel h3 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.solution-panel p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  line-height: 1.5;
}

.solution-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6AC56' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Divider line between panels */
.solution-divider {
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

/* The + circle in the middle */
.solution-plus {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================================================
   SECTION 04 — WHO WE WORK WITH
   ============================================================ */
.work-with-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

.work-with-card {
  flex: 1;
  background: var(--color-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.work-with-card .card-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.work-with-card .card-icon-row svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.work-with-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin: 0;
}

.work-with-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-with-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.work-with-checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23082240' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  margin-top: 2px;
}

/* ============================================================
   SECTION 05 — WHY CHOOSE ZENVORA
   ============================================================ */
.why-grid {
  display: flex;
  width: 100%;
  gap: 0;
}

.why-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid #E8ECF2;
}

.why-item:last-child {
  border-right: none;
}

.why-item svg {
  margin-bottom: 14px;
}

.why-grid.solutions .why-item svg {
  color: var(--color-blue);
}

.why-grid.industries .why-item svg {
  color: var(--color-green-deep);
}

.why-item p {
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin: 6px 0 0;
}

.why-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-top: 4px;
}

/* SECTION 6 - CTA */
.cta-split {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.cta-content {
  width: 50%;
}

.cta-content p {
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-illustration {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.cta-illustration > svg {
  width: 100%;
  margin-bottom: -80px;
}

/* ============================================================
   PAGE HERO — shared across Solutions, Industries, About Us
   Same mechanic as homepage slider but static
   ============================================================ */
.page-hero {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 520px;
  background: var(--color-primary);
}

/* Green variant for Industries page */
.page-hero.page-hero--green {
  background: var(--color-green-deep);
}

.page-hero-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 56px 80px max(24px, calc((100vw - 1200px) / 2));
  box-sizing: border-box;
}

.page-hero-left .section-eyebrow {
  color: var(--color-accent);
  margin-bottom: 16px;
}

.page-hero-left h1 {
  color: var(--color-white);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero-left p {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.page-hero-right {
  flex: 1;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.page-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 18%,
    black 40%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.5) 18%,
    black 40%
  );
}

/* ============================================================
   SOLUTIONS PAGE — Solution Area Cards
   ============================================================ */
.solution-area-card {
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  background: #f9f9fb;
}

.solution-area-card:last-child {
  margin-bottom: 0;
}

.solution-area-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
}


.solution-area-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.solution-area-icon.navy {
  background: var(--color-blue);
  color: var(--color-white);
}

.solution-area-icon.green {
  background: var(--color-green-deep);
  color: var(--color-white);
}

.solution-area-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.solution-area-title h2 {
  font-size: 1.375rem;
  color: var(--color-primary);
  margin: 0 0 8px 0;
}

.solution-area-desc {
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  line-height: 1.7;
  max-width: 480px;
}

/* What It Includes checklist */
.solution-includes h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.solution-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-gray-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.solution-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231956E2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#market-entry-workforce .solution-includes li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084439' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.solution-feature {
  display: flex;
  flex-direction: column;
}

.solution-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.solution-feature-header svg {
  flex-shrink: 0;
}

.solution-feature-header strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
}

.solution-feature p {
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin: 0;
}

.solution-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-green-deep);
  transition: gap 0.2s ease;
}

.solution-explore-link:hover {
  gap: 12px;
}

/* ============================================================
   SOLUTIONS PAGE — Why This Works strip
   Reuses .why-grid from homepage but centered heading above
   ============================================================ */
.solutions-why-wrap {
  text-align: center;
}

.solutions-why-wrap h2 {
  margin-bottom: 48px;
}

/* ============================================================
   SOLUTIONS PAGE — CTA Band (dark full-width)
   ============================================================ */
.solutions-cta-band {
  background: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.solutions-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.solutions-cta-icon.industries-cta-icon {
  background: var(--color-green-light);
}

.solutions-cta-text {
  flex: 1;
}

.solutions-cta-text h3 {
  color: var(--color-white);
  font-size: 1.375rem;
  margin-bottom: 6px;
}

.solutions-cta-text p {
  color: var(--color-white);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

solution-area-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
}

.solution-area-left {
  padding-right: 40px;
  border-right: 1px solid #E8ECF2;
}

.solution-includes {
  padding-left: 40px;
}

.solution-area-features {
  display: grid;
  gap: 24px;
  margin: 28px 0;
  padding: 28px 0;
  border-top: 1px solid #E8ECF2;
}

.solution-area-features.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.solution-area-features.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}


@media (max-width: 1024px) {
  .solution-area-inner {
    grid-template-columns: 1fr;
  }

  .solution-area-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #E8ECF2;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .solution-includes {
    padding-left: 0;
  }

  .solution-area-features.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .solution-area-card { padding: 28px 20px; }

  .solution-area-features.cols-3,
  .solution-area-features.cols-4 {
      grid-template-columns: 1fr;
    }
  .solutions-cta-band {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ============================================================
   INDUSTRIES PAGE — Industries We Serve cards
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.industry-card {
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.industry-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F0F3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-green-deep);
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.industry-card .industry-desc {
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.industry-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.industry-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.industry-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084439' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   INDUSTRIES PAGE — Challenges table
   ============================================================ */
.challenges-table {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid #E8ECF2;
  margin-top: 48px;
}

.challenges-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1.4fr;
  background: var(--color-primary);
  padding: 16px 24px;
  text-align: center;
}

.challenges-header span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-white);
}

.challenges-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1.4fr;
  padding: 24px;
  align-items: start;
  gap: 24px;
  background: var(--color-white);
}

.challenges-row:nth-child(3),
.challenges-row:nth-child(5) {
    background-color: var(--color-gray-light);
}

.challenge-label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.challenge-label svg {
  flex-shrink: 0;
  color: var(--color-green-deep);
  margin-top: 2px;
}

.challenge-label strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  line-height: 1.4;
}

.challenges-row p {
  font-size: 0.875rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin: 0;
}

  .solutions-cta, .industries-cta {
    padding-bottom: 40px;
  }

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

@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .challenges-header,
  .challenges-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .challenges-header span:not(:first-child),
  .challenges-row p:first-of-type {
    padding-left: 0;
  }
}


/* Breadcrumb on hero — Industries, About Us */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.bc-link {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bc-link:hover {
    color: var(--color-accent);
}

.bc-separator {
    color: var(--color-gray-light);
    font-weight: bold;
}

.bc-current {
    color: var(--color-accent);
    font-weight: 600;
}

.heading-underline {
  display: inline-block;
  padding-bottom: 12px;
  position: relative;
  text-align: center;
}

.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-blue);
  border-radius: 3px;
}

.heading-underline h2 {
  line-height: 1 !important;
}

/* Left-aligned variant — for section headings that aren't centered */
.heading-underline--left::after {
  left: 0;
  transform: none;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover { color: var(--color-accent); }

.page-hero-breadcrumb span {
  color: var(--color-green-sage);
  font-weight: 500;
}

.page-hero-breadcrumb .sep { opacity: 0.4; }

@media (max-width: 767px) {
  .page-hero {
    flex-direction: column;
    min-height: auto;
  }

  .page-hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 100px 24px 40px;
  }

  .page-hero-right {
    /* flex: none;
    width: 100%;
    height: 240px; */
    display: none;
  }
}

@media (max-width: 1024px) {
  .section-split {
    gap: 40px;
  }

  .section-split-left {
    flex: 0 0 220px;
    width: 220px;
  }

  .achieve-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-split {
    flex-direction: column;
    gap: 32px;
  }

  .section-split-left {
    flex: none;
    width: 100%;
  }

  .achieve-grid-top,
  .achieve-grid-bottom {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg) scale(0.7);
    padding-top: 0;
    padding-left: 0;
  }
	.step-badge {
		align-self: center;
	}
	.step-item {
		padding: 16px;
	}
	
  .solution-framework {
    grid-template-columns: 1fr;
  }

  .solution-plus {
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%);
  }

  .work-with-grid {
    flex-direction: column;
  }

  .why-grid {
    flex-wrap: wrap;
  }

  .why-item {
    flex: 0 0 50%;
    border-bottom: 1px solid #E8ECF2;
  }
}

/* ============================================================
   ABOUT PAGE — Purpose cards (Mission/Vision/Values)
   ============================================================ */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.purpose-card {
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.purpose-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F0F3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-green-deep);
}

.purpose-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.purpose-card p {
  font-size: 0.9rem;
  color: var(--color-gray-text);
  line-height: 1.7;
  margin: 0;
}

.purpose-card .about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.purpose-card .about-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.purpose-card .about-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23084439' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   ABOUT PAGE — How We Work steps
   ============================================================ */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 48px;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.how-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F0F3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-deep);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.how-step h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin: 0;
}

.how-step p strong {
  color: var(--color-primary);
}

.how-connector {
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  color: var(--color-gray-text);
  font-size: 1rem;
}

/* ============================================================
   ABOUT PAGE — Commitments grid
   ============================================================ */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.commitment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commitment-item svg, .commitment-item img {
  color: var(--color-green-deep);
  margin-bottom: 16px;
}

.commitment-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.commitment-item p {
  font-size: 0.8125rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  margin: 0;
}

.elementor .e-3a7f313-103a9e3, .elementor .e-345ad2f-79fc699 {
	padding-top: 0px !important;
}

.elementor-element-22e5111 {
	padding-bottom: 20px;
}

footer .container {
	padding-left: 10px;
	padding-right: 10px;
}
.elementor-element-0d8ade8 {
	padding- 20px !important;
	margin-bottom: 20px;
}
.elementor-element-5af87e1 {
	padding: 0 10px;
}

@media (max-width: 1024px) {
  .purpose-grid { grid-template-columns: 1fr 1fr; }
  .commitments-grid { grid-template-columns: 1fr 1fr; }

  .how-steps { flex-wrap: wrap; justify-content: center; }
  .how-connector { display: none; }
  .how-step { flex: 0 0 45%; margin-bottom: 32px; }
}

@media (max-width: 767px) {
  .purpose-grid { grid-template-columns: 1fr; }
  .commitments-grid { grid-template-columns: 1fr 1fr; }
  .how-step { flex: 0 0 100%; }
	.elementor-element-22e5111 {
		padding-bottom: 20px;
	}
}

@media (max-width: 1024px) {
  .hide-tablet { display: none !important; }
  .trust-item {
     padding-left: 16px;
     padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .elementor .e-div-block-base {
    padding: 0 5px;
  }
  .elementor .e-658d828-b8b62cc, .elementor .e-edd6238-8daa82f, .elementor .e-ceebb39-44ab578 {
    padding: 0;
    min-height: 300px;
  }

  h1, .h1 { font-size: 1.875rem; }
  h2, .h2 { font-size: 1.5rem; line-height: 1.5 !important; }

  #home-trust-bar h2 { font-size: 1.25rem; }
  .trust-bar {gap: 20px 0; justify-content: flex-start;}
  .trust-item {
        flex: 0 0 50%;
        max-width: 50%;
        border-right: none;
        justify-content: flex-start;
    }

    .trust-item span {
        font-size: 14px; /* Slightly smaller text for mobile screens */
    }
    .cta-split {
      display: block;
    }
    .cta-content {
      width: 100%;
    }
    .cta-illustration > svg {
      margin-bottom: -40px;
    }
	.elementor .e-9f3c164-ea667d4 {
		padding: 40px !important;
	}
}

@media (max-width: 480px) {
  section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .elementor .e-3a7f313-103a9e3 {
    padding-top: 0 !important;
  }
  .elementor-48 .elementor-element.elementor-element-6d44149,
  .elementor-51 .elementor-element.elementor-element-5acc1b5,
  .elementor-53 .elementor-element.elementor-element-f46f884 {
    padding-bottom: 20px !important;
  }
}