/*
Theme Name:  Earthly Elegance Online
Theme URI:   https://www.earthlyelegance.online
Author:      GRIT Technologies
Author URI:  https://grittechnologies.com
Description: Caribbean e-commerce marketplace theme — Train. List. Sell. Grow. Built with Bootstrap 5, 100% responsive, converted pixel-faithfully from the approved design mockups.
Version:     1.0.3
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: earthly-elegance
Tested up to: 6.5
Requires PHP: 7.4
*/

/* =========================================================================
   1. DESIGN TOKENS — colors sampled directly from the approved mockups.
      DO NOT change these values; the client requires an exact match.
   ========================================================================= */
:root {
  /* Brand palette */
  --ee-navy:        #1B3A5C;   /* Headline dark blue ("Train.", "Sell Your Products.") */
  --ee-navy-deep:   #12324F;   /* Darker navy for section bands / footers */
  --ee-teal:        #147D71;   /* "List." / "Grow" teal */
  --ee-teal-dark:   #0E5F56;
  --ee-coral:       #E4593F;   /* "Sell." coral red */
  --ee-gold:        #E5A029;   /* "Grow." gold + primary CTA buttons */
  --ee-gold-dark:   #C98A18;   /* CTA hover */
  --ee-green:       #4E8C46;   /* Leaf / eco green accents */
  --ee-purple:      #7B4FA6;   /* Gifts & specialty accent */

  /* Neutrals & surfaces */
  --ee-cream:       #FBF4E6;   /* Warm cream section background */
  --ee-cream-soft:  #FDF9F1;   /* Lighter cream (cards strip) */
  --ee-white:       #FFFFFF;
  --ee-ink:         #23364B;   /* Body headings */
  --ee-body:        #5B6B7C;   /* Body copy grey-blue */
  --ee-line:        #EDE4D2;   /* Hairline borders on cream */
  --ee-line-cool:   #E6EBF1;   /* Hairline borders on white */

  /* Soft icon-chip backgrounds (the pale circles behind every icon) */
  --ee-chip-teal:   #E3F2EF;
  --ee-chip-gold:   #FBEFD8;
  --ee-chip-coral:  #FBE5DF;
  --ee-chip-navy:   #E4EBF3;
  --ee-chip-green:  #E8F1E5;
  --ee-chip-purple: #EFE7F6;

  /* Type */
  --ee-font-display: 'Poppins', system-ui, sans-serif;
  --ee-font-body:    'Nunito Sans', system-ui, sans-serif;

  /* Shape & shadow */
  --ee-radius:      16px;
  --ee-radius-lg:   24px;
  --ee-shadow:      0 6px 24px rgba(27, 58, 92, .08);
  --ee-shadow-lift: 0 12px 32px rgba(27, 58, 92, .14);
}

/* =========================================================================
   2. BASE
   ========================================================================= */
/* Bootstrap rows using a heavier gutter (.g-4/.g-5, used throughout this
   page for column spacing) carry a negative margin bigger than this
   theme's plain .container padding (12px). The columns' own gutter
   padding compensates so visible content still lines up correctly, but
   the row's own box still bleeds a few invisible px past the viewport
   on narrow screens, producing a phantom horizontal scrollbar with
   nothing actually clipped. Clipped on .ee-overflow-clip (everything
   below the header) rather than html/body — overflow-x anywhere in a
   sticky element's ancestor chain (even set only on the x axis) disables
   position:sticky, which would have killed the sticky navbar. */
.ee-overflow-clip { overflow-x: hidden; }
body {
  font-family: var(--ee-font-body);
  color: var(--ee-body);
  background: var(--ee-white);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--ee-font-display);
  color: var(--ee-ink);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--ee-teal); text-decoration: none; }
a:hover { color: var(--ee-teal-dark); }

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

/* Section rhythm */
.ee-section        { padding: 56px 0; }
.ee-section-cream  { background: var(--ee-cream); }
.ee-section-soft   { background: var(--ee-cream-soft); }
/* Rounded stand-alone panel on a white page (mockup 1 "Your Path") */
.ee-rounded-panel {
  background: var(--ee-cream-soft);
  border-radius: var(--ee-radius-lg);
  padding: 2.6rem 2.2rem;
}
@media (max-width: 767.98px) { .ee-rounded-panel { padding: 1.6rem 1.1rem; } }
@media (max-width: 767.98px) { .ee-section { padding: 48px 0; } }

/* Small uppercase eyebrow label (e.g. "FINANCING THAT FUELS GROWTH") */
.ee-eyebrow {
  font-family: var(--ee-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ee-teal);
}

/* Centered section heading with the short gold rule beneath it */
.ee-section-title { text-align: center; margin-bottom: 8px; font-weight: 800; }
.ee-title-rule {
  width: 64px; height: 4px; border-radius: 2px;
  background: var(--ee-gold);
  margin: 12px auto 40px;
}

/* Multi-color headline words — used for "Train. List. Sell. Grow." */
.word-navy  { color: var(--ee-navy); }
.word-teal  { color: var(--ee-teal); }
.word-coral { color: var(--ee-coral); }
.word-gold  { color: var(--ee-gold); }

/* =========================================================================
   3. BUTTONS — gold pill CTA exactly as in the mockups
   ========================================================================= */
.btn-ee-gold {
  background: var(--ee-gold);
  color: #fff;
  font-family: var(--ee-font-display);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: .8rem 1.7rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-ee-gold:hover { background: var(--ee-gold-dark); color: #fff; transform: translateY(-2px); }

.btn-ee-outline {
  border: 2px solid var(--ee-teal);
  color: var(--ee-teal);
  font-family: var(--ee-font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: .7rem 1.6rem;
}
.btn-ee-outline:hover { background: var(--ee-teal); color: #fff; }

/* =========================================================================
   4. HEADER / NAVBAR
   ========================================================================= */
.ee-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(27, 58, 92, .06);
  padding: .8rem 0;
}
.ee-navbar .navbar-brand { display: flex; align-items: center; gap: .6rem; min-width: 0; flex-shrink: 1; }
/* Uploaded Site Identity logo: cap to a normal navbar height regardless of
   the source file's native size, and let it shrink inside the flex row
   (images ignore max-width when a flex ancestor has the default
   min-width:auto, which is what caused mobile horizontal overflow here). */
.ee-navbar .navbar-brand img,
.ee-navbar .navbar-brand .custom-logo {
  max-height: 48px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .ee-navbar .navbar-brand img,
  .ee-navbar .navbar-brand .custom-logo { max-height: 38px; }
}
.ee-logo-text {
  font-family: var(--ee-font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--ee-navy);
  letter-spacing: .02em;
}
.ee-logo-text small {
  display: block;
  font-size: .58rem;
  letter-spacing: .38em;
  color: var(--ee-gold);
  font-weight: 700;
}
.ee-navbar .nav-link {
  font-family: var(--ee-font-display);
  font-weight: 500;
  color: var(--ee-ink);
  margin: 0 .55rem;
  border-bottom: 2px solid transparent; /* reserve space → no jump on hover/active */
}
/* Current-page highlight (teal + underline like the mockup).
   Covers every class WordPress can emit for "you are here":
   menu items, page items, ancestors, and our walker's .active. */
.ee-navbar .nav-link:hover,
.ee-navbar .nav-link.active,
.ee-navbar .current-menu-item > .nav-link,
.ee-navbar .current_page_item > .nav-link,
.ee-navbar .current-menu-ancestor > .nav-link,
.ee-navbar .current-page-ancestor > .nav-link,
.ee-navbar .current_page_parent > .nav-link {
  color: var(--ee-teal);
  border-bottom-color: var(--ee-teal);
}
.ee-navbar .nav-link.active,
.ee-navbar .current-menu-item > .nav-link,
.ee-navbar .current_page_item > .nav-link {
  font-weight: 700; /* active page reads slightly bolder, as in the mockup */
}

/* =========================================================================
   5. HERO
   ========================================================================= */
.ee-hero { position: relative; overflow: hidden; background: #fff; }
.ee-hero.ee-section { padding: 48px 0 56px; } /* mockup heroes are compact */
.ee-hero .display-2, .ee-hero .display-3 { font-weight: 800; }

/* Hero headline scale, matched to the mockups:
   - Homepage 2-line display: ~5vw capped
   - 3-line heroes (Financing / Training): ~3.4vw capped, tight leading */
.ee-hero .display-2 { font-size: clamp(2.6rem, 5vw, 4.3rem);  line-height: 1.08; }
.ee-hero .display-3 { font-size: clamp(2.2rem, 4vw, 3.4rem);  line-height: 1.12; }
.ee-hero h1.h1      { font-size: clamp(2rem, 3.4vw, 2.9rem);  line-height: 1.16; font-weight: 800; }

/* Rounded hero photo frame */
.ee-hero-img {
  border-radius: var(--ee-radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--ee-shadow-lift);
}

/* Checklist bullets under hero copy ("No experience needed" …) */
.ee-check-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.ee-check-list li {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .7rem;
  color: var(--ee-ink); font-weight: 600;
}
.ee-check-list .icon-chip { width: 34px; height: 34px; font-size: .95rem; }


/* Hero mini-badge row with thin separators between items (mockups 2 & 3) */
.ee-badge-row { display: flex; flex-wrap: wrap; align-items: center; }
.ee-badge-row > span {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; color: var(--ee-navy); font-size: .85rem;
  padding: .15rem 1.1rem .15rem 0; margin-right: 1.1rem;
  border-right: 1px solid var(--ee-line-cool);
}
.ee-badge-row > span:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

/* Floating quote card on the Financing hero */
.ee-quote-card {
  background: #fff; border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow); padding: 1.2rem 1.4rem;
  font-family: var(--ee-font-display); font-weight: 600;
  color: var(--ee-navy); max-width: 300px;
}
.ee-quote-card .accent { color: var(--ee-teal); }
/* Training hero: card overlaps the photo's bottom-left corner (mockup 5).
   A fixed aspect-ratio + object-fit:cover keeps the display size sane no
   matter what dimensions the uploaded source photo actually has — this
   photo previously had no such constraint and a too-small/oddly-shaped
   replacement upload blew the whole hero section up to 3x+ its size. */
.ee-hero-cardwrap { position: relative; }
.ee-hero-cardwrap .ee-hero-img { aspect-ratio: 4 / 5; object-fit: cover; }
.ee-hero-cardwrap .ee-float-card {
  position: absolute; bottom: 22px; right: 15px;
  background: #fff; border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow-lift); padding: 1.1rem 1.3rem;
  font-family: var(--ee-font-display); font-weight: 600;
  color: var(--ee-navy); max-width: 250px; font-size: .95rem;
}
@media (max-width: 991.98px) {
  .ee-hero-cardwrap .ee-float-card { position: static; margin-top: 1rem; max-width: none; }
}

/* =========================================================================
   6. ICON CHIPS — the pale colored circles behind every icon
   ========================================================================= */
.icon-chip {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex: 0 0 auto;
  line-height: 1; /* kill inherited line-height so flex centering is exact */
}
/* Bootstrap Icons render with a baseline offset (font metrics + the
   ::before pseudo-element inherits line-height). Forcing the glyph to a
   block with line-height 1 makes it optically dead-center in the circle —
   matches the mockup's trust-strip icons. */
.icon-chip > i { line-height: 1; display: block; }
.icon-chip > i::before { display: block; }
.icon-chip.sm { padding: 14px 14px; font-size: 2.4rem; display: block; }
.icon-chip.sm-icon {height:35px; width:35px;font-size: 1.1rem;display:inline-table;}
.icon-chip.lg { width: 84px; height: 84px; font-size: 1.9rem; }
.chip-teal   { background: var(--ee-chip-teal);   color: var(--ee-teal); }
.chip-gold   { background: var(--ee-chip-gold);   color: var(--ee-gold); }
.chip-coral  { background: var(--ee-chip-coral);  color: var(--ee-coral); }
.chip-navy   { background: var(--ee-chip-navy);   color: var(--ee-navy); }
.chip-green  { background: var(--ee-chip-green);  color: var(--ee-green); }
.chip-purple { background: var(--ee-chip-purple); color: var(--ee-purple); }

/* Solid variant: full-color circle with white icon (mockup 2's feature
   cards + support row use these instead of the pale chips) */
.icon-chip.solid.chip-teal   { background: var(--ee-teal);   color: #fff; }
.icon-chip.solid.chip-gold   { background: var(--ee-gold);   color: #fff; }
.icon-chip.solid.chip-coral  { background: var(--ee-coral);  color: #fff; }
.icon-chip.solid.chip-navy   { background: var(--ee-navy);   color: #fff; }
.icon-chip.solid.chip-green  { background: var(--ee-green);  color: #fff; }
.icon-chip.solid.chip-purple { background: var(--ee-purple); color: #fff; }

/* Feature-card photo with the solid chip overlapping its top-left corner
   (mockup 2 "Everything You Need To Sell Online") */
.ee-card .card-photo { position: relative; }
.ee-card .card-photo img { width: 100%; display: block; border-radius: 14px 14px 0 0; }
.ee-card .card-photo .icon-chip {
  position: absolute; top: 12px; left: 12px;
  box-shadow: 0 4px 12px rgba(20, 40, 60, .22);
}

/* =========================================================================
   7. PROCESS STEPPER — "Your Path To Selling Online" / "How Financing Works"
   ========================================================================= */
.ee-steps { display: flex; flex-wrap: wrap; justify-content: center; }
.ee-step {
  flex: 1 1 150px; max-width: 190px;
  text-align: center; position: relative;
  padding: 0 12px; margin-bottom: 2rem;
}
/* Small numbered badge sitting on top-left of the icon circle */
.ee-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  color: #fff; font-size: .8rem; font-weight: 700;
  font-family: var(--ee-font-display);
  display: inline-flex; align-items: center; justify-content: center;
  position: absolute; top: -6px; left: calc(50% - 46px); z-index: 2;
}
.ee-step .icon-chip { background: #fff; box-shadow: var(--ee-shadow); }
.ee-step h6 { margin-top: 1rem; font-weight: 700; font-size: .95rem; }
.ee-step p  { font-size: .84rem; margin-bottom: 0; }
/* Connector arrow between steps — hidden on the last step & on mobile */
.ee-step:not(:last-child)::after {
  content: "\F138"; /* Bootstrap Icons chevron-right */
  font-family: "bootstrap-icons";
  color: var(--ee-gold);
  position: absolute; right: -8px; top: 26px;
  font-size: 1rem;
}
@media (max-width: 991.98px) { .ee-step::after { display: none !important; } }

/* Step title color accents (matches mockup: teal/gold/coral titles) */
.step-teal  h6 { color: var(--ee-teal); }
.step-gold  h6 { color: var(--ee-gold); }
.step-coral h6 { color: var(--ee-coral); }
.step-navy  h6 { color: var(--ee-navy); }

/* =========================================================================
   8. CARDS
   ========================================================================= */
.ee-card {
  background: #fff;
  border: 1px solid var(--ee-line-cool);
  border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ee-card:hover { transform: translateY(-4px); box-shadow: var(--ee-shadow-lift); }
.ee-card .card-img-top {
  border-radius: var(--ee-radius) var(--ee-radius) 0 0;
  height: 190px; object-fit: cover;
}

/* Product-category tiles (Food & Beverages, Fashion, …) */
.ee-cat-tile { text-align: center; }
.ee-cat-tile img {
  border-radius: var(--ee-radius);
  height: 170px; width: 100%; object-fit: cover;
  box-shadow: var(--ee-shadow);
}
.ee-cat-tile .icon-chip {
  margin-top: -32px; position: relative; z-index: 2;
  border: 4px solid #fff; background: #fff;
}
.ee-cat-tile h6 { font-size: .9rem; margin-top: .6rem; }

/* Feature blocks (icon + title + copy) */
.ee-feature { text-align: center; padding: 0 10px; }
.ee-feature h6 { margin-top: 1rem; font-weight: 700; }
.ee-feature p  { font-size: .88rem; }

/* Financing solution cards (Start-Up / Growth / Expansion / Working Capital) */
.ee-solution-card {
  border-radius: var(--ee-radius);
  padding: 1.8rem 1.5rem;
  height: 100%;
  border: 1px solid transparent;
}
.sol-teal   { background: #F0F8F6; border-color: #DCEEE9; }
.sol-gold   { background: #FCF6E9; border-color: #F3E5C8; }
.sol-blue   { background: #F0F5FA; border-color: #DEE8F2; }
.sol-purple { background: #F6F1FA; border-color: #E8DDF2; }
.ee-solution-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.ee-solution-card li { display: flex; gap: .55rem; font-size: .9rem; margin-bottom: .55rem; color: var(--ee-ink); }
.ee-solution-card li i { color: var(--ee-teal); }

/* Store-plan cards (Starter / Independent). No default height:100% here —
   add Bootstrap's .h-100 explicitly on the rare page that deliberately
   wants two side-by-side cards to match height (page-how-it-works.php).
   A hardcoded height:100% here previously caused a real, twice-recurring
   bug: paired with Bootstrap's default row stretch, a single card in a
   one-column row would circularly inflate to hundreds of pixels tall and
   overlap page content below it (page-store-setup.php, page-review-
   launch.php — both fixed by removing this default rather than chasing
   each new occurrence). */
.ee-plan-card { border-radius: var(--ee-radius); padding: 1.6rem; }
.plan-green { background: #F1F8F0; border: 1px solid #DFEEDD; }
.plan-blue  { background: #F0F4FA; border: 1px solid #DEE7F2; }
.ee-plan-card .browser-bar {
  background: #fff; border: 1px solid var(--ee-line-cool);
  border-radius: 10px 10px 0 0; padding: .45rem .8rem;
  font-size: .78rem; color: var(--ee-body);
  display: flex; align-items: center; gap: .5rem;
}
.ee-plan-card .browser-body {
  border: 1px solid var(--ee-line-cool); border-top: 0;
  border-radius: 0 0 10px 10px; height: 90px;
  background: linear-gradient(135deg, var(--ee-cream) 0%, #fff 60%);
  overflow: hidden; /* clip the optional screenshot to the rounded frame */
}
/* Optional storefront screenshot (Customize → How It Works → Store Plans) */
.ee-plan-card .browser-body img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block;
}

/* Checklist with teal ticks used across plan cards & "Who can apply" */
.ee-ticks { list-style: none; padding: 0; margin: 0; }
.ee-ticks li { display: flex; gap: .6rem; margin-bottom: .6rem; color: var(--ee-ink); font-weight: 600; font-size: .92rem; }
.ee-ticks li i { color: var(--ee-teal); margin-top: .15rem; }

/* =========================================================================
   9. PROCESS PANELS (Application-to-Financing page)
   ========================================================================= */
.ee-panel {
  background: #fff; border-radius: var(--ee-radius-lg);
  box-shadow: var(--ee-shadow); padding: 2rem;
  margin-bottom: 2.5rem;
}
/* The colored ribbon heading — "1. APPLICATION PROCESS" etc. */
.ee-ribbon {
  display: inline-block; color: #fff;
  font-family: var(--ee-font-display); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .55rem 1.3rem; border-radius: 8px;
  font-size: .92rem;
}
.ribbon-teal { background: var(--ee-teal-dark); }
.ribbon-navy { background: var(--ee-navy); }
.ribbon-gold { background: var(--ee-gold); }

/* Evaluation criteria weight rows (Business Viability 25% …) */
.ee-criteria { list-style: none; padding: 0; margin: 0; }
.ee-criteria li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--ee-line-cool);
  font-weight: 600; color: var(--ee-ink);
}
.ee-criteria li:last-child { border-bottom: 0; }
.ee-criteria .pct { font-family: var(--ee-font-display); font-weight: 700; color: var(--ee-navy); }

/* Readiness level pills */
.ee-readiness { border: 1px solid var(--ee-line-cool); border-radius: var(--ee-radius); padding: 1.2rem; height: 100%; }
.ee-readiness h6 { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }

/* =========================================================================
   10. BOTTOM CTA BAND & FOOTER
   ========================================================================= */
.ee-cta-band {
  background: linear-gradient(90deg, #F6E7C9 0%, var(--ee-cream) 55%, #FDF3E0 100%);
  border-radius: var(--ee-radius-lg);
  padding: 3rem 2rem;
}
.ee-cta-band h2 { font-weight: 800; }

/* Teal CTA band variant (Application page footer band) */
.ee-cta-teal { background: var(--ee-teal-dark); color: #fff; }
.ee-cta-teal h2, .ee-cta-teal h3 { color: #fff; }
.ee-cta-teal .word-gold { color: var(--ee-gold); }

/* Trust strip: Trusted Platform | Empowering Entrepreneurs | … */
.ee-trust-strip { background: #fff; border-top: 1px solid var(--ee-line-cool); padding: 1.4rem 0; }
.ee-trust-item { display: flex; align-items: center; gap: .7rem; justify-content: center; }
.ee-trust-item strong { color: var(--ee-ink); font-family: var(--ee-font-display); font-size: .9rem; }
.ee-trust-item span   { display: block; font-size: .78rem; }

/* Main footer */
.ee-footer { background: var(--ee-navy-deep); color: #B9C6D4; padding: 3rem 0 1.5rem; }
.ee-footer h6 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.ee-footer a { color: #B9C6D4; display: block; margin-bottom: .5rem; font-size: .9rem; }
.ee-footer a:hover { color: var(--ee-gold); }
.ee-footer .copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.2rem; font-size: .82rem; }

/* =========================================================================
   11. TOP™ LOGO LOCK-UP (Training / Financing pages)
   ========================================================================= */
.ee-top-logo { font-family: var(--ee-font-display); text-align: center; }
/* Uploaded TOP™ logo replaces the text lock-up (Customize → Global) */
.ee-top-logo img { max-width: 320px; width: 100%; height: auto; display: inline-block; }
.ee-top-logo .mark { font-size: 4.2rem; font-weight: 800; color: var(--ee-navy); letter-spacing: .02em; line-height: 1; }
.ee-top-logo .mark .o { color: var(--ee-gold); }
.ee-top-logo .tag  { font-weight: 700; color: var(--ee-navy); }
.ee-top-logo .sub  { font-size: .8rem; color: var(--ee-teal); font-style: italic; }

/* =========================================================================
   12. UTILITIES & RESPONSIVE POLISH
   ========================================================================= */
.text-navy { color: var(--ee-navy) !important; }
.text-teal { color: var(--ee-teal) !important; }
.text-gold { color: var(--ee-gold) !important; }
.text-coral{ color: var(--ee-coral) !important; }
.fw-800 { font-weight: 800; }
/* Vertical rule between columns, only from lg up */
@media (min-width: 992px) {
  .border-end-lg   { border-right: 1px solid var(--ee-line-cool); padding-right: 2.5rem; }
  .border-start-lg { border-left: 1px solid var(--ee-line-cool);  padding-left: 2.5rem; }
}

.ee-divider-gold {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
}
.ee-divider-gold::before, .ee-divider-gold::after {
  content: ""; height: 2px; width: 56px; background: var(--ee-gold); border-radius: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ee-card, .btn-ee-gold { transition: none; }
}

/* Mobile heading scale-down for the big multi-color hero */
@media (max-width: 575.98px) {
  .ee-hero .display-2 { font-size: 2.4rem; }
  .ee-hero .display-3 { font-size: 2rem; }
  .ee-ribbon { display: block; text-align: center; }
}

/* Partner logos (Financing) — uploaded images sit on one tidy baseline */
.ee-partner-logo { max-height: 44px; max-width: 100%; width: auto; object-fit: contain; }

/* TOP lock-up light variant — readable on the teal CTA band */
.ee-top-logo-light .mark { color: #fff; font-size: 2.6rem; }
.ee-top-logo-light .mark .o { color: var(--ee-gold); }
.ee-top-logo-light .tag { color: #fff; font-size: .8rem; }
.ee-top-logo-light .sub { color: rgba(255, 255, 255, .85); }
.ee-top-logo-light img { max-width: 180px; background: #fff; border-radius: 12px; padding: 10px 14px; }

/* =========================================================================
   13. SMART APPLICATION WIZARD (mockups: Application, Results, Pathway,
       Congratulations). Layout = fixed left rail (steps / help) + main card.
   ========================================================================= */
.ee-apply-wrap { padding: 40px 0 72px; }
.ee-apply-shell { display: flex; align-items: flex-start; gap: 2rem; }
.ee-apply-sidebar {
  flex: 0 0 270px; max-width: 270px;
  position: sticky; top: 24px;
}
.ee-apply-main { flex: 1 1 auto; min-width: 0; }

.ee-apply-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; }

/* Step checklist in the sidebar */
.ee-apply-nav {
  list-style: none; margin: 0 0 1.2rem; padding: 1.4rem;
  background: #fff; border: 1px solid var(--ee-line-cool);
  border-radius: var(--ee-radius); box-shadow: var(--ee-shadow);
}
.ee-apply-nav li {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem 0; font-size: .88rem; font-weight: 600; color: var(--ee-body);
}
.ee-apply-nav .num {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; font-family: var(--ee-font-display);
  border: 2px solid var(--ee-line-cool); color: var(--ee-body); background: #fff;
}
.ee-apply-nav li.is-done .num { background: var(--ee-teal); border-color: var(--ee-teal); color: #fff; }
.ee-apply-nav li.is-done .num::before { content: "\F26E"; font-family: "bootstrap-icons"; font-size: .8rem; }
.ee-apply-nav li.is-active { color: var(--ee-navy); }
.ee-apply-nav li.is-active .num { background: var(--ee-navy); border-color: var(--ee-navy); color: #fff; }
.ee-apply-nav li .sub { display: block; font-size: .72rem; font-weight: 400; color: var(--ee-body); }

/* Need Help / Thank-you boxes in the sidebar */
.ee-apply-help {
  background: #fff; border: 1px solid var(--ee-line-cool); border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow); padding: 1.2rem 1.3rem; font-size: .85rem;
}
.ee-apply-help h6 { font-size: .92rem; margin-bottom: .3rem; }
.ee-apply-help p { margin-bottom: .35rem; color: var(--ee-body); }
.ee-apply-help.is-success { background: var(--ee-chip-teal); border-color: #cdeae4; }
.ee-apply-help.is-success h6 { color: var(--ee-teal-dark); }

/* Progress bar row (top-right "Step X of 7" + %) */
.ee-apply-progresswrap { display: flex; align-items: center; gap: 1rem; margin-bottom: .3rem; }
.ee-apply-progresswrap .track { flex: 1 1 auto; height: 8px; border-radius: 4px; background: var(--ee-line-cool); overflow: hidden; }
.ee-apply-progresswrap .fill { height: 100%; background: var(--ee-teal); border-radius: 4px; transition: width .35s ease; }
.ee-apply-progresswrap .pct { font-size: .82rem; font-weight: 700; color: var(--ee-body); flex: 0 0 auto; }
.ee-apply-step-label { font-size: .8rem; font-weight: 700; color: var(--ee-teal); text-transform: uppercase; letter-spacing: .06em; }

/* Main step card */
.ee-apply-card {
  background: #fff; border-radius: var(--ee-radius-lg);
  box-shadow: var(--ee-shadow); padding: 2rem;
}
@media (max-width: 767.98px) { .ee-apply-card { padding: 1.3rem; } }
.ee-apply-card h1, .ee-apply-card h2 { font-size: 1.7rem; margin-bottom: .3rem; }
.ee-apply-card > p.ee-apply-sub { margin-bottom: 1.6rem; }

.ee-form-group { margin-bottom: 1.7rem; }
.ee-form-group > label.ee-form-label {
  display: block; font-weight: 700; color: var(--ee-navy); margin-bottom: .7rem; font-size: .95rem;
}

/* Selectable option cards (radio or checkbox, styled the same way) */
.ee-option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .9rem; }
.ee-option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ee-option-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767.98px) { .ee-option-grid.cols-3, .ee-option-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }

.ee-option-card {
  position: relative; cursor: pointer; text-align: center;
  border: 1.5px solid var(--ee-line-cool); border-radius: var(--ee-radius);
  padding: 1.1rem .9rem; background: #fff; transition: border-color .15s ease, background .15s ease;
}
.ee-option-card:hover { border-color: var(--ee-teal); }
.ee-option-card input { position: absolute; opacity: 0; pointer-events: none; }
.ee-option-card .icon-chip { margin: 0 auto .6rem; }
.ee-option-card .opt-title { display: block; font-weight: 700; color: var(--ee-navy); font-size: .92rem; }
.ee-option-card .opt-sub { display: block; font-size: .76rem; margin-top: .2rem; color: var(--ee-body); }
.ee-option-card .opt-mark {
  position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--ee-line-cool); background: #fff;
}
.ee-option-card.is-selected {
  border-color: var(--ee-teal); background: var(--ee-chip-teal);
}
.ee-option-card.is-selected .opt-mark {
  border-color: var(--ee-teal); background: var(--ee-teal);
}
.ee-option-card.is-selected .opt-mark::after {
  content: "\F26E"; font-family: "bootstrap-icons"; color: #fff; font-size: .7rem;
  display: flex; align-items: center; justify-content: center; height: 100%;
}

/* Tip / info boxes ("Why we ask this?", "What this means", "Build Beyond Borders").
   No default height:100% — see the .ee-plan-card comment above for why;
   add Bootstrap's .h-100 explicitly on the couple of pages that pair it
   side-by-side with another same-height column. */
.ee-tip-box {
  background: var(--ee-chip-navy); border-radius: var(--ee-radius);
  padding: 1.1rem 1.2rem; font-size: .84rem;
}
.ee-tip-box h6 { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ee-navy); margin-bottom: .4rem; }
.ee-tip-box p { margin: 0; color: var(--ee-body); }

/* Encouragement banner strip at the foot of each step */
.ee-encourage-banner {
  display: flex; align-items: center; gap: .9rem;
  background: var(--ee-cream); border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius); padding: 1rem 1.3rem; margin-top: 1.6rem;
}
.ee-encourage-banner .icon-chip { flex: 0 0 auto; }
.ee-encourage-banner strong { display: block; color: var(--ee-navy); }
.ee-encourage-banner span { font-size: .86rem; }

/* Green confirmation strip ("Great! You've selected 4 of 4") */
.ee-confirm-note {
  display: flex; align-items: center; gap: .6rem;
  background: var(--ee-chip-green); color: var(--ee-teal-dark);
  border-radius: 10px; padding: .6rem .9rem; font-size: .84rem; font-weight: 600; margin-top: .8rem;
}

/* Multi-select checkbox chip list (Product Readiness / Support Needs) */
.ee-check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .7rem; }
.ee-check-chip {
  display: flex; align-items: center; gap: .6rem; cursor: pointer;
  border: 1.5px solid var(--ee-line-cool); border-radius: 10px; padding: .7rem .9rem;
  font-size: .88rem; font-weight: 600; color: var(--ee-navy); transition: border-color .15s ease, background .15s ease;
}
.ee-check-chip input { position: absolute; opacity: 0; pointer-events: none; }
.ee-check-chip .box {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid var(--ee-line-cool); position: relative;
}
.ee-check-chip.is-selected { border-color: var(--ee-teal); background: var(--ee-chip-teal); }
.ee-check-chip.is-selected .box { border-color: var(--ee-teal); background: var(--ee-teal); }
.ee-check-chip.is-selected .box::after {
  content: "\F26E"; font-family: "bootstrap-icons"; color: #fff; font-size: .68rem;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}

/* Wizard footer nav (Back / Next) */
.ee-apply-footer-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.8rem; }

/* Step section visibility — JS toggles .is-active */
.ee-apply-step { display: none; }
.ee-apply-step.is-active { display: block; }

/* =========================================================================
   14. RESULTS — score gauge + category bars + recommendation
   ========================================================================= */
.ee-gauge-wrap { text-align: center; }
.ee-gauge { position: relative; width: 220px; margin: 0 auto; }
.ee-gauge svg { width: 100%; height: auto; display: block; }
.ee-gauge .needle-pivot { transform-origin: 100px 100px; transition: transform .6s cubic-bezier(.34,1.56,.64,1); }
.ee-gauge-readout { margin-top: -18px; }
.ee-gauge-readout .score { font-family: var(--ee-font-display); font-weight: 800; font-size: 2.6rem; color: var(--ee-navy); line-height: 1; }
.ee-gauge-readout .outof { font-size: 1rem; color: var(--ee-body); font-weight: 700; }
.ee-gauge-readout .label { font-size: .85rem; color: var(--ee-body); margin-top: .2rem; }
.ee-gauge-badge {
  display: inline-block; margin-top: .5rem; padding: .3rem .9rem; border-radius: 20px;
  font-weight: 700; font-size: .82rem; font-family: var(--ee-font-display);
}
.badge-ready   { background: var(--ee-chip-green); color: var(--ee-teal-dark); }
.badge-prepare { background: var(--ee-chip-gold);  color: var(--ee-gold-dark); }
.badge-early   { background: var(--ee-chip-coral); color: var(--ee-coral); }

/* Category score bars ("Business & Experience 80/100") */
.ee-score-bar { margin-bottom: 1rem; }
.ee-score-bar .row-top { display: flex; justify-content: space-between; font-size: .86rem; font-weight: 700; color: var(--ee-navy); margin-bottom: .35rem; }
.ee-score-bar .track { height: 9px; border-radius: 5px; background: var(--ee-line-cool); overflow: hidden; }
.ee-score-bar .fill { height: 100%; border-radius: 5px; background: var(--ee-teal); transition: width .6s ease; }
.ee-score-bar .fill.is-low  { background: var(--ee-coral); }
.ee-score-bar .fill.is-mid  { background: var(--ee-gold); }

/* Callout rows with an icon on the left (star / lightbulb) */
.ee-callout { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.ee-callout .icon-chip { flex: 0 0 auto; }
.ee-callout strong { display: block; color: var(--ee-navy); }
.ee-callout p { margin: .15rem 0 0; font-size: .9rem; }

/* Recommendation panel (graduation cap, "We recommend training…") */
.ee-recommend-box {
  background: var(--ee-chip-gold); border-radius: var(--ee-radius); padding: 1.3rem;
}
.ee-recommend-box h6 { color: var(--ee-navy); margin-bottom: .3rem; }
.ee-recommend-box p { font-size: .88rem; margin-bottom: 1rem; }

/* "Top Areas to Improve" mini cards */
.ee-improve-card { border: 1px solid var(--ee-line-cool); border-radius: var(--ee-radius); padding: 1.2rem; height: 100%; }
.ee-improve-card .icon-chip { margin-bottom: .7rem; }
.ee-improve-card h6 { font-size: .92rem; }
.ee-improve-card p { font-size: .82rem; }
.ee-improve-card a { font-size: .84rem; font-weight: 700; }

/* =========================================================================
   15. RECOMMENDED PATHWAY
   ========================================================================= */
.ee-pathway-hero {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--ee-chip-navy); border-radius: var(--ee-radius-lg); padding: 1.6rem;
}
.ee-pathway-hero .icon-chip { flex: 0 0 auto; }
.ee-pathway-tags span {
  display: inline-block; background: #fff; border-radius: 20px; padding: .25rem .8rem;
  font-size: .78rem; font-weight: 700; color: var(--ee-navy); margin: .5rem .5rem 0 0;
}

.ee-course-card {
  display: flex; gap: .9rem; align-items: flex-start;
  border: 1px solid var(--ee-line-cool); border-radius: var(--ee-radius); padding: 1.1rem; height: 100%;
}
.ee-course-card .num {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--ee-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--ee-font-display); font-size: .85rem;
}
.ee-course-card h6 { font-size: .9rem; margin-bottom: .2rem; }
.ee-course-card p { font-size: .8rem; margin-bottom: .3rem; }
.ee-course-card .duration { font-size: .74rem; color: var(--ee-teal); font-weight: 700; }

.ee-resource-list { list-style: none; padding: 0; margin: 0; }
.ee-resource-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid var(--ee-line-cool); color: var(--ee-ink); font-weight: 600; font-size: .88rem;
}
.ee-resource-list li:last-child a { border-bottom: 0; }

/* =========================================================================
   16. APPLICATION COMPLETE (Congratulations — standalone, no sidebar)
   ========================================================================= */
.ee-complete-wrap { max-width: 900px; margin: 0 auto; text-align: center; padding: 56px 0; }
.ee-trophy {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.3rem;
  background: var(--ee-chip-gold); color: var(--ee-gold);
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
}
.ee-complete-score {
  background: #fff; border: 1px solid var(--ee-line-cool); border-radius: var(--ee-radius-lg);
  box-shadow: var(--ee-shadow); padding: 1.8rem; margin: 1.8rem 0; text-align: left;
}

/* Horizontal "What Happens Next" timeline — reuses .ee-steps/.ee-step */
.ee-step .chip-time {
  display: inline-block; margin-top: .35rem; font-size: .72rem; font-weight: 700;
  color: var(--ee-teal-dark); background: var(--ee-chip-teal); border-radius: 12px; padding: .15rem .6rem;
}

@media (max-width: 991.98px) {
  .ee-apply-shell { flex-direction: column; }
  .ee-apply-sidebar { position: static; max-width: none; width: 100%; }
}

/* Validation feedback — a required option-grid/checklist/field left empty */
.ee-group-invalid { outline: 2px solid var(--ee-coral); outline-offset: 6px; border-radius: var(--ee-radius); }
.ee-group-invalid::before {
  content: "Please make a selection to continue.";
  display: block; color: var(--ee-coral); font-size: .82rem; font-weight: 700; margin-bottom: .5rem;
}
input.is-invalid { border-color: var(--ee-coral) !important; box-shadow: 0 0 0 .2rem rgba(228, 89, 63, .15); }

/* Submission status banner (Airtable save) at the top of the Results screen */
.ee-submit-status {
  border-radius: var(--ee-radius); padding: .8rem 1.1rem; margin-bottom: 1rem;
  font-size: .88rem; font-weight: 600; background: var(--ee-chip-navy); color: var(--ee-navy);
}
.ee-submit-status.is-ok    { background: var(--ee-chip-green); color: var(--ee-teal-dark); }
.ee-submit-status.is-error { background: var(--ee-chip-coral); color: var(--ee-coral); }
