/*
Theme Name: Elektra Experts
Theme URI: https://elektraexperts.nl
Author: Elektra Experts
Description: Plugin-free WordPress theme for Elektra Experts. Runs with only Rank Math (SEO) and Polylang (NL/EN). Native CPTs for services and cities, built-in schema, forms, accordions and a one-click content importer. No page builder, no jQuery.
Version: 1.12.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elektra-experts
Tags: business, custom-menu, custom-logo, translation-ready, block-patterns
*/

/* ==========================================================================
   Elektra Experts — vanilla rebuild
   Structured for a later plugin-free WordPress theme port.

   0. Design tokens
   1. Reset & base
   2. Layout primitives
   3. Decorative patterns
   4. Components (buttons, eyebrow, cards, forms, counters, lists)
   5. Header & navigation
   6. Page sections
   7. Footer
   8. Floating UI
   9. Motion / reveal
   ========================================================================== */

/* ==========================================================================
   0. DESIGN TOKENS
   Values lifted from the live Elementor kit (post 9) so the rebuild is
   colour-for-colour identical to production.
   ========================================================================== */
:root {
  /* ---- Brand ---- */
  --ee-yellow:            #FFEE02;   /* Accent 1 / Button          */
  --ee-yellow-deep:       #FFC303;   /* Accent 2 — gradient partner */
  --ee-yellow-warm:       #FFAF22;   /* topbar gradient end         */
  --ee-navy:              #1B263E;   /* Smooth Dark — topbar, cards */
  --ee-navy-deep:         #0E2759;   /* Accent 3                    */
  --ee-ink:               #111827;   /* Dark Background — footer    */
  --ee-ink-deep:          #050E20;   /* Extra Dark Background       */
  --ee-btn-hover:         #040B18;   /* Button Hover                */
  --ee-red:               #FF0000;   /* Spoedopdracht badge         */
  --ee-orange:            #ED9200;   /* Emergency item in the menu  */

  /* ---- Neutrals ---- */
  --ee-heading:           #161616;
  --ee-body:              #525252;
  --ee-white:             #FFFFFF;
  --ee-line:              #DCDDE8;
  --ee-bg-light:          #F9FBFF;
  --ee-bg-lighter:        #F6F8FE;
  --ee-white-20:          #FFFFFF2B;

  /* ---- Typography ---- */
  --ee-font-heading: "Vazirmatn", "Segoe UI", system-ui, sans-serif;
  --ee-font-body:    "Inter", "Segoe UI", system-ui, sans-serif;
  --ee-font-meta:    "DM Sans", "Segoe UI", system-ui, sans-serif;

  --ee-h1: 48px;  --ee-h2: 39px;  --ee-h3: 31px;
  --ee-h4: 25px;  --ee-h5: 20px;  --ee-h6: 14px;
  --ee-text: 16px;
  --ee-text-sm: 14px;

  /* ---- Layout ---- */
  --ee-container: 1280px;
  --ee-container-wide: 1700px;   /* services grid, footer, hero */
  --ee-gutter: 20px;
  --ee-gap: 20px;
  --ee-radius: 4px;
  --ee-radius-lg: 8px;
  --ee-radius-pill: 999px;

  /* ---- Effects ---- */
  --ee-shadow-sm: 0 3px 10px rgba(0, 0, 0, .1);
  --ee-shadow:    0 10px 30px rgba(16, 24, 40, .08);
  --ee-shadow-lg: 0 24px 60px rgba(16, 24, 40, .14);
  --ee-ease: cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 1024px) {
  :root {
    --ee-h1: 37px; --ee-h2: 31px; --ee-h3: 25px;
    --ee-h4: 21px; --ee-h5: 18px; --ee-h6: 13px;
    --ee-text: 15px;
  }
}
@media (max-width: 767px) {
  :root {
    --ee-h1: 30px; --ee-h2: 24px; --ee-h3: 20px;
    --ee-h4: 18px; --ee-h5: 16px; --ee-h6: 12px;
    --ee-text: 14px;
    --ee-gutter: 16px;
  }
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ee-font-body);
  font-size: var(--ee-text);
  line-height: 1.4;
  color: var(--ee-body);
  background: var(--ee-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-family: var(--ee-font-heading);
  color: var(--ee-heading);
  line-height: 1.2;
}
h1 { font-size: var(--ee-h1); font-weight: 700; }
h2 { font-size: var(--ee-h2); font-weight: 700; }
h3 { font-size: var(--ee-h3); font-weight: 600; line-height: 1.3; }
h4 { font-size: var(--ee-h4); font-weight: 400; line-height: 1.3; }
h5 { font-size: var(--ee-h5); font-weight: 600; line-height: 1.4; }
h6 { font-size: var(--ee-h6); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ee-yellow-deep); }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--ee-yellow-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

.ee-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: .75em 1.5em; background: var(--ee-white); color: var(--ee-navy);
  font-weight: 600;
}
.ee-skip-link:focus { left: 0; }

.ee-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   2. LAYOUT PRIMITIVES
   ========================================================================== */
.ee-container {
  width: 100%;
  max-width: var(--ee-container);
  margin-inline: auto;
  padding-inline: var(--ee-gutter);
}
.ee-container--wide { max-width: var(--ee-container-wide); }

/*
 * Never scroll the page sideways.
 *
 * Sections across the site reveal from +/-40px horizontally, so until each one
 * animates in its children genuinely sit outside the container and widen the
 * document — a scrollbar that appears before you scroll and vanishes after.
 *
 * `clip` is deliberate: `overflow-x: hidden` would turn the body into a scroll
 * container and break the sticky header. `clip` contains the overflow without
 * creating one. Browsers without support simply fall back to today's behaviour.
 */
body { overflow-x: clip; }

/* Grid and flex items default to min-width:auto, so a wide child (a form row,
   a long word) can push a track past the viewport. Allow every layout track
   to shrink — the single most common source of mobile horizontal overflow. */
.ee-hero__inner > *,
.ee-about__inner > *,
.ee-about__stats > *,
.ee-who__inner > *,
.ee-who__lists > *,
.ee-services__grid > *,
.ee-help__grid > *,
.ee-why__grid > *,
.ee-stats__grid > *,
.ee-appointment__inner > *,
.ee-appointment__trust > *,
.ee-footer__grid > *,
.ee-form__row > *,
.ee-field > * { min-width: 0; }

.ee-section { position: relative; padding-block: 100px; }
.ee-section--tight { padding-block: 64px; }
.ee-section--flush { padding-block: 0; }
.ee-section--light   { background: var(--ee-bg-light); }
.ee-section--lighter { background: var(--ee-bg-lighter); }
.ee-section--navy    { background: var(--ee-navy); color: var(--ee-white); }
.ee-section--ink     { background: var(--ee-ink);  color: var(--ee-white); }

@media (max-width: 1024px) { .ee-section { padding-block: 72px; } }
@media (max-width: 767px)  { .ee-section { padding-block: 56px; } .ee-section--tight { padding-block: 44px; } }

/* Centred section intro (eyebrow + heading + lead) */
.ee-section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.ee-section-head p { color: var(--ee-body); }
.ee-section-head--left { margin-inline: 0; text-align: left; }

/* ==========================================================================
   3. DECORATIVE PATTERNS
   The original ships these as raster background images. Rebuilt here as
   pure CSS dot-fields — resolution independent and ~0 bytes.
   ========================================================================== */
.ee-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(currentColor 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: .18;
}
/* Circular halftone: dots fade out from the centre */
.ee-dots--orb {
  width: 620px; aspect-ratio: 1;
  -webkit-mask-image: radial-gradient(circle, #000 12%, rgba(0,0,0,.55) 42%, transparent 68%);
          mask-image: radial-gradient(circle, #000 12%, rgba(0,0,0,.55) 42%, transparent 68%);
}
/* Corner halftone wedge */
.ee-dots--corner {
  width: 420px; height: 520px;
  -webkit-mask-image: radial-gradient(circle at 0% 40%, #000 5%, transparent 62%);
          mask-image: radial-gradient(circle at 0% 40%, #000 5%, transparent 62%);
}
/* Edge band used inside the navy strip */
.ee-dots--band {
  top: 0; bottom: 0; width: 260px;
  background-size: 14px 14px;
  opacity: .22;
}
.ee-dots--band-left  { left: 0;  -webkit-mask-image: linear-gradient(90deg, #000, transparent); mask-image: linear-gradient(90deg, #000, transparent); }
.ee-dots--band-right { right: 0; -webkit-mask-image: linear-gradient(270deg, #000, transparent); mask-image: linear-gradient(270deg, #000, transparent); }

@media (max-width: 767px) { .ee-dots { display: none; } }

/* ==========================================================================
   4. COMPONENTS
   ========================================================================== */

/* ---- 4.1 Eyebrow -------------------------------------------------------- */
.ee-eyebrow {
  display: block;
  font-family: var(--ee-font-heading);
  font-size: var(--ee-h6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ee-yellow-deep);
  margin: 0 0 14px;
}
.ee-eyebrow--on-dark { color: var(--ee-yellow); }

/* ---- 4.2 Buttons -------------------------------------------------------- */
.ee-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--ee-radius);
  font-family: var(--ee-font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background-color .25s var(--ee-ease),
              color .25s var(--ee-ease),
              transform .25s var(--ee-ease),
              box-shadow .25s var(--ee-ease);
}
.ee-btn:hover { transform: translateY(-2px); }
.ee-btn svg { width: 1em; height: 1em; fill: currentColor; flex: none; }

.ee-btn--primary { background: var(--ee-yellow); color: var(--ee-btn-hover); }
.ee-btn--primary:hover { background: var(--ee-btn-hover); color: var(--ee-white); box-shadow: var(--ee-shadow); }

.ee-btn--dark { background: var(--ee-btn-hover); color: var(--ee-white); }
.ee-btn--dark:hover { background: var(--ee-yellow); color: var(--ee-btn-hover); box-shadow: var(--ee-shadow); }

.ee-btn--gradient {
  background: radial-gradient(at center, var(--ee-yellow) 0%, var(--ee-yellow-warm) 100%);
  color: var(--ee-btn-hover);
  padding: 7px 16px;
  font-size: 14px;
}
.ee-btn--gradient:hover { background: var(--ee-yellow-deep); color: var(--ee-btn-hover); }

.ee-btn--outline-light { background: transparent; color: var(--ee-white); box-shadow: inset 0 0 0 1px var(--ee-white-20); }
.ee-btn--outline-light:hover { background: var(--ee-yellow); color: var(--ee-btn-hover); box-shadow: none; }

.ee-btn--sm    { padding: 10px 20px; font-size: 14px; }
.ee-btn--block { display: flex; width: 100%; justify-content: center; }

/* ---- 4.3 Yellow pill banner -------------------------------------------- */
.ee-pill-banner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1040px;
  margin-inline: auto;
  padding: 22px 40px;
  background: var(--ee-yellow);
  border-radius: var(--ee-radius-pill);
  box-shadow: var(--ee-shadow);
  font-family: var(--ee-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--ee-heading);
  text-align: center;
}
@media (max-width: 767px) {
  .ee-pill-banner { font-size: 15px; padding: 18px 24px; border-radius: var(--ee-radius-lg); }
}

/* ---- 4.4 Cards ---------------------------------------------------------- */
.ee-card {
  background: var(--ee-white);
  border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow);
}

/* Service card: title row + arrow, image, body, CTA */
.ee-service-card {
  display: flex;
  flex-direction: column;
  background: var(--ee-white);
  border-radius: var(--ee-radius);
  overflow: hidden;
  box-shadow: var(--ee-shadow);
  transition: transform .35s var(--ee-ease), box-shadow .35s var(--ee-ease);
}
.ee-service-card:hover { transform: translateY(-6px); box-shadow: var(--ee-shadow-lg); }

.ee-service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 22px;
}
.ee-service-card__title { margin: 0 0 4px; font-size: 21px; font-weight: 600; color: var(--ee-heading); }
.ee-service-card__tag {
  margin: 0;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ee-body);
}
.ee-service-card__arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--ee-yellow);
  color: var(--ee-btn-hover);
  transition: transform .35s var(--ee-ease), background-color .25s var(--ee-ease);
}
.ee-service-card__arrow svg { width: 22px; height: 22px; fill: currentColor; }
.ee-service-card:hover .ee-service-card__arrow { transform: rotate(45deg) scale(1.06); }

.ee-service-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.ee-service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ee-ease); }
.ee-service-card:hover .ee-service-card__media img { transform: scale(1.05); }

.ee-service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px 30px;
  flex: 1;
}
.ee-service-card__body p { margin: 0; flex: 1; }

/* Contact / help card */
.ee-help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 44px 32px;
  background: var(--ee-white);
  border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow);
  text-align: center;
  transition: transform .35s var(--ee-ease), box-shadow .35s var(--ee-ease);
}
.ee-help-card:hover { transform: translateY(-6px); box-shadow: var(--ee-shadow-lg); }
.ee-help-card__icon {
  display: grid; place-items: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--ee-yellow);
  color: var(--ee-btn-hover);
}
.ee-help-card__icon svg { width: 30px; height: 30px; fill: currentColor; }
.ee-help-card h3 { margin: 0; font-size: 24px; font-weight: 500; }
.ee-help-card p  { margin: 0; }

/* Featured (yellow) variant — inverts the icon */
.ee-help-card--featured { background: var(--ee-yellow); }
.ee-help-card--featured .ee-help-card__icon { background: var(--ee-btn-hover); color: var(--ee-yellow); }
.ee-help-card--featured p { color: var(--ee-heading); }

/* Feature card (navy, "waarom voor ons kiezen") */
.ee-feature-card {
  padding: 40px 32px;
  background: var(--ee-navy);
  border-radius: var(--ee-radius);
  color: var(--ee-white);
  transition: transform .35s var(--ee-ease), box-shadow .35s var(--ee-ease);
}
.ee-feature-card:hover { transform: translateY(-6px); box-shadow: var(--ee-shadow-lg); }
.ee-feature-card__icon { margin-bottom: 22px; color: var(--ee-yellow); }
.ee-feature-card__icon svg { width: 42px; height: 42px; fill: currentColor; }
.ee-feature-card h3 { margin: 0 0 12px; font-size: 22px; font-weight: 600; color: var(--ee-white); }
.ee-feature-card p  { margin: 0; color: rgba(255, 255, 255, .78); }

.ee-feature-card--accent { background: var(--ee-yellow); color: var(--ee-heading); }
.ee-feature-card--accent .ee-feature-card__icon { color: var(--ee-btn-hover); }
.ee-feature-card--accent h3 { color: var(--ee-heading); }
.ee-feature-card--accent p  { color: rgba(4, 11, 24, .78); }

/* ---- 4.5 Counters ------------------------------------------------------- */
.ee-counter__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--ee-font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--ee-yellow-deep);
}
.ee-counter__title {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ee-body);
}
.ee-counter--on-dark .ee-counter__value { color: var(--ee-yellow); }
.ee-counter--on-dark .ee-counter__title { color: rgba(255, 255, 255, .75); }

/* ---- 4.6 Check list ----------------------------------------------------- */
.ee-check-list { display: grid; gap: 14px; }
.ee-check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; color: var(--ee-heading); }
.ee-check-list svg { flex: none; width: 22px; height: 22px; margin-top: 1px; fill: var(--ee-yellow-deep); }

/* ---- 4.7 Forms ---------------------------------------------------------- */
.ee-form { display: grid; gap: 16px; }
.ee-form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .ee-form__row { grid-template-columns: 1fr; } }

.ee-field { display: grid; gap: 7px; }
.ee-field > label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ee-heading);
}
.ee-field input,
.ee-field select,
.ee-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--ee-bg-lighter);
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  font-size: 15px;
  color: var(--ee-heading);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.ee-field textarea { min-height: 120px; resize: vertical; }
.ee-field input::placeholder,
.ee-field textarea::placeholder { color: #9AA1AE; }
.ee-field input:focus,
.ee-field select:focus,
.ee-field textarea:focus {
  outline: none;
  background: var(--ee-white);
  border-color: var(--ee-yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 195, 3, .18);
}
.ee-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23525252'%3E%3Cpath d='M12 15.5 5.5 9h13z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.ee-field input[type="file"] { padding: 10px 14px; background: var(--ee-white); }

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

/* ---- 5.1 Topbar --------------------------------------------------------- */
.ee-topbar { background: var(--ee-navy); color: var(--ee-white); }
.ee-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 9px;
}
.ee-topbar__note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--ee-text-sm); font-weight: 500; color: var(--ee-white);
}
.ee-topbar__note svg { width: 18px; height: 18px; fill: var(--ee-yellow); flex: none; }
.ee-topbar__note:hover { color: var(--ee-yellow); }
@media (max-width: 767px) { .ee-topbar__inner { justify-content: space-between; gap: 8px; } }

/* ---- 5.2 Header --------------------------------------------------------- */
.ee-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ee-white);
  box-shadow: 0 1px 0 rgba(16, 24, 40, .07);
}
.ee-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.ee-header__logo { flex: none; padding-block: 12px; }
.ee-header__logo img { height: 53px; width: auto; }
@media (max-width: 767px) { .ee-header__logo img { height: 42px; } }

.ee-header__right { display: flex; align-items: center; gap: 22px; }

/*
 * Desktop: the menu starts beside the logo rather than hugging the right edge.
 * The right block takes the free space and the nav claims the left of it, so
 * the language picker and the CTA are the only things pushed to the far right.
 */
@media (min-width: 1025px) {
  .ee-header__right { flex: 1; gap: 16px; }
  .ee-nav { margin-right: auto; }

}

/* ---- 5.3 Primary nav ---------------------------------------------------- */
.ee-nav__list { display: flex; align-items: center; gap: 18px; }
.ee-nav__link {
  position: relative;
  display: block;
  padding-block: 26px;
  font-family: var(--ee-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ee-heading);
  transition: color .2s;
}
/*
 * Warmer yellow on hover.
 *
 * The footer uses --ee-yellow-deep and reads rich because it sits on near-black.
 * The same value on the white header washes out, so the header steps one shade
 * warmer to land at the same perceived weight. Same intent, different backdrop.
 */
.ee-nav__link:hover,
.ee-nav__item--active > .ee-nav__link { color: var(--ee-yellow-warm); }

/* Emergency menu item — same colour at every width, so the item does not
   change identity between the desktop bar and the mobile panel. */
.ee-nav__item--emergency > .ee-nav__link {
  padding: 9px 18px;
  background: var(--ee-orange);
  color: var(--ee-white);
  border-radius: 4px;
  font-weight: 700;
}
.ee-nav__item--emergency > .ee-nav__link:hover { background: #D48200; color: var(--ee-white); }

/*
 * Desktop: the emergency item spans the full header height and is red.
 *
 * This has to come after the base rule above — same specificity, so source
 * order decides. Making one item full-bleed means the whole chain from
 * .ee-header__inner down to the <li> must stretch instead of centring;
 * everything else is re-centred individually so only this block fills the bar.
 */
@media (min-width: 1025px) {
  .ee-header__inner { align-items: stretch; }
  .ee-header__logo  { display: flex; align-items: center; }
  .ee-header__right { align-items: stretch; }
  .ee-nav           { display: flex; align-items: stretch; }
  .ee-nav__list     { align-items: stretch; }
  .ee-nav__list > .ee-nav__item { display: flex; align-items: center; }
  .ee-langpick, .ee-header__cta { align-self: center; }

  .ee-nav__item--emergency { align-items: stretch; }
  .ee-nav__item--emergency > .ee-nav__link {
    display: flex; align-items: center;
    height: 100%;
    padding: 0 22px;
    border-radius: 0;
    background: var(--ee-red);
    color: var(--ee-white);
  }
  .ee-nav__item--emergency > .ee-nav__link:hover { background: #D40000; color: var(--ee-white); }
}

/* Dropdown */
.ee-nav__item--has-children { position: relative; }
.ee-nav__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--ee-font-heading); font-size: 16px; font-weight: 600;
  color: var(--ee-heading); padding-block: 26px;
}
.ee-nav__toggle:hover { color: var(--ee-yellow-warm); }
.ee-nav__toggle svg { width: 12px; height: 12px; fill: currentColor; transition: transform .25s; }
.ee-nav__item--open > .ee-nav__toggle svg { transform: rotate(180deg); }

.ee-nav__submenu {
  position: absolute; top: 100%; left: 0; z-index: 20;
  min-width: 250px;
  padding: 6px 0;
  background: var(--ee-white);
  border-radius: 5px;
  box-shadow: var(--ee-shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.ee-nav__item--has-children:hover > .ee-nav__submenu,
.ee-nav__item--open > .ee-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.ee-nav__submenu a { display: block; padding: 12px 20px; font-size: 15px; transition: background-color .2s, color .2s; }
.ee-nav__submenu a:hover { background: var(--ee-yellow); color: var(--ee-btn-hover); }
.ee-nav__sublink { display: flex; align-items: center; gap: 10px; }
.ee-nav__sublink-icon {
  width: 18px; height: 18px; flex: none;
  fill: var(--ee-yellow-deep);
  transition: fill .2s;
}
.ee-nav__sublink:hover .ee-nav__sublink-icon { fill: var(--ee-btn-hover); }

/* Services dropdown: two columns with an icon per service. */
@media (min-width: 1025px) {
  .ee-nav__submenu--grid {
    display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 4px; padding: 12px; min-width: 460px;
  }
  .ee-nav__submenu--grid .ee-nav__sublink {
    padding: 12px 14px; border-radius: 7px; font-weight: 500; line-height: 1.35;
  }
}

/* ---- 5.4 Burger --------------------------------------------------------- */
.ee-burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: var(--ee-heading);
}
.ee-burger svg { width: 26px; height: 26px; fill: currentColor; }
.ee-burger__close { display: none; }
.ee-burger[aria-expanded="true"] .ee-burger__open  { display: none; }
.ee-burger[aria-expanded="true"] .ee-burger__close { display: block; }

@media (max-width: 1024px) {
  .ee-burger { display: inline-flex; }
  .ee-header__cta { display: none; }

  .ee-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ee-white);
    box-shadow: var(--ee-shadow);
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ee-ease);
  }
  .ee-nav[data-open="true"] { max-height: calc(100vh - 140px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .ee-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0 18px; }

  /* Full-width rows, 56px tall, so every target clears the 48px guideline. */
  .ee-nav__item { border-bottom: 1px solid var(--ee-line); }
  .ee-nav__item:last-child { border-bottom: 0; }
  .ee-nav__link, .ee-nav__toggle {
    padding: 17px var(--ee-gutter);
    width: 100%;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: capitalize;
  }
  .ee-nav__toggle svg { width: 14px; height: 14px; }

  /*
   * Emergency: the same full-width row as every other item, filled orange.
   * No margin, radius or shadow — it should read as part of the list rather
   * than a button floating on top of it.
   */
  .ee-nav__item--emergency > .ee-nav__link {
    margin: 0;
    width: 100%;
    justify-content: flex-start;
    padding: 17px var(--ee-gutter);
    background: var(--ee-orange);
    color: var(--ee-white);
    border-radius: 0;
    box-shadow: none;
  }

  /*
   * max-height:0 clips the children but leaves the element's own padding
   * rendering, which showed as a strip of grey under a closed dropdown.
   * Vertical padding therefore has to be zero until the item is open.
   */
  .ee-nav__submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-radius: 0;
    max-height: 0; overflow: hidden;
    padding-block: 0;
    transition: max-height .3s var(--ee-ease), padding-block .3s var(--ee-ease);
    background: var(--ee-bg-lighter);
  }
  .ee-nav__item--open > .ee-nav__submenu { max-height: 620px; }
  .ee-nav__submenu .ee-nav__sublink {
    display: flex; align-items: center; gap: 10px;
    padding: 14px var(--ee-gutter);
    font-size: 15px; font-weight: 500;
    text-transform: capitalize;
  }

  /* Services: two columns with an icon per item. */
  .ee-nav__submenu--grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 var(--ee-gutter);          /* vertical padding added on open */
  }
  .ee-nav__item--open > .ee-nav__submenu--grid {
    padding-block: 14px 16px;
  }
  .ee-nav__item--open > .ee-nav__submenu--grid { max-height: 620px; }
  .ee-nav__submenu--grid .ee-nav__sublink {
    flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 11px 11px;
    min-height: 76px;
    background: var(--ee-white);
    border: 1px solid var(--ee-line);
    border-radius: 9px;
    font-size: 13.5px; font-weight: 600; line-height: 1.28;
  }
  .ee-nav__submenu--grid .ee-nav__sublink-icon { width: 16px; height: 16px; }
  .ee-nav__submenu--grid .ee-nav__sublink:hover,
  .ee-nav__submenu--grid .ee-nav__sublink:focus-visible {
    background: var(--ee-yellow); border-color: var(--ee-yellow); color: var(--ee-btn-hover);
  }
}

/* ==========================================================================
   6. PAGE SECTIONS
   ========================================================================== */

/* ---- 6.1 Hero ----------------------------------------------------------- */
.ee-hero { position: relative; isolation: isolate; overflow: hidden; }
.ee-hero__bg { position: absolute; inset: 0; z-index: -2; }
.ee-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ee-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
              rgba(10, 17, 33, .94) 0%,
              rgba(10, 17, 33, .82) 34%,
              rgba(10, 17, 33, .42) 62%,
              rgba(10, 17, 33, .30) 100%);
}
.ee-hero__inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 480px);
  align-items: center;
  gap: 60px;
  padding-block: 120px;
}
.ee-hero__content { max-width: 620px; }
.ee-hero__content h1 { color: var(--ee-white); margin-bottom: 20px; }
.ee-hero__lead { color: rgba(255, 255, 255, .88); font-size: 17px; line-height: 1.6; margin-bottom: 30px; }
/* The lead is a long paragraph; at phone width 17px/1.6 pushes the form far
   below the fold. Smaller and tighter keeps the CTA in view. */
@media (max-width: 767px) {
  .ee-hero__lead { font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
}

.ee-hero__form { background: var(--ee-white); border-radius: var(--ee-radius); box-shadow: var(--ee-shadow-lg); overflow: hidden; }
.ee-hero__form-head { padding: 22px 28px; background: var(--ee-yellow); text-align: center; }
.ee-hero__form-head h2 { margin: 0; font-size: 26px; font-weight: 700; color: var(--ee-heading); }
.ee-hero__form-body { padding: 28px; }

@media (max-width: 1100px) {
  .ee-hero__inner { grid-template-columns: 1fr; gap: 44px; padding-block: 80px; }
  .ee-hero__content { max-width: none; }
}
@media (max-width: 767px) {
  .ee-hero__inner { padding-block: 56px; }
  .ee-hero__form-head h2 { font-size: 21px; }
  .ee-hero__form-body { padding: 22px; }
}

/* ---- 6.2 Navy advice band ---------------------------------------------- */
.ee-band {
  position: relative;
  overflow: hidden;
  background: var(--ee-navy);
  color: var(--ee-white);
}
.ee-band__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  padding-block: 40px;
}
.ee-band__title { margin: 0; font-size: 26px; font-weight: 400; color: var(--ee-white); }
@media (max-width: 767px) { .ee-band__title { font-size: 19px; } .ee-band__inner { padding-block: 32px; } }

/* ---- 6.3 About / core values ------------------------------------------- */
.ee-about { position: relative; overflow: hidden; }
.ee-about__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.ee-about__media { position: relative; display: grid; grid-template-columns: 300px 1fr; align-items: center; }

.ee-values {
  position: relative; z-index: 2;
  padding: 40px 32px;
  background: var(--ee-navy);
  color: var(--ee-white);
  border-radius: var(--ee-radius);
}
.ee-values__icon {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--ee-yellow);
  color: var(--ee-btn-hover);
  margin-bottom: 26px;
}
.ee-values__icon svg { width: 28px; height: 28px; fill: currentColor; }
.ee-values__rule { height: 1px; background: var(--ee-white-20); border: 0; margin: 0 0 24px; }
.ee-values h3 { color: var(--ee-white); font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.ee-values p  { color: rgba(255, 255, 255, .8); font-size: 15px; margin-bottom: 26px; }

.ee-about__photo { margin-left: -40px; border-radius: var(--ee-radius); overflow: hidden; box-shadow: var(--ee-shadow); }
.ee-about__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.ee-about__badge {
  position: absolute;
  right: -20px; bottom: -50px;
  z-index: 3;
  display: grid; place-content: center; justify-items: center; gap: 6px;
  width: 200px; aspect-ratio: 1;
  padding: 20px;
  background: var(--ee-white);
  border-radius: 50%;
  box-shadow: var(--ee-shadow-lg);
  text-align: center;
}
.ee-about__badge strong {
  font-family: var(--ee-font-heading);
  font-size: 42px; font-weight: 700; line-height: 1;
  color: var(--ee-yellow-deep);
}
.ee-about__badge span { font-size: 15px; color: var(--ee-heading); }

.ee-about__body h2 { margin-bottom: 18px; }
.ee-about__body > h2:first-child { font-size: var(--ee-h4); font-weight: 700; }
.ee-about__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  margin-top: 34px; padding-top: 30px;
  border-top: 1px solid var(--ee-line);
}

@media (max-width: 1100px) {
  .ee-about__inner { grid-template-columns: 1fr; gap: 90px; }
  .ee-about__media { grid-template-columns: 260px 1fr; }
}
@media (max-width: 767px) {
  .ee-about__media { grid-template-columns: 1fr; }
  .ee-about__photo { margin-left: 0; margin-top: -20px; }
  .ee-about__badge { position: static; width: 168px; margin: 24px auto 0; }
}

/* ---- 6.4 Client logo marquee ------------------------------------------- */
/* Replaces the Swiper carousel with a dependency-free CSS marquee. */
.ee-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ee-marquee__track { display: flex; width: max-content; animation: ee-marquee 34s linear infinite; }
.ee-marquee:hover .ee-marquee__track { animation-play-state: paused; }
.ee-marquee__group { display: flex; align-items: center; gap: 110px; padding-right: 110px; }
.ee-marquee img { height: 46px; width: auto; object-fit: contain; opacity: .75; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.ee-marquee img:hover { opacity: 1; filter: grayscale(0); }
@keyframes ee-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ee-marquee__track { animation: none; } }

/* ---- 6.5 Dark CTA over photo ------------------------------------------- */
.ee-photo-cta { position: relative; isolation: isolate; overflow: hidden; }
.ee-photo-cta__bg { position: absolute; inset: 0; z-index: -2; }
.ee-photo-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.ee-photo-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(8, 14, 28, .93) 0%, rgba(8, 14, 28, .72) 45%, rgba(8, 14, 28, .35) 100%);
}
.ee-photo-cta__box { max-width: 620px; padding-block: 110px; color: var(--ee-white); }
.ee-photo-cta__box h2 { color: var(--ee-white); font-size: 34px; margin-bottom: 16px; }
.ee-photo-cta__box p  { color: rgba(255, 255, 255, .84); margin-bottom: 28px; }
.ee-photo-cta--center { text-align: center; }
.ee-photo-cta--center .ee-photo-cta__box { margin-inline: auto; }
.ee-photo-cta--center::before { background: linear-gradient(180deg, rgba(8, 14, 28, .84), rgba(8, 14, 28, .9)); }
@media (max-width: 767px) { .ee-photo-cta__box { padding-block: 64px; } .ee-photo-cta__box h2 { font-size: 24px; } }

/* ---- 6.6 Stats strip ---------------------------------------------------- */
.ee-stats { background: var(--ee-bg-lighter); }
.ee-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.ee-stats .ee-counter__value { font-size: 52px; }
@media (max-width: 767px) { .ee-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } .ee-stats .ee-counter__value { font-size: 38px; } }

/* ---- 6.7 Who we are ----------------------------------------------------- */
.ee-who { position: relative; overflow-x: clip; }
.ee-who__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.ee-who__media { position: relative; display: grid; place-items: end center; }
.ee-who__media::before {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--ee-yellow); opacity: .45;
}
.ee-who__media img { position: relative; z-index: 1; max-height: 520px; width: auto; }
.ee-who__lists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--ee-line); }
.ee-who__actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 28px;
  margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--ee-line);
}
.ee-who__phone { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ee-font-heading); font-size: 22px; font-weight: 600; color: var(--ee-heading); }
.ee-who__phone svg { width: 26px; height: 26px; fill: var(--ee-heading); }
.ee-who__phone:hover { color: var(--ee-yellow-deep); }
@media (max-width: 1024px) {
  .ee-who__inner { grid-template-columns: 1fr; gap: 44px; }
  .ee-who__lists { grid-template-columns: 1fr; }
}

/* ---- 6.8 Services grid -------------------------------------------------- */
.ee-services { position: relative; overflow: hidden; background: var(--ee-bg-lighter); }
.ee-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 1024px) { .ee-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .ee-services__grid { grid-template-columns: 1fr; } }

/* ---- 6.9 Help cards ----------------------------------------------------- */
.ee-help__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
@media (max-width: 900px) { .ee-help__grid { grid-template-columns: 1fr; } }

/* ---- 6.10 Why-us grid --------------------------------------------------- */
.ee-why { position: relative; overflow: hidden; }
.ee-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) { .ee-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ee-why__grid { grid-template-columns: 1fr; } }

/* ---- 6.11 Navy inline CTA bar ------------------------------------------ */
.ee-cta-bar { background: var(--ee-navy); }
.ee-cta-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 26px; padding-block: 34px;
}
.ee-cta-bar__text { margin: 0; font-family: var(--ee-font-heading); font-size: 22px; font-weight: 600; color: var(--ee-white); }
@media (max-width: 767px) { .ee-cta-bar__text { font-size: 17px; text-align: center; } }

/* ---- 6.12 Appointment --------------------------------------------------- */
.ee-appointment { overflow-x: clip; }
.ee-appointment__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.ee-appointment__trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  margin-top: 34px; padding-top: 32px; border-top: 1px solid var(--ee-line);
}
.ee-trust { text-align: center; }
.ee-trust + .ee-trust { border-left: 1px solid var(--ee-line); }
.ee-trust__value { font-family: var(--ee-font-heading); font-size: 46px; font-weight: 700; line-height: 1; color: var(--ee-heading); }
.ee-trust__stars { display: flex; justify-content: center; gap: 3px; margin: 12px 0 10px; }
.ee-trust__stars svg { width: 16px; height: 16px; fill: var(--ee-yellow-deep); }
.ee-trust__label { font-family: var(--ee-font-heading); font-size: 17px; font-weight: 600; color: var(--ee-heading); margin-bottom: 8px; }
.ee-trust__note  { font-size: 14px; color: var(--ee-body); }

.ee-appointment__form { background: var(--ee-white); border-radius: var(--ee-radius); box-shadow: var(--ee-shadow-lg); overflow: hidden; }
.ee-appointment__form-head { padding: 26px 30px; background: var(--ee-navy); }
.ee-appointment__form-head h3 { margin: 0; font-size: 24px; font-weight: 700; color: var(--ee-yellow); }
.ee-appointment__form-body { padding: 30px; }
@media (max-width: 1024px) { .ee-appointment__inner { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 767px) {
  .ee-appointment__trust { grid-template-columns: 1fr; }
  .ee-trust + .ee-trust { border-left: 0; border-top: 1px solid var(--ee-line); padding-top: 26px; }
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.ee-footer { position: relative; background: var(--ee-ink); color: rgba(255, 255, 255, .78); padding-top: 90px; }

/*
 * Clearance for the overlapping newsletter card.
 *
 * The card is pulled 150px upward while the footer's own top padding is only
 * 90px, so it rises 60px above the footer edge and lands on top of whatever
 * the page happened to end with. Every page ends differently, which is why it
 * looked cramped everywhere rather than on one template.
 *
 * Reserving the overlap plus a margin at the end of the content guarantees a
 * real gap on every page, without changing the card's overlapping look.
 */
#content { padding-bottom: 110px; }

/* Newsletter card overlaps the footer's top edge */
.ee-newsletter {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr minmax(300px, 420px);
  align-items: center; gap: 40px;
  margin-top: -150px; margin-bottom: 64px;
  padding: 40px 48px;
  border-radius: 5px;
  background: radial-gradient(at top left, var(--ee-yellow) 0%, var(--ee-yellow-deep) 100%);
  color: var(--ee-heading);
}
/* Grid children default to min-width:auto, which lets a form's min-content
   width push the whole card wider than the viewport. Reset it. */
.ee-newsletter > *,
.ee-newsletter__form > * { min-width: 0; }

.ee-newsletter h2 { margin: 0; font-size: 27px; font-weight: 700; color: var(--ee-heading); }
.ee-newsletter__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ee-newsletter__form input {
  width: 100%; min-width: 0;
  padding: 12px 14px; border: 0; border-radius: var(--ee-radius);
  background: var(--ee-white); font-size: 15px;
}
.ee-newsletter__form .ee-btn { grid-column: 1 / -1; justify-content: center; }
@media (max-width: 900px) {
  .ee-newsletter { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; text-align: center; }
  .ee-newsletter h2 { font-size: 21px; }
}

/*
 * The overlap is a desktop flourish. On narrower screens the card is taller
 * relative to the viewport, so the same -150px swallows the end of the page.
 * Reduce the pull and the reserved space together, keeping the gap honest.
 */
@media (max-width: 1024px) {
  #content { padding-bottom: 84px; }
  .ee-newsletter { margin-top: -110px; margin-bottom: 52px; }
}
@media (max-width: 767px) {
  #content { padding-bottom: 64px; }
  .ee-newsletter { margin-top: -80px; margin-bottom: 44px; }
  .ee-footer { padding-top: 80px; }
  .ee-footer__bottom { padding-block: 26px; }
}
@media (max-width: 520px) { .ee-newsletter__form { grid-template-columns: 1fr; } }

/*
 * Four columns placed by name, so each breakpoint can arrange them freely.
 *
 * Desktop gives each block its own column: About, Cities, Services, Company.
 * Previously Company stacked underneath Services, which left the About column
 * oversized and a tall gap under Cities. On narrow screens Company moves up
 * beside Cities — pairing the two short link lists and leaving the long
 * service names a full-width row of their own.
 */
.ee-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-areas: "about cities services company";
  align-items: start;
  column-gap: 40px;
  row-gap: 34px;
  padding-bottom: 50px;
}
.ee-footer__col--about    { grid-area: about; }
.ee-footer__col--cities   { grid-area: cities; }
.ee-footer__col--services { grid-area: services; }
.ee-footer__col--company  { grid-area: company; }
.ee-footer__logo img { height: 49px; width: auto; margin-bottom: 20px; }
.ee-footer__about { font-size: 13px; line-height: 1.7; margin-bottom: 26px; }
.ee-footer__about a { color: var(--ee-yellow); font-weight: 700; }
.ee-footer__about a:hover { text-decoration: underline; }
.ee-footer__badges { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ee-footer__badges img { height: 64px; width: auto; object-fit: contain; }

.ee-footer h5 { font-size: 19px; font-weight: 600; color: var(--ee-white); margin-bottom: 20px; }
.ee-footer__links { display: grid; gap: 9px; font-size: var(--ee-text-sm); }
.ee-footer__links a:hover, .ee-footer__links li:hover { color: var(--ee-yellow-deep); }

.ee-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-block: 30px;
  border-top: 1px solid var(--ee-white-20);
}
.ee-footer__copy { font-family: var(--ee-font-meta); font-size: 13px; margin: 0; }
.ee-footer__legal { display: flex; gap: 22px; font-size: var(--ee-text-sm); }
.ee-footer__legal a { display: inline-flex; align-items: center; gap: 6px; }
.ee-footer__legal a:hover { color: var(--ee-yellow-deep); }

@media (max-width: 900px) {
  .ee-footer__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "about    about"
      "cities   company"
      "services services";
    column-gap: 30px;
    row-gap: 32px;
  }
}
@media (max-width: 767px) {
  .ee-footer__bottom { flex-direction: column; text-align: center; }
}

/*
 * One column on phones.
 *
 * "Bedrijf" shares a column with "Diensten", so in the two-column layout it
 * rendered in the right-hand half and read as indented rather than aligned.
 * Stacking puts every heading and link flush to the container edge.
 */
@media (max-width: 600px) {
  .ee-footer__grid { column-gap: 20px; row-gap: 30px; padding-bottom: 40px; }
  .ee-footer__col { text-align: left; }
}

/* ==========================================================================
   8. FLOATING UI
   ========================================================================== */
.ee-whatsapp {
  position: fixed; left: 15px; bottom: 40px; z-index: 90;
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 11px rgba(0, 0, 0, .5);
  transition: transform .25s var(--ee-ease);
}
.ee-whatsapp:hover { transform: scale(1.08); }
.ee-whatsapp svg { width: 30px; height: 30px; fill: var(--ee-white); }

.ee-to-top {
  position: fixed; right: 20px; bottom: 40px; z-index: 90;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border: 0; border-radius: 50%;
  background: var(--ee-navy); color: var(--ee-yellow);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .25s var(--ee-ease);
}
.ee-to-top[data-visible="true"] { opacity: 1; visibility: visible; }
.ee-to-top:hover { transform: translateY(-3px); }
.ee-to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   9. MOTION / REVEAL
   Mirrors the Elementor fadeInUp / fadeInLeft / fadeInRight entrances.

   Progressive enhancement: the hidden start-state is scoped to `.ee-js`,
   which an inline <head> script adds. Without JS nothing is ever hidden.
   ========================================================================== */
.ee-js [data-reveal] {
  opacity: 0;
  transform: translate3d(var(--ee-rx, 0), var(--ee-ry, 28px), 0);
  transition: opacity .7s var(--ee-ease), transform .7s var(--ee-ease);
  transition-delay: var(--ee-delay, 0ms);
}
.ee-js [data-reveal="left"]  { --ee-rx: -40px; --ee-ry: 0; }
.ee-js [data-reveal="right"] { --ee-rx: 40px;  --ee-ry: 0; }
.ee-js [data-reveal="zoom"]  { --ee-ry: 0; transform: scale(.9); }
.ee-js [data-reveal].is-visible { opacity: 1; transform: none; }

/*
 * Below 1024px nothing is ever hidden.
 *
 * The entrance animations belong to the desktop design, where a wide viewport
 * shows a whole section at once and the fade reads as polish. On a phone the
 * viewport is short, so the same rule fires section by section as you scroll:
 * a 0.7s fade plus a stagger delay means the hero form arrives after the text,
 * and everything below the fold is invisible until scrolled past. That reads as
 * a slow, half-loaded page rather than an effect.
 *
 * The transition is removed as well as the start-state, so nothing can animate
 * in late even if the observer fires.
 */
@media (max-width: 1024px) {
  .ee-js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ee-js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ee-btn:hover, .ee-service-card:hover, .ee-help-card:hover, .ee-feature-card:hover { transform: none; }
}

/* ==========================================================================
   10. PRINT
   ========================================================================== */
@media print {
  .ee-topbar, .ee-header, .ee-whatsapp, .ee-to-top, .ee-newsletter { display: none; }
  body { color: #000; }
}

/* ==========================================================================
   11. WORDPRESS THEME COMPONENTS
   Added for the WP build: breadcrumbs, accordion, coverage grid, price table,
   testimonials, steps, prose, blog cards, pagination, language switcher.
   All reuse the existing tokens — no new colours introduced.
   ========================================================================== */

/* ---- 11.1 Topbar extras ------------------------------------------------- */
.ee-topbar__actions { display: flex; align-items: center; gap: 14px; }

/* ---- 11.1b Language picker ---------------------------------------------
 * The site's only language switcher, and it is the same component at every
 * width. On desktop it sits directly after the menu items; below 1024px the
 * nav and CTA are hidden, which leaves it beside the burger. Built on
 * <details>, so it opens without JavaScript.
 * ------------------------------------------------------------------------ */
.ee-langpick { display: block; position: relative; flex: none; }
/* Desktop: read as the last item of the nav, set slightly apart from the CTA. */
@media (min-width: 1025px) {
  .ee-langpick { margin-left: 4px; margin-right: 14px; }
}
.ee-langpick__btn {
  display: flex; align-items: center; gap: 5px;
  height: 46px; padding: 0 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--ee-heading); cursor: pointer; user-select: none;
  list-style: none; /* hide the default disclosure triangle */
}
.ee-langpick__btn::-webkit-details-marker { display: none; }
.ee-langpick__btn:focus-visible { outline: 2px solid var(--ee-yellow); outline-offset: 2px; border-radius: 4px; }
.ee-langpick__globe { width: 19px; height: 19px; fill: currentColor; flex: none; }
.ee-langpick__caret {
  width: 10px; height: 10px; fill: currentColor; flex: none;
  transition: transform .2s ease;
}
.ee-langpick[open] .ee-langpick__caret { transform: rotate(180deg); }

.ee-langpick__menu {
  position: absolute; top: calc(100% - 2px); right: 0; z-index: 60;
  min-width: 168px; margin: 0; padding: 6px;
  list-style: none;
  background: var(--ee-white);
  border: 1px solid var(--ee-line); border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, .14);
}
.ee-langpick__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px; border-radius: 5px;
  font-size: 14px; font-weight: 600; color: var(--ee-heading);
  transition: background-color .2s, color .2s;
}
.ee-langpick__item em {
  font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; color: var(--ee-muted);
}
.ee-langpick__item:hover { background: var(--ee-bg-lighter); }
.ee-langpick__item.is-current { background: var(--ee-yellow); color: var(--ee-btn-hover); }
.ee-langpick__item.is-current em { color: inherit; opacity: .7; }

@media (prefers-reduced-motion: reduce) {
  .ee-langpick__caret { transition: none; }
}

/* ---- 11.2 Breadcrumbs --------------------------------------------------- */
.ee-crumbs { background: var(--ee-bg-lighter); border-bottom: 1px solid var(--ee-line); }
.ee-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 12px; font-size: 13px; }
.ee-crumbs li { display: flex; align-items: center; gap: 8px; color: var(--ee-body); }
.ee-crumbs li + li::before { content: "/"; color: var(--ee-line); }
.ee-crumbs a { color: var(--ee-body); }
.ee-crumbs a:hover { color: var(--ee-yellow-deep); }
.ee-crumbs [aria-current] { color: var(--ee-heading); font-weight: 500; }

/* ---- 11.3 Inner page heroes -------------------------------------------- */
.ee-page-hero { padding-block: 70px 46px; text-align: center; }
.ee-page-hero h1 { margin: 0 0 14px; }
.ee-page-hero__lead { max-width: 720px; margin-inline: auto; font-size: 17px; color: var(--ee-body); }

.ee-page-hero--photo {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: 110px 90px; color: var(--ee-white);
}
.ee-page-hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 14, 28, .9), rgba(8, 14, 28, .82));
}
.ee-page-hero--photo h1 { color: var(--ee-white); }
.ee-page-hero--photo .ee-page-hero__lead { color: rgba(255, 255, 255, .86); }
.ee-page-hero--photo .ee-hero__actions { justify-content: center; }
@media (max-width: 767px) {
  .ee-page-hero { padding-block: 44px 30px; }
  .ee-page-hero--photo { padding-block: 66px 54px; }
}

.ee-hero--inner .ee-hero__inner { padding-block: 96px; }
.ee-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ee-hero__price {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 8px 16px;
  background: var(--ee-white-20); border-radius: var(--ee-radius-pill);
  font-size: 15px; font-weight: 600; color: var(--ee-white);
}
.ee-hero__price svg { width: 18px; height: 18px; fill: var(--ee-yellow); }

/* ---- 11.4 Prose (editor output) ---------------------------------------- */
.ee-prose { max-width: 860px; margin-inline: auto; font-size: 17px; line-height: 1.75; color: var(--ee-body); }
.ee-prose > * + * { margin-top: 1.15em; }
.ee-prose h2 { margin-top: 1.8em; font-size: var(--ee-h3); }
.ee-prose h3 { margin-top: 1.5em; font-size: var(--ee-h4); font-weight: 600; }
.ee-prose h2:first-child, .ee-prose h3:first-child { margin-top: 0; }
.ee-prose a {
  color: var(--ee-heading); font-weight: 600; text-decoration: underline;
  text-decoration-color: var(--ee-yellow); text-underline-offset: 3px;
}
.ee-prose a:hover { color: var(--ee-yellow-deep); }
.ee-prose ol { padding-left: 1.3em; }
.ee-prose ul { list-style: none; padding-left: 0; }
.ee-prose ul li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.ee-prose ul li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--ee-yellow);
  box-shadow: 0 0 0 3px rgba(255, 238, 2, .28);
}
.ee-prose ol { counter-reset: p; list-style: none; padding-left: 0; }
.ee-prose ol li { position: relative; padding-left: 38px; margin-bottom: .6em; counter-increment: p; }
.ee-prose ol li::before {
  content: counter(p); position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: 50%; background: var(--ee-navy); color: var(--ee-yellow);
  font-family: var(--ee-font-heading); font-size: 13px; font-weight: 700;
}
.ee-prose blockquote {
  margin: 1.6em 0; padding: 22px 26px;
  background: var(--ee-bg-lighter); border-left: 4px solid var(--ee-yellow);
  border-radius: var(--ee-radius); font-size: 18px; color: var(--ee-heading);
}
.ee-prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.ee-prose th, .ee-prose td { padding: 12px 14px; border-bottom: 1px solid var(--ee-line); text-align: left; }
.ee-prose th { font-family: var(--ee-font-heading); color: var(--ee-heading); }
.ee-prose img { border-radius: var(--ee-radius); }

/* ---- 11.5 USP strip ----------------------------------------------------- */
.ee-usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px 30px; }
.ee-usp {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ee-font-heading); font-weight: 600; color: var(--ee-heading);
}
.ee-usp svg { flex: none; width: 22px; height: 22px; fill: var(--ee-yellow-deep); }

/* ---- 11.6 Accordion / FAQ ---------------------------------------------- */
.ee-accordion { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.ee-accordion__item {
  background: var(--ee-white); border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius); overflow: hidden;
  transition: box-shadow .25s var(--ee-ease), border-color .25s var(--ee-ease);
}
.ee-accordion__item[open] { border-color: var(--ee-yellow); box-shadow: var(--ee-shadow); }
.ee-accordion__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-family: var(--ee-font-heading); font-size: 18px; font-weight: 600; color: var(--ee-heading);
}
.ee-accordion__q::-webkit-details-marker { display: none; }
.ee-accordion__q:hover { color: var(--ee-yellow-deep); }
.ee-accordion__icon {
  flex: none; width: 26px; height: 26px; padding: 5px;
  border-radius: 50%; background: var(--ee-yellow); fill: var(--ee-btn-hover);
  transition: transform .3s var(--ee-ease);
}
.ee-accordion__item[open] .ee-accordion__icon { transform: rotate(45deg); }
.ee-accordion__a { padding: 0 24px 22px; }
.ee-accordion__a p { margin: 0; color: var(--ee-body); line-height: 1.7; }
@media (max-width: 767px) {
  .ee-accordion__q { font-size: 16px; padding: 16px 18px; }
  .ee-accordion__a { padding: 0 18px 18px; }
}

/* ---- 11.7 Coverage grid ------------------------------------------------- */
.ee-coverage__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.ee-coverage__item {
  padding: 26px 22px; background: var(--ee-navy); color: var(--ee-white);
  border-radius: var(--ee-radius); text-align: center;
  transition: transform .3s var(--ee-ease);
}
.ee-coverage__item:hover { transform: translateY(-5px); }
.ee-coverage__icon { width: 30px; height: 30px; margin: 0 auto 12px; fill: var(--ee-yellow); }
.ee-coverage__item h4 { margin: 0 0 6px; font-size: 17px; font-weight: 600; color: var(--ee-white); }
.ee-coverage__item p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, .72); }

/* ---- 11.8 City chips ---------------------------------------------------- */
.ee-city__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; }
.ee-city__chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--ee-white);
  border: 1px solid var(--ee-line); border-radius: var(--ee-radius);
  font-family: var(--ee-font-heading); font-weight: 500; color: var(--ee-heading);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ee-ease);
}
.ee-city__chip:hover {
  border-color: var(--ee-yellow); box-shadow: var(--ee-shadow);
  transform: translateY(-2px); color: var(--ee-heading);
}
.ee-city__chip svg { flex: none; width: 18px; height: 18px; fill: var(--ee-yellow-deep); }
.ee-city__heading { margin: 56px 0 22px; text-align: center; font-size: var(--ee-h4); font-weight: 600; }
.ee-province + .ee-province { margin-top: 40px; }
.ee-province__title { margin-bottom: 16px; font-size: var(--ee-h5); font-weight: 600; color: var(--ee-heading); }

/* ---- 11.9 Steps --------------------------------------------------------- */
.ee-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.ee-step {
  position: relative; padding: 34px 26px 30px; background: var(--ee-white);
  border-radius: var(--ee-radius); box-shadow: var(--ee-shadow);
}
.ee-step__num {
  position: absolute; top: -22px; left: 26px;
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--ee-yellow); color: var(--ee-btn-hover);
  font-family: var(--ee-font-heading); font-size: 19px; font-weight: 700;
}
.ee-step h3 { margin: 8px 0 10px; font-size: 19px; font-weight: 600; }
.ee-step p { margin: 0; font-size: 15px; }

/* ---- 11.10 Problem cards ------------------------------------------------ */
.ee-problem__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.ee-problem {
  padding: 30px 26px; background: var(--ee-white); border-radius: var(--ee-radius);
  box-shadow: var(--ee-shadow); transition: transform .3s var(--ee-ease);
}
.ee-problem:hover { transform: translateY(-5px); }
.ee-problem__icon {
  display: grid; place-items: center; width: 54px; height: 54px;
  margin-bottom: 18px; border-radius: 50%; background: var(--ee-yellow);
}
.ee-problem__icon svg { width: 24px; height: 24px; fill: var(--ee-btn-hover); }
.ee-problem h3 { margin: 0 0 10px; font-size: 19px; font-weight: 600; }
.ee-problem p { margin: 0; font-size: 15px; }

/* ---- 11.11 Price table -------------------------------------------------- */
.ee-price { overflow-x: auto; border-radius: var(--ee-radius); box-shadow: var(--ee-shadow); background: var(--ee-white); }
.ee-price__table { width: 100%; min-width: 560px; border-collapse: collapse; }
.ee-price__table th, .ee-price__table td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--ee-line); font-size: 15px;
}
.ee-price__table thead th {
  background: var(--ee-navy); color: var(--ee-white);
  font-family: var(--ee-font-heading); font-size: 15px;
}
.ee-price__table thead th.ee-price__us { background: var(--ee-yellow); color: var(--ee-heading); }
.ee-price__table tbody th { font-family: var(--ee-font-heading); font-weight: 600; color: var(--ee-heading); }
.ee-price__table td.ee-price__us { font-weight: 700; color: var(--ee-heading); background: rgba(255, 238, 2, .09); }
.ee-price__table tbody tr:last-child th, .ee-price__table tbody tr:last-child td { border-bottom: 0; }

/* ---- 11.12 Testimonials ------------------------------------------------- */
.ee-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.ee-testimonial {
  margin: 0; padding: 30px 26px; background: var(--ee-white);
  border-radius: var(--ee-radius); box-shadow: var(--ee-shadow);
}
.ee-testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.ee-testimonial__stars svg { width: 17px; height: 17px; fill: var(--ee-yellow-deep); }
.ee-testimonial blockquote { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--ee-body); }
.ee-testimonial figcaption { font-family: var(--ee-font-heading); font-weight: 600; color: var(--ee-heading); }

/* ---- 11.13 Local context ----------------------------------------------- */
.ee-local__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.ee-local__inner > * { min-width: 0; }
.ee-local__inner .ee-prose { max-width: none; margin-inline: 0; }
.ee-local__photo { margin: 0; border-radius: var(--ee-radius); overflow: hidden; box-shadow: var(--ee-shadow); }
.ee-local__photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
@media (max-width: 1024px) { .ee-local__inner { grid-template-columns: 1fr; gap: 34px; } }

/* ---- 11.14 NAP list ----------------------------------------------------- */
.ee-nap { display: grid; gap: 14px; margin: 30px 0 0; padding-top: 26px; border-top: 1px solid var(--ee-line); }
.ee-nap > div { display: grid; grid-template-columns: 150px 1fr; gap: 14px; font-size: 15px; }
.ee-nap dt { font-family: var(--ee-font-heading); font-weight: 600; color: var(--ee-heading); }
.ee-nap dd { margin: 0; color: var(--ee-body); }
.ee-footer__nap { margin-top: 22px; font-style: normal; font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, .72); }
@media (max-width: 600px) { .ee-nap > div { grid-template-columns: 1fr; gap: 2px; } }

/* ---- 11.15 Blog cards --------------------------------------------------- */
.ee-post__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.ee-post-card {
  display: flex; flex-direction: column; background: var(--ee-white);
  border-radius: var(--ee-radius); overflow: hidden; box-shadow: var(--ee-shadow);
  transition: transform .35s var(--ee-ease), box-shadow .35s var(--ee-ease);
}
.ee-post-card:hover { transform: translateY(-6px); box-shadow: var(--ee-shadow-lg); }
.ee-post-card__media { display: block; aspect-ratio: 3/2; overflow: hidden; }
.ee-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ee-ease); }
.ee-post-card:hover .ee-post-card__media img { transform: scale(1.05); }
.ee-post-card__body {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; padding: 26px; flex: 1;
}
.ee-post-card__body time { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--ee-body); }
.ee-post-card__title { margin: 0; font-size: 20px; font-weight: 600; line-height: 1.35; }
.ee-post-card__body p { margin: 0; flex: 1; font-size: 15px; }
.ee-post__hero { margin-bottom: 10px; }
.ee-post__hero img { width: 100%; border-radius: var(--ee-radius); }
.ee-post__meta { text-align: center; font-size: 14px; color: var(--ee-body); }

/* ---- 11.16 Pagination --------------------------------------------------- */
.ee-pagination { margin-top: 50px; }
.ee-pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.ee-pagination .page-numbers {
  display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
  background: var(--ee-white); border: 1px solid var(--ee-line); border-radius: var(--ee-radius);
  font-family: var(--ee-font-heading); font-weight: 600; color: var(--ee-heading);
  transition: background-color .2s, border-color .2s, color .2s;
}
.ee-pagination .page-numbers:hover { border-color: var(--ee-yellow); }
.ee-pagination .page-numbers.current { background: var(--ee-yellow); border-color: var(--ee-yellow); }

/* ---- 11.17 Search + form feedback -------------------------------------- */
.ee-search { display: flex; gap: 10px; max-width: 520px; margin: 20px auto 0; }
.ee-search input {
  flex: 1; min-width: 0; padding: 12px 14px;
  background: var(--ee-bg-lighter); border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius); font-size: 15px;
}
.ee-form__msg { margin: 12px 0 0; font-size: 14px; font-weight: 600; }
.ee-form__msg:empty { display: none; }
.ee-form__msg.is-ok { color: #0A7A4B; }
.ee-form__msg.is-err { color: #C0392B; }

/* ---- 11.18 WordPress core classes -------------------------------------- */
.alignleft { float: left; margin: .4em 1.6em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.6em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { width: min(100%, 1100px); margin-inline: auto; }
.alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption { font-size: 14px; color: var(--ee-body); text-align: center; margin-top: .6em; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.admin-bar .ee-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .ee-header { top: 46px; } }

/* ==========================================================================
   12. SKAG LANDING PAGES
   Stripped layout, one goal. Same tokens as the rest of the site so a visitor
   arriving from an ad still recognises the brand.
   ========================================================================== */

.ee-lp-body { padding-bottom: 72px; }          /* room for the sticky bar */
@media (min-width: 768px) { .ee-lp-body { padding-bottom: 0; } }

/* ---- Header ------------------------------------------------------------- */
.ee-lp-header { background: var(--ee-white); box-shadow: 0 1px 0 rgba(16, 24, 40, .08); }
.ee-lp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.ee-lp-header__brand img { height: 46px; width: auto; }
.ee-lp-header__actions { display: flex; align-items: center; gap: 18px; }
.ee-lp-header__note {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 500; color: var(--ee-body);
}
.ee-lp-header__note svg { width: 17px; height: 17px; fill: var(--ee-yellow-deep); }
@media (max-width: 640px) {
  .ee-lp-header__note { display: none; }
  .ee-lp-header__brand img { height: 38px; }
}

/* ---- Hero --------------------------------------------------------------- */
.ee-lp-hero { position: relative; isolation: isolate; overflow: hidden; }
.ee-lp-hero__bg { position: absolute; inset: 0; z-index: -2; }
.ee-lp-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ee-lp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(10, 17, 33, .95) 0%, rgba(10, 17, 33, .86) 40%,
                                      rgba(10, 17, 33, .55) 70%, rgba(10, 17, 33, .4) 100%);
}
.ee-lp-hero.is-urgent::before {
  background: linear-gradient(100deg, rgba(20, 8, 8, .95) 0%, rgba(15, 12, 20, .88) 42%,
                                      rgba(10, 17, 33, .6) 100%);
}
.ee-lp-hero__inner {
  display: grid; grid-template-columns: 1fr minmax(360px, 460px);
  gap: 56px; align-items: start; padding-block: 64px 72px;
}
.ee-lp-hero__copy { max-width: 640px; color: var(--ee-white); }
.ee-lp-hero__copy h1 {
  color: var(--ee-white); font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12; margin: 0 0 16px;
}
.ee-lp-hero__sub { font-size: 19px; line-height: 1.55; color: rgba(255, 255, 255, .9); margin: 0 0 22px; }

.ee-lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; margin-bottom: 16px;
  background: var(--ee-red); color: var(--ee-white);
  border-radius: var(--ee-radius-pill); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.ee-lp-badge svg { width: 15px; height: 15px; fill: currentColor; }

.ee-lp-usps { display: grid; gap: 11px; margin: 0 0 26px; }
.ee-lp-usps li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: rgba(255, 255, 255, .94); }
.ee-lp-usps svg { flex: none; width: 21px; height: 21px; margin-top: 1px; fill: var(--ee-yellow); }

.ee-lp-hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 18px; }
.ee-btn--lg { padding: 17px 32px; font-size: 17px; }

.ee-lp-price {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px;
  padding: 9px 17px; background: rgba(255, 255, 255, .12);
  border-radius: var(--ee-radius-pill); font-size: 15px; font-weight: 600; color: var(--ee-white);
}
.ee-lp-price svg { width: 18px; height: 18px; fill: var(--ee-yellow); }

.ee-lp-trust { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 14px; color: rgba(255, 255, 255, .78); }
.ee-lp-trust svg { width: 16px; height: 16px; fill: var(--ee-yellow); }

/* ---- Form card ---------------------------------------------------------- */
.ee-lp-form { background: var(--ee-white); border-radius: var(--ee-radius-lg); box-shadow: var(--ee-shadow-lg); overflow: hidden; }
.ee-lp-form__head { padding: 22px 26px 18px; background: var(--ee-yellow); }
.ee-lp-form__head h2 { margin: 0 0 4px; font-size: 24px; font-weight: 700; color: var(--ee-heading); }
.ee-lp-form__head p { margin: 0; font-size: 14px; color: rgba(4, 11, 24, .78); }
.ee-lp-form__body { padding: 24px 26px 26px; }
.ee-lp-form__legal { margin: 14px 0 0; font-size: 12px; line-height: 1.6; color: var(--ee-body); }
.ee-lp-form__legal a { text-decoration: underline; }

@media (max-width: 1024px) {
  .ee-lp-hero__inner { grid-template-columns: 1fr; gap: 36px; padding-block: 44px 52px; }
  .ee-lp-hero__copy { max-width: none; }
}

/* ---- Sections ----------------------------------------------------------- */
.ee-lp-h2 { text-align: center; font-size: var(--ee-h3); margin-bottom: 34px; }

.ee-lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.ee-lp-card {
  padding: 28px 24px; background: var(--ee-white);
  border: 1px solid var(--ee-line); border-radius: var(--ee-radius);
  transition: transform .3s var(--ee-ease), box-shadow .3s var(--ee-ease);
}
.ee-lp-card:hover { transform: translateY(-4px); box-shadow: var(--ee-shadow); }
.ee-lp-card__icon {
  display: grid; place-items: center; width: 50px; height: 50px;
  margin-bottom: 16px; border-radius: 50%; background: var(--ee-yellow);
}
.ee-lp-card__icon svg { width: 23px; height: 23px; fill: var(--ee-btn-hover); }
.ee-lp-card h3 { margin: 0 0 9px; font-size: 18px; font-weight: 600; }
.ee-lp-card p { margin: 0; font-size: 15px; }

/* ---- Mid CTA ------------------------------------------------------------ */
.ee-lp-cta { background: var(--ee-yellow); }
.ee-lp-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px; padding-block: 34px;
}
.ee-lp-cta h2 { margin: 0 0 5px; font-size: 26px; color: var(--ee-heading); }
.ee-lp-cta p { margin: 0; color: rgba(4, 11, 24, .8); }
@media (max-width: 767px) { .ee-lp-cta h2 { font-size: 20px; } }

/* ---- Footer ------------------------------------------------------------- */
.ee-lp-footer { background: var(--ee-ink); color: rgba(255, 255, 255, .72); padding-block: 44px 30px; font-size: 14px; }
.ee-lp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.ee-lp-footer img { height: 42px; width: auto; margin-bottom: 14px; }
.ee-lp-footer p { margin: 0; line-height: 1.7; }
.ee-lp-footer address { font-style: normal; line-height: 1.9; }
.ee-lp-footer a { color: rgba(255, 255, 255, .82); }
.ee-lp-footer a:hover { color: var(--ee-yellow); }
.ee-lp-footer__links { display: grid; gap: 9px; align-content: start; }
.ee-lp-footer__copy {
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid var(--ee-white-20); font-size: 13px;
}
@media (max-width: 767px) { .ee-lp-footer__grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---- Sticky mobile bar --------------------------------------------------
   On paid mobile traffic this is consistently the highest-converting element
   on the page, so it is always visible rather than appearing on scroll.
   ------------------------------------------------------------------------- */
.ee-lp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: grid; grid-template-columns: 2fr 1fr; gap: 1px;
  background: var(--ee-btn-hover);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, .22);
}
.ee-lp-sticky a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 12px;
  font-family: var(--ee-font-heading); font-weight: 700; font-size: 16px;
}
.ee-lp-sticky__call { background: var(--ee-yellow); color: var(--ee-btn-hover); }
.ee-lp-sticky__call svg { width: 18px; height: 18px; fill: currentColor; }
.ee-lp-sticky__form { background: var(--ee-navy); color: var(--ee-white); }
.ee-lp-sticky__call:hover { color: var(--ee-btn-hover); }
.ee-lp-sticky__form:hover { color: var(--ee-yellow); }
@media (min-width: 768px) { .ee-lp-sticky { display: none; } }
