/* ═══════════════════════════════════════════════════════════════
   EventEdge Staffing — public site stylesheet
   Palette: deep navy, off-white, electric cobalt, one neutral grey.
   No build step, no CSS framework, no web fonts (system stack = zero
   render-blocking requests and no layout shift).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1F3A;
  --navy-800: #12304F;
  --navy-700: #1B3F66;
  --cobalt: #1657FF;
  --cobalt-dark: #0E42CC;
  --cobalt-soft: #E8EEFF;
  --ink: #16233A;
  --body: #33415C;
  --muted: #5A6B85;
  --line: #E3E8F0;
  --offwhite: #F4F6FA;
  --white: #FFFFFF;
  --ok: #12855A;
  --warn: #A8620A;

  --shell: 1240px;
  --shell-narrow: 900px;
  --radius: 3px;
  --radius-lg: 5px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, .06);
  --shadow: 0 2px 10px rgba(11, 31, 58, .07);
  --shadow-lg: 0 18px 44px rgba(11, 31, 58, .13);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .55s;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--offwhite); }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.12rem, 1.02rem + .45vw, 1.32rem); letter-spacing: -.012em; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: .38em; }

strong { color: var(--navy); font-weight: 650; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--cobalt-soft); color: var(--navy); }

.ee-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.ee-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}

.ee-shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.05rem, .5rem + 2.2vw, 2.6rem);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .62rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .005em;
  cursor: pointer;
  text-align: center;
  transition: transform .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}
.ee-btn:hover { text-decoration: none; transform: translateY(-1px); }
.ee-btn:active { transform: translateY(0); }

.ee-btn--primary { background: var(--cobalt); color: var(--white); }
.ee-btn--primary:hover { background: var(--cobalt-dark); box-shadow: 0 8px 20px rgba(22, 87, 255, .26); }

.ee-btn--whatsapp { background: #128C50; color: var(--white); }
.ee-btn--whatsapp:hover { background: #0E7441; }

.ee-btn--ghost {
  background: transparent;
  border-color: rgba(11, 31, 58, .22);
  color: var(--navy);
}
.ee-btn--ghost:hover { border-color: var(--navy); background: rgba(11, 31, 58, .04); }

.ee-btn--ghost-light {
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
}
.ee-btn--ghost-light:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }

.ee-btn--sm { min-height: 40px; padding: .45rem .85rem; font-size: .86rem; }
.ee-btn--lg { min-height: 54px; padding: .85rem 1.7rem; font-size: 1rem; }
.ee-btn--block { width: 100%; }

/* ── Icons (inline, no icon font) ────────────────────────────── */
.ee-icon {
  width: 17px; height: 17px;
  flex: 0 0 auto;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.ee-icon--phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E");
}
.ee-icon--wa {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2Zm5.2 14.1c-.2.6-1.3 1.2-1.8 1.3-.5.1-1.1.1-1.8-.1-.4-.1-1-.3-1.8-.6-3-1.3-5-4.4-5.1-4.6-.2-.2-1.2-1.6-1.2-3s.7-2.1 1-2.4c.2-.3.5-.4.7-.4h.5c.2 0 .4 0 .6.5l.8 1.8c.1.2.1.3 0 .5l-.3.5-.4.4c-.1.1-.3.2-.1.5.1.3.6 1.1 1.4 1.8 1 .9 1.8 1.2 2.1 1.3.2.1.4.1.6-.1l.8-.9c.2-.2.4-.2.5-.1l1.7.8c.2.1.4.2.4.3.1.1.1.7-.1 1.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15L2 22l5.2-1.4A10 10 0 1 0 12 2Zm5.2 14.1c-.2.6-1.3 1.2-1.8 1.3-.5.1-1.1.1-1.8-.1-.4-.1-1-.3-1.8-.6-3-1.3-5-4.4-5.1-4.6-.2-.2-1.2-1.6-1.2-3s.7-2.1 1-2.4c.2-.3.5-.4.7-.4h.5c.2 0 .4 0 .6.5l.8 1.8c.1.2.1.3 0 .5l-.3.5-.4.4c-.1.1-.3.2-.1.5.1.3.6 1.1 1.4 1.8 1 .9 1.8 1.2 2.1 1.3.2.1.4.1.6-.1l.8-.9c.2-.2.4-.2.5-.1l1.7.8c.2.1.4.2.4.3.1.1.1.7-.1 1.3Z'/%3E%3C/svg%3E");
}
.ee-icon--ig {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.6' cy='6.4' r='1.2' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.6' cy='6.4' r='1.2' fill='black'/%3E%3C/svg%3E");
}
.ee-icon--li {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5ZM3 9h4v12H3V9Zm7 0h3.8v1.7h.05c.53-1 1.83-2.05 3.77-2.05 4.03 0 4.78 2.65 4.78 6.1V21h-4v-5.36c0-1.28-.02-2.93-1.78-2.93-1.79 0-2.06 1.4-2.06 2.84V21h-4V9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5ZM3 9h4v12H3V9Zm7 0h3.8v1.7h.05c.53-1 1.83-2.05 3.77-2.05 4.03 0 4.78 2.65 4.78 6.1V21h-4v-5.36c0-1.28-.02-2.93-1.78-2.93-1.79 0-2.06 1.4-2.06 2.84V21h-4V9Z'/%3E%3C/svg%3E");
}

/* ── Announcement bar ────────────────────────────────────────── */
.ee-announce {
  background: var(--navy);
  color: rgba(255, 255, 255, .86);
  font-size: .84rem;
}
.ee-announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding-block: .58rem;
  flex-wrap: wrap;
  text-align: center;
}
.ee-announce__text { margin: 0; }
.ee-announce__cta { color: #fff; font-weight: 650; white-space: nowrap; border-bottom: 1px solid rgba(255, 255, 255, .4); }
.ee-announce__cta:hover { text-decoration: none; border-bottom-color: #fff; }

/* ── Header ──────────────────────────────────────────────────── */
.ee-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.ee-header.is-stuck { box-shadow: var(--shadow); }
.ee-header__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 74px;
  padding-block: .5rem;
}
.ee-header__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}
.ee-header__brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 2px; }
.ee-header__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.ee-header__brand-text strong { font-size: 1rem; letter-spacing: -.015em; color: var(--navy); }
.ee-header__brand-text small { color: var(--muted); font-size: .72rem; letter-spacing: .01em; }

.ee-nav { flex: 1 1 auto; display: none; min-width: 0; }
.ee-nav__list {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.ee-nav__item { margin: 0; }
.ee-nav__link {
  display: inline-block;
  padding: .5rem .55rem;
  color: var(--body);
  font-size: .875rem;
  font-weight: 550;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.ee-nav__link:hover { color: var(--navy); background: var(--offwhite); text-decoration: none; }
.ee-nav__link.is-active { color: var(--cobalt); }
.ee-nav__link.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--cobalt);
  border-radius: 2px;
}

.ee-header__actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.ee-header__phone {
  display: none;
  flex-direction: column;
  line-height: 1.1;
  padding-right: .7rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
}
.ee-header__phone-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.ee-header__phone strong { font-size: .88rem; color: var(--navy); white-space: nowrap; }
.ee-header__actions .ee-btn--primary { display: none; }
.ee-header__actions .ee-btn--whatsapp { display: none; }

.ee-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.ee-burger__bars,
.ee-burger__bars::before,
.ee-burger__bars::after {
  display: block;
  width: 19px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.ee-burger__bars::before { content: ""; transform: translateY(-6px); }
.ee-burger__bars::after { content: ""; transform: translateY(4px); }
.ee-burger[aria-expanded="true"] .ee-burger__bars { background: transparent; }
.ee-burger[aria-expanded="true"] .ee-burger__bars::before { transform: rotate(45deg) translateY(0); }
.ee-burger[aria-expanded="true"] .ee-burger__bars::after { transform: rotate(-45deg) translateY(-2px); }

.ee-mobilenav { border-top: 1px solid var(--line); background: var(--white); }
.ee-mobilenav__list { list-style: none; margin: 0; padding: .5rem 0; }
.ee-mobilenav__list li { margin: 0; border-bottom: 1px solid var(--line); }
.ee-mobilenav__list a { display: block; padding: .95rem .2rem; color: var(--navy); font-weight: 550; }
.ee-mobilenav__list a:hover { text-decoration: none; color: var(--cobalt); }
.ee-mobilenav__list a[aria-current="page"] { color: var(--cobalt); }
.ee-mobilenav__foot { display: flex; flex-direction: column; gap: .5rem; padding: 1rem .2rem 1.5rem; }
.ee-mobilenav__foot a { color: var(--body); font-size: .92rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.ee-hero {
  position: relative;
  background:
    radial-gradient(1000px 460px at 88% -10%, rgba(22, 87, 255, .10), transparent 62%),
    linear-gradient(180deg, var(--offwhite), var(--white));
  overflow: hidden;
}
.ee-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(11, 31, 58, .11) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 72%);
  pointer-events: none;
}
.ee-hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.6rem);
  padding-block: clamp(2.6rem, 1.6rem + 5vw, 5rem);
  align-items: center;
}
.ee-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: .32rem .7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: var(--radius);
  color: var(--navy-700);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ee-hero__title { margin-bottom: 1rem; }
.ee-hero__sub { font-size: clamp(1.02rem, .96rem + .32vw, 1.17rem); color: var(--body); max-width: 60ch; }
.ee-hero__trust {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.1rem 0 1.5rem;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.ee-hero__trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(22, 87, 255, .14);
}
.ee-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.ee-hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.4rem;
  margin: 2.1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.ee-hero__facts div { margin: 0; }
.ee-hero__facts dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.ee-hero__facts dd { margin: .18rem 0 0; color: var(--navy); font-weight: 650; font-size: 1rem; }

.ee-hero__media { position: relative; }
.ee-hero__figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.ee-hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.6s var(--ease);
}
.ee-hero__figure.is-in img, .ee-hero__media.is-in .ee-hero__figure img { transform: scale(1); }
.ee-hero__caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: .5rem .85rem;
  background: rgba(11, 31, 58, .82);
  color: #fff;
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-top-right-radius: var(--radius);
}

.ee-dispatch {
  margin-top: -1.4rem;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cobalt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.1rem 1.05rem;
  max-width: 460px;
  margin-inline: auto;
}
@media (min-width: 900px) { .ee-dispatch { margin-left: 1.6rem; } }
.ee-dispatch__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.ee-dispatch__live {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cobalt);
}
.ee-dispatch__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cobalt);
  animation: eePulse 2s var(--ease) infinite;
}
@keyframes eePulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 87, 255, .5); }
  70% { box-shadow: 0 0 0 9px rgba(22, 87, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 87, 255, 0); }
}
.ee-dispatch__city { font-size: .7rem; letter-spacing: .12em; color: var(--muted); font-weight: 650; }
.ee-dispatch__steps { list-style: none; margin: 0; padding: .3rem 0 0; }
.ee-dispatch__steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: .1rem .7rem;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--line);
  margin: 0;
}
.ee-dispatch__steps li:last-child { border-bottom: 0; }
.ee-dispatch__time { font-family: var(--mono); font-size: .76rem; color: var(--navy); font-weight: 650; }
.ee-dispatch__tag { grid-column: 2; font-size: .76rem; font-weight: 700; color: var(--cobalt); text-transform: uppercase; letter-spacing: .06em; }
.ee-dispatch__text { grid-column: 2; font-size: .85rem; color: var(--body); }
.ee-dispatch__foot {
  margin: .6rem 0 0;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 650;
  color: var(--navy);
  display: flex; justify-content: space-between; gap: .7rem; flex-wrap: wrap;
}
.ee-dispatch__scale { color: var(--muted); font-weight: 500; }

/* ── Trust bar ───────────────────────────────────────────────── */
.ee-trust { background: var(--navy); color: #fff; padding-block: 2.1rem 1.6rem; }
.ee-trust__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem 1rem;
}
.ee-trust__item { margin: 0; display: flex; flex-direction: column; gap: .12rem; }
.ee-trust__value {
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ee-trust__label { font-size: .86rem; font-weight: 600; color: rgba(255, 255, 255, .9); }
.ee-trust__note { font-size: .74rem; color: rgba(255, 255, 255, .5); }
.ee-trust__footnote {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .78rem;
  color: rgba(255, 255, 255, .58);
}

/* ── Section primitives ──────────────────────────────────────── */
.ee-section { padding-block: clamp(3rem, 2rem + 4.4vw, 5.4rem); }
.ee-section--tint { background: var(--offwhite); }
.ee-section--navy { background: var(--navy); color: rgba(255, 255, 255, .8); }
.ee-section--navy h1, .ee-section--navy h2, .ee-section--navy h3 { color: #fff; }
.ee-section--navy strong { color: #fff; }
.ee-section--navy a:not(.ee-btn) { color: #B9CEFF; }

.ee-section__head { max-width: 74ch; margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 2.8rem); }
.ee-section__title { margin-bottom: .5rem; }
.ee-section__intro { color: var(--body); font-size: 1.03rem; margin: 0; }
.ee-section--navy .ee-section__intro { color: rgba(255, 255, 255, .78); }

.ee-eyebrow {
  margin: 0 0 .75rem;
  color: var(--cobalt);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ee-eyebrow--light { color: #8FB0FF; }
.ee-eyebrow a { color: inherit; }

.ee-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: var(--radius);
}
.ee-inline-cta p { margin: 0; color: var(--body); font-size: .95rem; max-width: 62ch; }
.ee-inline-cta--light { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); border-left-color: #8FB0FF; }
.ee-inline-cta--light p { color: rgba(255, 255, 255, .82); }
.ee-inline-cta--stacked {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  background: var(--white);
}
.ee-inline-cta--stacked h2 { margin-bottom: .4rem; }
.ee-inline-cta--stacked > div { display: flex; flex-wrap: wrap; gap: .7rem; }

.ee-badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 2px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ee-badge--live { background: #E4F5EC; color: var(--ok); }
.ee-badge--expanding { background: #FBF1E2; color: var(--warn); }

.ee-notice {
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  background: #FBF1E2;
  border-left: 3px solid var(--warn);
  color: #6B4410;
  font-size: .92rem;
}
.ee-notice--warn strong { color: #5A3709; }

/* ── Reveal animation ────────────────────────────────────────── */
[data-ee-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}
[data-ee-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-ee-reveal] { opacity: 1; transform: none; }
  .ee-hero__figure img { transform: none; }
}

/* ── Problems ────────────────────────────────────────────────── */
.ee-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ee-problem { background: var(--white); padding: 1.4rem 1.35rem 1.5rem; margin: 0; }
.ee-problem__title { margin-bottom: .45rem; font-size: 1.06rem; }
.ee-problem__problem { color: var(--body); font-size: .93rem; margin-bottom: .75rem; }
.ee-problem__response {
  margin: 0;
  padding-top: .75rem;
  border-top: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--navy);
  display: flex;
  gap: .5rem;
}
.ee-problem__arrow { color: var(--cobalt); font-weight: 700; flex: 0 0 auto; }

/* ── Service cards ───────────────────────────────────────────── */
.ee-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1.2rem;
}
.ee-service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.35rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ee-service::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.ee-service:hover { border-color: rgba(22, 87, 255, .35); box-shadow: var(--shadow); transform: translateY(-2px); }
.ee-service:hover::before { transform: scaleX(1); }
.ee-service__code { margin: 0 0 .55rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: var(--muted); }
.ee-service__title { font-size: 1.12rem; margin-bottom: .4rem; }
.ee-service__title a { color: inherit; }
.ee-service__title a:hover { color: var(--cobalt); text-decoration: none; }
.ee-service__text { font-size: .91rem; margin-bottom: .8rem; }
.ee-service__roles { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.ee-service__roles li { margin: 0; padding: .16rem .5rem; background: var(--offwhite); border: 1px solid var(--line); border-radius: 2px; font-size: .74rem; color: var(--muted); }
.ee-service__link { margin-top: auto; font-weight: 650; font-size: .89rem; }
.ee-service__link:hover { text-decoration: none; }

/* ── Industries grid ─────────────────────────────────────────── */
.ee-industries { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.ee-industry {
  display: block;
  padding: 1.15rem 1.2rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--body);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.ee-industry:hover { text-decoration: none; border-color: var(--navy); transform: translateY(-2px); }
.ee-industry h3 { font-size: 1.04rem; margin-bottom: .35rem; }
.ee-industry p { font-size: .88rem; margin-bottom: .7rem; color: var(--muted); }
.ee-industry__more { font-size: .84rem; font-weight: 650; color: var(--cobalt); }

/* ── Process ─────────────────────────────────────────────────── */
.ee-process {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem 1.4rem;
  position: relative;
}
.ee-process__line {
  display: none;
  position: absolute;
  top: 15px; left: 0; right: 0;
  height: 1px;
  margin: 0;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}
.ee-process__line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cobalt);
  transition: width 1.6s var(--ease);
}
.ee-process.is-in .ee-process__line span { width: 100%; }
.ee-process__step { margin: 0; position: relative; padding-top: 2.2rem; }
.ee-process__n {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 .4rem;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  border-radius: 2px;
  z-index: 1;
}
.ee-process__title { font-size: 1.04rem; margin-bottom: .35rem; }
.ee-process__text { font-size: .89rem; color: rgba(255, 255, 255, .74); margin: 0; }

/* ── Why ─────────────────────────────────────────────────────── */
.ee-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 1.5rem 1.8rem; }
.ee-why__item { margin: 0; padding-left: 1.5rem; position: relative; }
.ee-why__marker {
  position: absolute; left: 0; top: .5rem;
  width: 9px; height: 9px;
  background: var(--cobalt);
  transform: rotate(45deg);
}
.ee-why__item h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.ee-why__item p { font-size: .92rem; margin: 0; }

/* ── Event work (photos) ─────────────────────────────────────── */
.ee-workstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: .2rem clamp(1.05rem, .5rem + 2.2vw, 2.6rem) 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ee-workstrip::-webkit-scrollbar { height: 6px; }
.ee-workstrip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.ee-workstrip .ee-work { scroll-snap-align: start; }

.ee-workgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1rem; }
.ee-work { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.ee-work__media { position: relative; }
.ee-work img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.ee-work:hover img { transform: scale(1.03); }
.ee-work__flag {
  position: absolute; top: .6rem; left: .6rem;
  padding: .18rem .5rem;
  background: rgba(11, 31, 58, .86); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px;
}
.ee-work figcaption { padding: .85rem .95rem 1rem; }
.ee-work figcaption strong { display: block; font-size: .96rem; margin-bottom: .18rem; }
.ee-work__meta { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.ee-work__desc { margin: .55rem 0 .6rem; font-size: .87rem; color: var(--body); }
.ee-workgrid__empty { margin-top: 1.2rem; color: var(--muted); }

.ee-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.ee-filter {
  padding: .48rem .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--body);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 42px;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.ee-filter:hover { border-color: var(--navy); }
.ee-filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.ee-filters__count { font-size: .8rem; color: var(--muted); margin: 0 0 1.4rem; }

/* ── Testimonials carousel ───────────────────────────────────── */
.ee-quotes { position: relative; }
.ee-quotes__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(292px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .9rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ee-quotes__track::-webkit-scrollbar { height: 6px; }
.ee-quotes__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.ee-quote {
  margin: 0;
  padding: 1.4rem 1.35rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.ee-quote blockquote { margin: 0 0 1rem; }
.ee-quote blockquote p { font-size: .98rem; color: var(--navy); margin: 0; }
.ee-quote blockquote p::before { content: "“"; }
.ee-quote blockquote p::after { content: "”"; }
.ee-quote figcaption { margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .1rem; }
.ee-quote figcaption strong { font-size: .92rem; }
.ee-quote figcaption span { font-size: .8rem; color: var(--muted); }
.ee-quote__source { font-size: .72rem; color: var(--muted); font-style: normal; }
.ee-quotes__controls { display: flex; gap: .4rem; margin-top: .2rem; }
.ee-quotes__btn {
  width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  color: var(--navy); font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.ee-quotes__btn:hover { border-color: var(--navy); }
.ee-quotes__note { margin-top: 1rem; font-size: .82rem; color: var(--muted); }

/* ── Coverage map ────────────────────────────────────────────── */
.ee-map { margin: 0; }
.ee-map__canvas {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 330px;
  background: linear-gradient(160deg, #0E2745, #0B1F3A);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
}
.ee-map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ee-map__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  /* Per-city nudge (from locations.json → labelOffset) so markers that sit close
     together on a compressed projection get separated rather than stacked. */
  margin-left: var(--dx, 0px);
  margin-top: var(--dy, 0px);
  display: flex; align-items: center; gap: .35rem;
  padding: .18rem .3rem;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  animation: eePinIn .6s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 110ms + 160ms);
  z-index: 1;
}
/* Label placement is authored per city (see locations.json → labelPos) so that
   neighbouring markers never collide on a compressed projection. */
.ee-map__pin--pos-left { flex-direction: row-reverse; }
.ee-map__pin--pos-top { flex-direction: column; }
.ee-map__pin--pos-bottom { flex-direction: column-reverse; }
@keyframes eePinIn { from { opacity: 0; transform: translate(-50%, -50%) scale(.6); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.ee-map__pin:hover { text-decoration: none; z-index: 4; }
.ee-map__dot {
  position: relative;
  z-index: 1;
  width: 11px; height: 11px; border-radius: 50%;
  background: #7BA0FF;
  border: 2px solid rgba(255, 255, 255, .8);
  flex: 0 0 auto;
}
.ee-map__pin--live .ee-map__dot { background: var(--cobalt); }
.ee-map__pin--expanding .ee-map__dot { background: #C79347; }
/* The pulse is attached to the dot itself, so it follows whichever direction
   the label is placed in — no absolute positioning to keep in sync. */
.ee-map__pin--live .ee-map__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(22, 87, 255, .45);
  animation: eePulse 2.4s var(--ease) infinite;
  z-index: -1;
}
.ee-map__label {
  display: flex; flex-direction: column; line-height: 1.14;
  font-size: .75rem; font-weight: 650;
  background: rgba(8, 22, 42, .86);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .14rem .4rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.ee-map__label em { font-style: normal; font-size: .61rem; font-weight: 500; color: rgba(255, 255, 255, .58); }
.ee-map__pin:hover .ee-map__label { background: var(--cobalt); border-color: #fff; }
.ee-map__pin:hover .ee-map__label em { color: rgba(255, 255, 255, .85); }
.ee-map__legend {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .72);
}
.ee-map__key { display: inline-flex; align-items: center; gap: .45rem; }
.ee-map__swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.ee-map__key--live .ee-map__swatch { background: var(--cobalt); }
.ee-map__key--expanding .ee-map__swatch { background: #C79347; }
.ee-map__note { flex-basis: 100%; color: rgba(255, 255, 255, .45); font-size: .76rem; }
.ee-map__fallback { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── Buyers ──────────────────────────────────────────────────── */
.ee-buyers { display: grid; grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); gap: 1.2rem; }
.ee-buyer {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ee-buyer h3 { font-size: 1.06rem; }
.ee-buyer__concern { font-style: italic; color: var(--muted); font-size: .93rem; }
.ee-buyer__message { margin: 0; font-weight: 650; color: var(--navy); font-size: .96rem; }

/* ── Enquiry section ─────────────────────────────────────────── */
.ee-enquiry { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3.4rem); align-items: start; }
.ee-quote-steps { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .9rem; }
.ee-quote-steps li { display: flex; gap: .8rem; margin: 0; }
.ee-quote-steps__n {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff;
  font-size: .8rem; font-weight: 700; border-radius: 2px;
}
.ee-quote-steps strong { display: block; color: var(--navy); font-size: .96rem; }
.ee-quote-steps p { margin: .15rem 0 0; font-size: .89rem; }
.ee-microcopy { margin-top: 1.5rem; padding: 1.05rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.ee-microcopy p { font-size: .89rem; margin-bottom: .7rem; }
.ee-microcopy p:last-child { margin-bottom: 0; }
.ee-contact-quick { list-style: none; margin: 1.3rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.ee-contact-quick li { margin: 0; }
.ee-contact-quick a { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.ee-contact-quick a:hover { color: var(--cobalt); text-decoration: none; }

/* ── Forms ───────────────────────────────────────────────────── */
.ee-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cobalt);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 1rem + 1.4vw, 2rem);
  box-shadow: var(--shadow);
}
.ee-form__grid { display: grid; gap: 1.4rem; }
.ee-fieldset { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(216px, 1fr)); gap: .9rem; }
.ee-fieldset__legend {
  grid-column: 1 / -1;
  padding: 0 0 .5rem;
  border-bottom: 1px solid var(--line);
  color: var(--cobalt);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.ee-field { display: flex; flex-direction: column; gap: .32rem; }
.ee-field--wide { grid-column: 1 / -1; }
.ee-field label { font-size: .87rem; font-weight: 650; color: var(--navy); }
.ee-req { color: #C0392B; font-weight: 700; }
.ee-field input,
.ee-field select,
.ee-field textarea {
  width: 100%;
  min-height: 46px;
  padding: .6rem .7rem;
  background: var(--white);
  border: 1px solid #CFD8E6;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-size: .94rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.ee-field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.ee-field input:hover, .ee-field select:hover, .ee-field textarea:hover { border-color: #A9B8CE; }
.ee-field input:focus, .ee-field select:focus, .ee-field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(22, 87, 255, .14);
}
.ee-field input[type="file"] { padding: .5rem; min-height: 46px; background: var(--offwhite); font-size: .85rem; }
.ee-hint { margin: 0; font-size: .78rem; color: var(--muted); }
.ee-form__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.ee-form__note { margin: 1rem 0 0; font-size: .8rem; color: var(--muted); }
.ee-form__status:not(:empty) {
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  border-left: 3px solid var(--cobalt);
  background: var(--cobalt-soft);
  color: var(--navy);
}
.ee-form__status.is-error { border-left-color: #C0392B; background: #FDECEA; color: #7E241A; }
.ee-form__status.is-ok { border-left-color: var(--ok); background: #E4F5EC; color: #0C5A3E; }

.ee-success {
  margin-top: 1.4rem;
  padding: clamp(1.3rem, 1rem + 1.6vw, 2rem);
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ok);
  border-radius: var(--radius);
}
.ee-success__eyebrow { margin: 0 0 .3rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ok); }
.ee-success__title { font-size: 1.32rem; margin-bottom: .5rem; }
.ee-success__text { font-size: .96rem; }
.ee-success__next { margin: 1.2rem 0; padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.ee-success__next h4 { margin: 0 0 .6rem; color: var(--navy); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.ee-success__steps { margin: 0; padding-left: 1.2rem; display: grid; gap: .35rem; }
.ee-success__steps li { font-size: .92rem; color: var(--body); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ee-faqs { border-top: 1px solid var(--line); }
.ee-faq { border-bottom: 1px solid var(--line); }
.ee-faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1rem .2rem;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 650;
  font-size: 1rem;
}
.ee-faq__q::-webkit-details-marker { display: none; }
.ee-faq__q:hover { color: var(--cobalt); }
.ee-faq__mark { position: relative; flex: 0 0 auto; width: 15px; height: 15px; margin-top: .35rem; }
.ee-faq__mark::before, .ee-faq__mark::after {
  content: ""; position: absolute; background: var(--cobalt); border-radius: 1px;
}
.ee-faq__mark::before { top: 6px; left: 0; width: 15px; height: 2px; }
.ee-faq__mark::after { top: 0; left: 6px; width: 2px; height: 15px; transition: transform .25s var(--ease); }
.ee-faq[open] .ee-faq__mark::after { transform: scaleY(0); }
.ee-faq__a { padding: 0 2.2rem 1.15rem .2rem; }
.ee-faq__a p { margin: 0; font-size: .95rem; color: var(--body); }

.ee-faqsection__more { margin-top: 1.4rem; font-weight: 650; }
.ee-faqlayout { display: grid; gap: 2rem; }
.ee-faqlayout__nav { font-size: .9rem; }
.ee-faqlayout__navtitle { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.ee-faqlayout__nav ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .3rem; }
.ee-faqlayout__nav a { color: var(--body); }
.ee-faqgroup { margin-bottom: 2.6rem; }
.ee-faqgroup__desc { color: var(--muted); font-size: .92rem; }

/* ── Post / article cards ────────────────────────────────────── */
.ee-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: 1.3rem; }
.ee-posts--list { grid-template-columns: 1fr; gap: 1.1rem; }
.ee-card, .ee-postcard {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ee-card:hover, .ee-postcard:hover { border-color: rgba(22, 87, 255, .3); box-shadow: var(--shadow); transform: translateY(-2px); }
.ee-card__media img, .ee-postcard__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ee-card__body, .ee-postcard__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; }
.ee-card__meta, .ee-postcard__meta { margin: 0 0 .45rem; font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.ee-card__cat, .ee-postcard__cat { color: var(--cobalt); font-weight: 700; }
.ee-postcard__cat:hover { text-decoration: none; }
.ee-card__title, .ee-postcard__title { font-size: 1.09rem; margin-bottom: .45rem; }
.ee-card__title a, .ee-postcard__title a { color: inherit; }
.ee-card__title a:hover, .ee-postcard__title a:hover { color: var(--cobalt); text-decoration: none; }
.ee-card__excerpt, .ee-postcard__excerpt { font-size: .9rem; color: var(--body); margin: 0 0 .7rem; }
.ee-postcard { flex-direction: row; }
@media (max-width: 720px) { .ee-postcard { flex-direction: column; } }
.ee-postcard__media { flex: 0 0 34%; max-width: 300px; }
@media (max-width: 720px) { .ee-postcard__media { max-width: none; flex-basis: auto; } }
.ee-postcard__media img { aspect-ratio: 4 / 3; height: 100%; }

/* ── Page head ───────────────────────────────────────────────── */
.ee-pagehead { background: var(--offwhite); border-bottom: 1px solid var(--line); padding-block: clamp(2.2rem, 1.5rem + 3.4vw, 3.6rem); }
.ee-pagehead__grid { display: grid; gap: clamp(1.6rem, 1.2rem + 2.4vw, 3rem); align-items: center; }
.ee-pagehead__lead { font-size: 1.06rem; max-width: 68ch; }
.ee-pagehead__facts {
  list-style: none; margin: 1.7rem 0 0; padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem 1.4rem;
}
.ee-pagehead__facts li { margin: 0; display: flex; flex-direction: column; gap: .18rem; }
.ee-pagehead__facts strong { color: var(--navy); font-size: .96rem; }
.ee-pagehead__facts span { font-size: .84rem; color: var(--muted); }
.ee-pagehead__actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.ee-pagehead__meta {
  margin-top: 1.2rem; padding: .85rem 1rem;
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--cobalt);
  border-radius: var(--radius); font-size: .9rem; color: var(--body);
}
.ee-pagehead__figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ee-pagehead__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ee-pagehead__note { font-size: .88rem; color: var(--muted); max-width: 70ch; }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.ee-crumbs { background: var(--white); border-bottom: 1px solid var(--line); }
.ee-crumbs__list { list-style: none; margin: 0; padding: .68rem 0; display: flex; flex-wrap: wrap; gap: .35rem; font-size: .8rem; }
.ee-crumbs__item { margin: 0; display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); }
.ee-crumbs__item + .ee-crumbs__item::before { content: "/"; color: #B8C4D6; }
.ee-crumbs__item a { color: var(--muted); }
.ee-crumbs__item a:hover { color: var(--cobalt); }
.ee-crumbs__item span { color: var(--navy); font-weight: 600; }

/* ── Service list rows ───────────────────────────────────────── */
.ee-servicelist { display: grid; gap: 1.4rem; }
.ee-servicerow {
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 110px;
}
.ee-servicerow__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.ee-servicerow__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ee-servicerow__code {
  position: absolute; top: .6rem; left: .6rem;
  padding: .2rem .5rem;
  background: rgba(11, 31, 58, .88); color: #fff;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; border-radius: 2px;
}
.ee-servicerow__title { font-size: 1.28rem; margin-bottom: .25rem; }
.ee-servicerow__tagline { color: var(--cobalt); font-weight: 650; font-size: .93rem; margin-bottom: .7rem; }
.ee-servicerow__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin: 1.1rem 0; }
.ee-servicerow__cols h3 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; font-weight: 700; }
.ee-servicerow__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }

/* ── Two-column body + aside ─────────────────────────────────── */
.ee-servicebody { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; }
.ee-servicebody__main { min-width: 0; }
.ee-servicebody__aside { display: grid; gap: 1.1rem; align-content: start; }

.ee-aside-block {
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ee-aside-block h2, .ee-aside-block h3 { font-size: .98rem; margin-bottom: .6rem; }
.ee-aside-block p { font-size: .89rem; }
.ee-aside-block .ee-btn { margin-top: .5rem; }
.ee-aside-block--navy { background: var(--navy); border-color: var(--navy); }
.ee-aside-block--navy h2 { color: #fff; }
.ee-aside-block--navy p { color: rgba(255, 255, 255, .78); }
.ee-aside-block__foot { margin: .7rem 0 0; font-size: .76rem; color: var(--muted); }
.ee-aside-block__hours { margin-top: .8rem; font-size: .78rem; color: rgba(255, 255, 255, .6); }

/* ── Prose ───────────────────────────────────────────────────── */
.ee-prose { max-width: 76ch; }
.ee-prose__section { margin-bottom: 2rem; }
.ee-prose__h { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.5rem); margin-bottom: .55rem; }
.ee-prose p { color: var(--body); }
.ee-prose__list { margin: 0 0 1.1em; padding-left: 1.15em; }
.ee-prose__list li { margin-bottom: .35em; }
.ee-prose code { font-family: var(--mono); font-size: .88em; background: var(--offwhite); padding: .1em .35em; border-radius: 2px; }

.ee-callout {
  margin: 1.4rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--offwhite);
  border-left: 3px solid var(--cobalt);
  border-radius: var(--radius);
}
.ee-callout__title { margin: 0 0 .3rem; font-weight: 700; color: var(--navy); font-size: .94rem; }
.ee-callout__text { margin: 0; font-size: .93rem; color: var(--body); }

.ee-tablewrap { overflow-x: auto; margin: 1.4rem 0; border: 1px solid var(--line); border-radius: var(--radius); }
.ee-table { width: 100%; border-collapse: collapse; font-size: .89rem; min-width: 480px; }
.ee-table th, .ee-table td { padding: .68rem .8rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.ee-table thead th { background: var(--offwhite); color: var(--navy); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.ee-table tbody tr:last-child td { border-bottom: 0; }
.ee-table tbody tr:nth-child(even) { background: #FBFCFE; }

.ee-twocol { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 1.6rem; margin: 1.8rem 0; }
.ee-twocol--single { grid-template-columns: 1fr; }
.ee-twocol h2 { font-size: 1.12rem; margin-bottom: .6rem; }

.ee-panel {
  margin: 1.8rem 0;
  padding: 1.3rem 1.4rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
}
.ee-panel h2 { font-size: 1.14rem; }
.ee-panel > p { font-size: .93rem; }

.ee-numbered { padding-left: 1.3rem; margin: 0; display: grid; gap: .35rem; }
.ee-numbered li { font-size: .92rem; }

/* ── Chips, lists ────────────────────────────────────────────── */
.ee-chips { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.ee-chips--sm { margin-bottom: .5rem; }
.ee-chip {
  margin: 0;
  padding: .24rem .6rem;
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .78rem;
  color: var(--body);
}
.ee-chips--sm .ee-chip { font-size: .73rem; }
.ee-chip a { color: inherit; }
.ee-chip a:hover { color: var(--cobalt); text-decoration: none; }

.ee-ticklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ee-ticklist li { position: relative; padding-left: 1.5rem; margin: 0; font-size: .93rem; }
.ee-ticklist li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 8px; height: 8px;
  border: 2px solid var(--navy);
  border-radius: 1px;
}
.ee-ticklist--brand li::before { border-color: var(--cobalt); background: rgba(22, 87, 255, .12); }
.ee-ticklist--sm li { font-size: .87rem; }

.ee-linklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ee-linklist li { margin: 0; font-size: .91rem; }
.ee-linklist a { display: flex; align-items: center; gap: .4rem; color: var(--body); }
.ee-linklist a:hover { color: var(--cobalt); text-decoration: none; }
.ee-linklist a span:last-child { margin-left: auto; color: var(--cobalt); }
.ee-linklist--big li { font-size: .98rem; border-bottom: 1px solid var(--line); padding-bottom: .5rem; }
.ee-linklist--toc a { color: var(--muted); font-size: .86rem; }
.ee-bloglayout__aside .ee-linklist--toc:empty::after { content: "Section links appear as you scroll."; font-size: .82rem; color: var(--muted); }
.ee-count { color: var(--muted); font-size: .78rem; }

.ee-rolelist { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ee-rolelist li { margin: 0; display: flex; flex-direction: column; gap: .15rem; }
.ee-rolelist strong { font-size: .93rem; }
.ee-rolelist span { font-size: .84rem; color: var(--muted); }

.ee-challengelist { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.ee-challengelist li { margin: 0; padding-left: 1rem; border-left: 2px solid var(--line); display: flex; flex-direction: column; gap: .15rem; }
.ee-challengelist strong { font-size: .94rem; }
.ee-challengelist span { font-size: .875rem; color: var(--body); }
.ee-challengelist--brand li { border-left-color: var(--cobalt); }

.ee-detail-list { margin: 0; display: grid; gap: .7rem; }
.ee-detail-list div { margin: 0; }
.ee-detail-list dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ee-detail-list dd { margin: .1rem 0 0; font-size: .89rem; color: var(--body); }

.ee-marked-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.ee-marked-steps li { display: flex; gap: .7rem; margin: 0; }
.ee-marked-steps li > span {
  flex: 0 0 auto; width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cobalt); color: #fff; font-size: .78rem; font-weight: 700; border-radius: 2px;
}
.ee-marked-steps strong { display: block; font-size: .93rem; }
.ee-marked-steps p { margin: .12rem 0 0; font-size: .87rem; }

/* ── City cards / lists ──────────────────────────────────────── */
.ee-citycards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 1.1rem; }
.ee-citycard {
  margin: 0;
  padding: 1.3rem 1.35rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--ok);
}
.ee-citycard--expanding { border-top-color: var(--warn); }
.ee-citycard__head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: .6rem; }
.ee-citycard__head h3 { margin: 0; font-size: 1.1rem; }
.ee-citycard__head h3 a { color: inherit; }
.ee-citycard p { font-size: .9rem; }
.ee-citycard__link { font-weight: 650; font-size: .89rem; }

.ee-citylist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .6rem; }
.ee-citylist__item { margin: 0; }
.ee-citylist__item a {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .8rem 1rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--navy);
}
.ee-citylist__item a:hover { border-color: var(--navy); text-decoration: none; }

/* ── Mini grid (roles at a glance) ───────────────────────────── */
.ee-minigrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(216px, 1fr)); gap: .8rem; }
.ee-minicard {
  display: flex; flex-direction: column; gap: .2rem;
  padding: .95rem 1.05rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--navy);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.ee-minicard:hover { border-color: var(--cobalt); text-decoration: none; transform: translateY(-1px); }
.ee-minicard__code { font-family: var(--mono); font-size: .7rem; color: var(--muted); letter-spacing: .1em; }
.ee-minicard strong { font-size: .95rem; }
.ee-minicard__note { font-size: .82rem; color: var(--muted); }

/* ── Industry cards ──────────────────────────────────────────── */
.ee-industrygrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(286px, 1fr)); gap: 1.3rem; }
.ee-industrycard {
  margin: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ee-industrycard:hover { border-color: rgba(22, 87, 255, .32); box-shadow: var(--shadow); transform: translateY(-2px); }
.ee-industrycard__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ee-industrycard__body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.ee-industrycard__body h2 { font-size: 1.14rem; }
.ee-industrycard__body h2 a { color: inherit; }
.ee-industrycard__body h2 a:hover { color: var(--cobalt); text-decoration: none; }
.ee-industrycard__body p { font-size: .9rem; }
.ee-industrycard__link { margin-top: auto; padding-top: .8rem; font-weight: 650; font-size: .89rem; }

/* ── How-it-works steps ──────────────────────────────────────── */
.ee-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.ee-steps__item { display: grid; grid-template-columns: 58px 1fr; gap: 1.1rem; margin: 0; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.ee-steps__item:first-child { padding-top: 0; }
.ee-steps__n {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
}
.ee-steps__body h2 { font-size: 1.16rem; margin-bottom: .35rem; }
.ee-steps__body p { margin: 0; font-size: .95rem; }

.ee-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 2rem; }
.ee-split__col h2 { font-size: 1.2rem; }
.ee-split__note { margin-top: 1rem; font-size: .86rem; color: var(--muted); }

/* ── About ───────────────────────────────────────────────────── */
.ee-about { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; }
.ee-about__story h2 { font-size: 1.3rem; }
.ee-about__story h3 { font-size: 1.05rem; margin-top: 1.6rem; }
.ee-about__aside { display: grid; gap: 1.1rem; align-content: start; }
.ee-about__founder { display: flex; flex-direction: column; gap: .1rem; }
.ee-about__founder strong { font-size: 1rem; }
.ee-about__founder span { font-size: .82rem; color: var(--muted); }

/* ── Contact page ────────────────────────────────────────────── */
.ee-contact { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; }
.ee-contact__details { display: grid; gap: 1.1rem; align-content: start; }
.ee-contact__formtitle { font-size: 1.3rem; }
.ee-contact__formlead { font-size: .94rem; }
.ee-contactcard {
  margin: 0; padding: 1.3rem 1.35rem 1.4rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.ee-contactcard__title { font-size: 1.08rem; }
.ee-contactcard__list { margin: 0; display: grid; gap: .85rem; }
.ee-contactcard__list div { margin: 0; }
.ee-contactcard__list dt { font-size: .71rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ee-contactcard__list dd { margin: .12rem 0 0; font-size: .93rem; color: var(--body); }
.ee-contactcard__gstin { font-family: var(--mono); font-size: .86rem; }
.ee-contactcard__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.ee-contactcard__note { margin-top: 1rem; font-size: .82rem; color: var(--muted); }
.ee-contactcard--map .ee-contactcard__where { font-size: .92rem; }
.ee-contactcard__addr { font-weight: 650; color: var(--navy); font-size: .93rem; }
.ee-contactcard__visit { margin: .8rem 0 0; font-size: .82rem; color: var(--muted); }
.ee-socialbtns { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.ee-socialbtns li { margin: 0; }

/* ── Quote page layout ───────────────────────────────────────── */
.ee-quote-layout { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; }
.ee-quote-layout__aside { display: grid; gap: 1.1rem; align-content: start; }
.ee-quote-layout__disclaimer { margin-top: 1rem; font-size: .8rem; color: var(--muted); }

/* ── Blog layout ─────────────────────────────────────────────── */
.ee-bloglayout { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; }
.ee-bloglayout__aside { display: grid; gap: 1.1rem; align-content: start; }
.ee-searchfield { display: flex; gap: .5rem; }
.ee-searchfield input { flex: 1; min-height: 46px; padding: .55rem .7rem; border: 1px solid #CFD8E6; border-radius: var(--radius); font: inherit; font-size: .92rem; }
.ee-empty { padding: 1.4rem; background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius); }

/* ── Article ─────────────────────────────────────────────────── */
.ee-article__head { background: var(--offwhite); border-bottom: 1px solid var(--line); padding-block: clamp(2rem, 1.4rem + 3vw, 3.2rem); }
.ee-article__headinner { max-width: 900px; }
.ee-article__excerpt { font-size: 1.06rem; color: var(--body); max-width: 70ch; }
.ee-article__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .9rem 1.4rem;
  margin: 1.6rem 0 1.1rem; padding: 1.2rem 0 0; border-top: 1px solid var(--line);
}
.ee-article__meta div { margin: 0; }
.ee-article__meta dt { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ee-article__meta dd { margin: .12rem 0 0; font-size: .9rem; color: var(--navy); font-weight: 600; }
.ee-article__hero { margin: 0; }
.ee-article__hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; max-height: 520px; }
.ee-article__hero figcaption { max-width: var(--shell); margin: 0 auto; padding: .6rem clamp(1.05rem, .5rem + 2.2vw, 2.6rem) 0; font-size: .78rem; color: var(--muted); }
.ee-article__layout { display: grid; gap: clamp(1.8rem, 1.2rem + 3vw, 3rem); align-items: start; padding-block: clamp(2rem, 1.4rem + 3vw, 3.4rem); }
.ee-article__aside { display: grid; gap: 1.1rem; align-content: start; }
.ee-takeaways { margin-bottom: 2rem; padding: 1.2rem 1.35rem; background: var(--offwhite); border: 1px solid var(--line); border-top: 3px solid var(--cobalt); border-radius: var(--radius); }
.ee-takeaways h2 { font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; color: var(--cobalt); }
.ee-takeaways ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .4rem; }
.ee-takeaways li { font-size: .93rem; color: var(--navy); }
.ee-article__cta { margin-top: 2.4rem; padding: 1.5rem 1.6rem; background: var(--navy); border-radius: var(--radius); }
.ee-article__cta h2 { color: #fff; font-size: 1.2rem; }
.ee-article__cta p { color: rgba(255, 255, 255, .8); font-size: .95rem; }
.ee-article__cta .ee-btn { margin-top: .5rem; }

/* ── Resources columns ───────────────────────────────────────── */
.ee-resources__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.ee-resources__cols h2 { font-size: 1.1rem; }

/* ── Error + thank-you pages ─────────────────────────────────── */
.ee-errorpage { padding-block: clamp(2.6rem, 2rem + 4vw, 4.6rem); }
.ee-errorpage__lead { font-size: 1.05rem; max-width: 66ch; }
.ee-errorpage__links { list-style: none; margin: 1.8rem 0; padding: 0; display: grid; gap: .55rem; max-width: 70ch; }
.ee-errorpage__links li { margin: 0; padding-left: 1.5rem; position: relative; font-size: .95rem; }
.ee-errorpage__links li::before { content: "→"; position: absolute; left: 0; color: var(--cobalt); }
.ee-errorpage__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.ee-errorpage__alt { margin-top: 1.2rem; font-size: .9rem; color: var(--muted); }

.ee-thanks { padding-block: clamp(2.4rem, 1.8rem + 4vw, 4.4rem); background: var(--offwhite); }
.ee-thanks__panel {
  max-width: 820px; margin-inline: auto;
  padding: clamp(1.6rem, 1.2rem + 2.4vw, 3rem);
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--ok); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ee-thanks__eyebrow { margin: 0 0 .5rem; font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ok); }
.ee-thanks__lead { font-size: 1.06rem; }
.ee-thanks__next { margin: 2rem 0; }
.ee-thanks__next h2 { font-size: 1.06rem; }
.ee-thanks__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; counter-reset: t; }
.ee-thanks__steps li { display: flex; gap: .9rem; margin: 0; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.ee-thanks__steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.ee-thanks__steps li > span {
  flex: 0 0 auto; width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-size: .82rem; font-weight: 700; border-radius: 2px;
}
.ee-thanks__steps strong { display: block; color: var(--navy); font-size: .96rem; }
.ee-thanks__steps p { margin: .15rem 0 0; font-size: .89rem; }
.ee-thanks__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.ee-thanks__note { margin-top: 1.2rem; font-size: .87rem; color: var(--muted); }

/* ── Sticky mobile CTA ───────────────────────────────────────── */
.ee-stickycta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.ee-stickycta.is-visible { transform: none; }
.ee-stickycta .ee-btn { min-height: 48px; font-size: .9rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.ee-footer { background: var(--navy); color: rgba(255, 255, 255, .74); padding-block: clamp(2.4rem, 1.8rem + 3vw, 3.8rem) 1.6rem; }
.ee-footer__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding-bottom: 2rem; margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.ee-footer__cta-title { color: #fff; font-size: 1.35rem; margin-bottom: .25rem; }
.ee-footer__cta-text { margin: 0; font-size: .89rem; color: rgba(255, 255, 255, .6); }
.ee-footer__cta-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.ee-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.8rem; }
.ee-footer__brand img { width: 46px; height: 46px; object-fit: contain; margin-bottom: .8rem; border-radius: 2px; }
.ee-footer__brand p { font-size: .89rem; }
.ee-footer__hq { font-size: .84rem; margin-top: 1rem; }
.ee-footer__hq strong { color: #fff; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.ee-footer__gst { font-size: .8rem; margin-top: .9rem; color: rgba(255, 255, 255, .58); }
.ee-footer__gst span { font-family: var(--mono); font-size: .78rem; }
.ee-footer__col-title { color: #fff; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.ee-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.ee-footer__col li { margin: 0; }
.ee-footer__col a { color: rgba(255, 255, 255, .74); font-size: .89rem; }
.ee-footer__col a:hover { color: #fff; text-decoration: none; }
.ee-footer__social a { display: inline-flex; align-items: center; gap: .55rem; }
.ee-footer__follow { margin-top: 1rem; font-size: .82rem; color: rgba(255, 255, 255, .55); }
.ee-footer__email { margin-top: .4rem; font-size: .86rem; }
.ee-footer__legal { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .8rem; color: rgba(255, 255, 255, .52); }
.ee-footer__legal p { margin-bottom: .4rem; max-width: 100ch; }
.ee-footer__note { font-size: .78rem; }
.ee-footer__copy { margin: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
/* Header density, deliberately staged so the bar can never overflow.
   The full navigation appears at 1100px, the phone number only once there is
   room for it, and the WhatsApp CTA in the header is a compact-screen affordance
   (it remains available in the mobile menu, footer and every CTA band). */
@media (min-width: 700px) {
  .ee-mobileonly { display: none; }
}
/* Phone number: shown only when the nav is not competing for the same row. */
@media (min-width: 700px) and (max-width: 1099px) {
  .ee-header__phone { display: flex; }
}
@media (min-width: 1220px) {
  .ee-header__phone { display: flex; }
}
/* WhatsApp CTA in the header: compact screens only. */
@media (max-width: 1099px) {
  .ee-header__actions .ee-btn--whatsapp { display: inline-flex; }
}
@media (max-width: 480px) {
  .ee-header__actions .ee-btn--whatsapp span:not(.ee-icon) { display: none; }
}
@media (max-width: 1299px) {
  .ee-header__brand-text small { display: none; }
}

@media (min-width: 960px) {
  .ee-hero__inner { grid-template-columns: 1.05fr .95fr; }
  .ee-pagehead__grid { grid-template-columns: 1.15fr .85fr; }
  .ee-pagehead--split .ee-pagehead__grid { grid-template-columns: 1.2fr .8fr; }
  .ee-enquiry { grid-template-columns: .92fr 1.08fr; }
  .ee-servicebody { grid-template-columns: minmax(0, 1fr) 330px; }
  .ee-about { grid-template-columns: minmax(0, 1fr) 340px; }
  .ee-contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .ee-contact__details { grid-template-columns: 1fr; }
  .ee-quote-layout { grid-template-columns: minmax(0, 1.35fr) minmax(0, .75fr); }
  .ee-bloglayout { grid-template-columns: minmax(0, 1fr) 330px; }
  .ee-article__layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .ee-faqlayout { grid-template-columns: 260px minmax(0, 1fr); }
  .ee-faqlayout__nav { position: sticky; top: 106px; }
  .ee-servicebody__aside, .ee-article__aside, .ee-bloglayout__aside, .ee-quote-layout__aside, .ee-about__aside { position: sticky; top: 106px; }
  .ee-process__line { display: block; }
  .ee-servicerow { grid-template-columns: 320px minmax(0, 1fr); }
  .ee-stickycta { display: none; }
}

@media (min-width: 1100px) {
  .ee-nav { display: block; }
  .ee-burger { display: none; }
  .ee-header__actions .ee-btn--primary { display: inline-flex; }
  .ee-header__actions .ee-btn--whatsapp { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  body.has-sticky-cta { padding-bottom: 76px; }
  .ee-hero__actions .ee-btn, .ee-pagehead__actions .ee-btn, .ee-form__actions .ee-btn { width: 100%; }
  .ee-inline-cta { flex-direction: column; align-items: flex-start; }
  .ee-inline-cta .ee-btn { width: 100%; }
  .ee-steps__item { grid-template-columns: 42px 1fr; gap: .8rem; }
  .ee-map__canvas { aspect-ratio: 3 / 4; }
  .ee-map__label { font-size: .7rem; }
  .ee-footer__cta-actions .ee-btn { width: 100%; }
  .ee-quotes__track, .ee-workstrip { grid-auto-columns: 84%; }
}

@media (max-width: 900px) {
  .ee-servicebody__aside, .ee-article__aside, .ee-bloglayout__aside, .ee-quote-layout__aside, .ee-about__aside, .ee-contact__details { position: static; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .ee-header, .ee-stickycta, .ee-announce, .ee-footer__cta-actions, .ee-quote-layout__aside, .ee-servicebody__aside { display: none !important; }
  body { font-size: 11pt; color: #000; }
  a { color: #000; }
  .ee-form { border: 1px solid #999; }
}

/* ══════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM v2 — visual layer
   ──────────────────────────────────────────────────────────────────────────
   This block deliberately sits after the base layer and redefines the tokens
   plus the components that carry the brand feel. The base layer above still
   supplies every layout rule; this layer supplies the craft.

   What v2 adds, and why:
     · Self-hosted variable typefaces (Archivo / Inter / Space Grotesk).
       System fonts were the single biggest reason the site read as dated.
     · A real colour ramp (6-step ink, 6-step steel→sky, warm gold accent)
       so depth can be built instead of flat blocks.
     · Generous geometry: 14/20px radii and pill buttons, replacing 3px corners.
     · Ambient depth: navy radial glows, engineered grid overlay, gradient
       headline accents, layered soft shadows.
     · Dark, cinematic hero and header — how EventEdge's own brand reads.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Typefaces (self-hosted; no third-party requests, no CSP change) ─────── */
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/space-grotesk-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Ink ramp */
  --ink-950: #070C12;
  --ink-900: #0B1118;
  --ink-850: #0E1620;
  --ink-800: #12202E;
  --ink-700: #1A2E42;
  --ink-600: #27455F;

  /* Steel → sky brand ramp */
  --blue-800: #0F3557;
  --blue-700: #14456E;
  --blue-600: #1C5A8E;
  --blue-500: #2E7DBE;
  --blue-400: #4E9BD8;
  --blue-300: #8FBCE4;
  --blue-200: #C2DCF2;
  --blue-100: #E7EFF7;

  /* Warm accent, used sparingly */
  --gold: #C79A3B;
  --gold-soft: #E8CF95;

  /* Neutrals */
  --paper: #F6F8FB;
  --cream: #EEF3F8;
  --line: #DCE5EF;
  --line-strong: #C6D3E2;
  --line-on-dark: rgba(255, 255, 255, .11);

  --body: #41556E;
  --muted: #6B7C93;
  --ok: #12855A;
  --ok-soft: #E1F2E9;
  --warn: #9A6410;
  --warn-soft: #FBF1DF;

  /* Legacy aliases — existing rules keep working and inherit the new palette */
  --navy: var(--ink-900);
  --navy-800: var(--ink-800);
  --navy-700: var(--ink-700);
  --cobalt: var(--blue-600);
  --cobalt-dark: var(--blue-700);
  --cobalt-soft: var(--blue-100);
  --ink: var(--ink-900);
  --offwhite: var(--paper);
  --white: #FFFFFF;

  /* Ambient accent that reads on dark surfaces */
  --accent-on-dark: var(--blue-300);

  /* Geometry — generous, not corporate */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Type */
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-num: 'Space Grotesk', 'Inter', ui-monospace, Menlo, monospace;
  --mono: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layered, far-reaching shadows */
  --shadow-xs: 0 1px 2px rgba(7, 12, 18, .06);
  --shadow-sm: 0 4px 14px -4px rgba(7, 12, 18, .12);
  --shadow: 0 14px 34px -16px rgba(7, 12, 18, .22);
  --shadow-lg: 0 28px 64px -20px rgba(7, 12, 18, .40);
  --shadow-xl: 0 44px 90px -28px rgba(7, 12, 18, .52);
  --glow: 0 16px 40px -14px rgba(46, 125, 190, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .6s;

  --header-h: 82px;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
body {
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.66;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.08;
  margin: 0 0 .6em;
  text-wrap: balance;
}

/* The big, confident display scale — this is the brand's voice */
h1 { font-size: clamp(2.55rem, 1.5rem + 4.3vw, 5.1rem); font-weight: 800; line-height: 1.02; letter-spacing: -.038em; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.5vw, 3.1rem); font-weight: 800; line-height: 1.06; letter-spacing: -.032em; }
h3 { font-size: clamp(1.18rem, 1.06rem + .55vw, 1.5rem); font-weight: 700; letter-spacing: -.018em; }
h4 { font-size: 1.08rem; font-weight: 700; letter-spacing: -.012em; }

p { margin: 0 0 1.05em; }
strong { color: var(--ink-900); font-weight: 650; }
a { color: var(--blue-600); text-underline-offset: 3px; }

.ee-eyebrow,
.ee-announce__text,
.ee-dispatch__tag,
.ee-dispatch__city,
.ee-trust__label,
.ee-fieldset__legend,
.ee-servicerow__cols h3,
.ee-faqgroup__desc,
.ee-article__meta dt,
.ee-detail-list dt,
.ee-contactcard__list dt,
.ee-card__meta,
.ee-postcard__meta,
.ee-work__meta,
.ee-badge,
.ee-minicard__code,
.ee-service__code,
.ee-servicerow__code {
  font-family: var(--font-num);
}

/* Numbers get the characterful technical face */
.ee-trust__value,
.ee-hero__facts dd,
.ee-dispatch__time,
.ee-steps__n,
.ee-quote-steps__n,
.ee-thanks__steps li > span,
.ee-process__n {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

/* Gradient accent for display headings on dark surfaces */
.ee-grad {
  background: linear-gradient(96deg, var(--blue-200), var(--blue-300) 34%, var(--blue-500) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ee-section__intro { font-size: 1.09rem; line-height: 1.62; color: var(--body); }
.ee-pagehead__lead { font-size: 1.13rem; line-height: 1.62; }

/* ── Eyebrow: uppercase micro-label with a tick ─────────────────────────── */
.ee-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .755rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 .9rem;
}
.ee-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex: 0 0 auto;
}
.ee-eyebrow--light { color: var(--blue-300); }
.ee-pagehead .ee-eyebrow::before,
.ee-section--navy .ee-eyebrow::before { background: currentColor; }

/* ── Buttons: pill geometry, gradient primary, glow on hover ───────────── */
.ee-btn {
  min-height: 48px;
  padding: .72rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .002em;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out),
              background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.ee-btn:hover { transform: translateY(-2px); }
.ee-btn:active { transform: translateY(0); }

.ee-btn--primary {
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-600) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(28, 90, 142, .70);
}
.ee-btn--primary:hover {
  background: linear-gradient(180deg, var(--blue-400) 0%, var(--blue-500) 100%);
  box-shadow: var(--glow);
}

.ee-btn--whatsapp {
  background: linear-gradient(180deg, #22C55E 0%, #16A34A 100%);
  border-color: transparent;
  box-shadow: 0 10px 26px -14px rgba(22, 163, 74, .70);
}
.ee-btn--whatsapp:hover { background: linear-gradient(180deg, #2ED16A 0%, #1CAF50 100%); }

.ee-btn--ghost {
  background: rgba(255, 255, 255, .72);
  border-color: var(--line-strong);
  color: var(--ink-900);
  backdrop-filter: blur(6px);
}
.ee-btn--ghost:hover { background: #fff; border-color: var(--ink-900); box-shadow: var(--shadow-sm); }

.ee-btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .26);
  color: #fff;
  backdrop-filter: blur(8px);
}
.ee-btn--ghost-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.ee-btn--sm { min-height: 42px; padding: .5rem 1.05rem; font-size: .875rem; }
.ee-btn--lg { min-height: 56px; padding: .95rem 1.95rem; font-size: 1.005rem; }

/* ── Header: dark glass, brand-first ────────────────────────────────────── */
.ee-header {
  background: rgba(7, 12, 18, .78);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ee-header.is-stuck {
  background: rgba(7, 12, 18, .93);
  border-bottom-color: rgba(255, 255, 255, .11);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, .72);
}
.ee-header__inner { min-height: var(--header-h); }
.ee-header__brand img {
  width: 46px; height: 46px;
  border-radius: 12px;
  padding: 3px;
  background: #fff;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .65);
}
.ee-header__brand-text strong { color: #fff; font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; }
.ee-header__brand-text small { color: rgba(255, 255, 255, .55); }

.ee-nav__link {
  color: rgba(255, 255, 255, .80);
  font-weight: 570;
  font-size: .9rem;
  border-radius: var(--radius-pill);
  padding: .55rem .8rem;
}
.ee-nav__link:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.ee-nav__link.is-active { color: #fff; }
.ee-nav__link.is-active::after { background: var(--blue-400); border-radius: 2px; }

.ee-header__phone { border-right-color: rgba(255, 255, 255, .14); }
.ee-header__phone-label { color: rgba(255, 255, 255, .48); }
.ee-header__phone strong { color: #fff; }

.ee-burger { border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .05); }
.ee-burger__bars,
.ee-burger__bars::before,
.ee-burger__bars::after { background: #fff; }

.ee-mobilenav { background: var(--ink-950); border-top-color: rgba(255, 255, 255, .08); }
.ee-mobilenav__list li { border-bottom-color: rgba(255, 255, 255, .08); }
.ee-mobilenav__list a { color: rgba(255, 255, 255, .86); }
.ee-mobilenav__list a:hover, .ee-mobilenav__list a[aria-current="page"] { color: var(--blue-300); }
.ee-mobilenav__foot a { color: rgba(255, 255, 255, .7); }

.ee-announce {
  background: var(--ink-950);
  color: rgba(255, 255, 255, .74);
  font-size: .79rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ee-announce__text { letter-spacing: .045em; text-transform: uppercase; font-size: .72rem; font-weight: 500; }
.ee-announce__cta { color: var(--blue-300); border-bottom-color: rgba(143, 188, 228, .5); }
.ee-announce__cta:hover { color: #fff; border-bottom-color: #fff; }

/* ── Hero: dark, cinematic, ambient depth ───────────────────────────────── */
.ee-hero {
  position: relative;
  background: var(--ink-950);
  color: rgba(255, 255, 255, .80);
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(3.4rem, 2.4rem + 5vw, 6.5rem);
  overflow: hidden;
}
/* Ambient glows — the "aura". Two large, offset radial washes. */
.ee-hero::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 150%;
  background:
    radial-gradient(1100px 620px at 86% -6%, rgba(46, 125, 190, .34), transparent 62%),
    radial-gradient(820px 560px at 2% 92%, rgba(199, 154, 59, .12), transparent 60%),
    radial-gradient(620px 520px at 62% 118%, rgba(28, 90, 142, .26), transparent 64%);
  pointer-events: none;
}
/* Engineered grid — implies operational precision */
.ee-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(120% 90% at 62% 12%, rgba(0, 0, 0, .85), transparent 76%);
  -webkit-mask-image: radial-gradient(120% 90% at 62% 12%, rgba(0, 0, 0, .85), transparent 76%);
  pointer-events: none;
}
.ee-hero__inner { position: relative; z-index: 1; align-items: center; }

.ee-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.5rem;
  padding: .48rem 1.05rem .48rem .85rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, .84);
  font-family: var(--font-num);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .155em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ee-hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(78, 155, 216, .22);
  flex: 0 0 auto;
}

.ee-hero__title {
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .35);
}
.ee-hero__sub {
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.06rem, .98rem + .38vw, 1.24rem);
  line-height: 1.6;
  max-width: 60ch;
}
.ee-hero__sub strong { color: #fff; font-weight: 650; }

.ee-hero__trust {
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-num);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ee-hero__trust-dot { background: var(--blue-400); box-shadow: 0 0 0 5px rgba(78, 155, 216, .18); }

.ee-hero__facts { border-top-color: rgba(255, 255, 255, .12); }
.ee-hero__facts dt { color: rgba(255, 255, 255, .48); letter-spacing: .14em; }
.ee-hero__facts dd { color: #fff; font-weight: 700; font-size: 1.1rem; }

.ee-hero__figure {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, .13);
}
.ee-hero__figure img { aspect-ratio: 4 / 3.1; }
.ee-hero__caption {
  background: rgba(7, 12, 18, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-num);
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .82);
  border-top-right-radius: var(--radius-sm);
}

/* Dispatch panel — the glass timeline, EventEdge's signature device */
.ee-dispatch {
  margin-top: -2.6rem;
  margin-inline: 1.1rem;
  max-width: 470px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 1.1rem 1.25rem 1.15rem;
}
@media (min-width: 900px) { .ee-dispatch { margin-left: 0; margin-inline: auto 0; } }
.ee-dispatch__head { border-bottom-color: rgba(255, 255, 255, .12); }
.ee-dispatch__live { color: var(--blue-300); letter-spacing: .14em; }
.ee-dispatch__pulse { background: var(--blue-400); }
.ee-dispatch__city { color: rgba(255, 255, 255, .45); letter-spacing: .16em; }

/* Timeline rail with nodes */
.ee-dispatch__steps { position: relative; padding-left: .1rem; }
.ee-dispatch__steps li {
  border-bottom: 0;
  padding: .68rem 0 .68rem 1.35rem;
  position: relative;
}
.ee-dispatch__steps li::before {
  content: "";
  position: absolute;
  left: 3px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .16);
}
.ee-dispatch__steps li:first-child::before { top: .85rem; }
.ee-dispatch__steps li:last-child::before { bottom: auto; height: .85rem; }
.ee-dispatch__steps li::after {
  content: "";
  position: absolute;
  left: 0; top: .95rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(78, 155, 216, .18);
}
.ee-dispatch__steps li:last-child::after {
  background: transparent;
  border: 1.5px solid var(--blue-300);
  box-shadow: none;
}
.ee-dispatch__steps li { display: block; }
.ee-dispatch__time { color: var(--blue-300); font-size: .75rem; letter-spacing: .04em; }
.ee-dispatch__tag {
  color: rgba(255, 255, 255, .52);
  font-size: .68rem;
  letter-spacing: .16em;
  font-weight: 500;
  display: inline-block;
  margin-left: .45rem;
}
.ee-dispatch__tag::before { content: "— "; }
.ee-dispatch__text { display: block; color: rgba(255, 255, 255, .93); font-size: .9rem; margin-top: .12rem; }
.ee-dispatch__foot { border-top-color: rgba(255, 255, 255, .12); color: #fff; }
.ee-dispatch__scale { color: rgba(255, 255, 255, .5); font-family: var(--font-num); font-size: .78rem; }

/* ── Badges ─────────────────────────────────────────────────────────────── */
.ee-badge {
  border-radius: var(--radius-pill);
  padding: .26rem .68rem;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .11em;
}
.ee-badge--live { background: var(--ok-soft); color: var(--ok); }
.ee-badge--expanding { background: var(--warn-soft); color: var(--warn); }

/* ── Section surfaces ───────────────────────────────────────────────────── */
.ee-section { padding-block: clamp(3.4rem, 2.4rem + 4.8vw, 6.4rem); }
.ee-section--tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ee-section--navy {
  position: relative;
  background: var(--ink-950);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}
.ee-section--navy::after {
  content: "";
  position: absolute;
  inset: -30% -10% -30% -10%;
  background:
    radial-gradient(900px 520px at 12% 4%, rgba(46, 125, 190, .24), transparent 62%),
    radial-gradient(760px 520px at 92% 96%, rgba(28, 90, 142, .22), transparent 62%);
  pointer-events: none;
}
.ee-section--navy > .ee-shell { position: relative; z-index: 1; }
.ee-section--navy .ee-section__title { color: #fff; }
.ee-section--navy .ee-section__intro { color: rgba(255, 255, 255, .74); }
.ee-section--navy strong { color: #fff; }

.ee-section__head { max-width: 78ch; margin-bottom: clamp(2rem, 1.3rem + 2.2vw, 3.2rem); }
.ee-section__title { margin-bottom: .65rem; }

/* ── Trust bar: the proof strip ─────────────────────────────────────────── */
.ee-trust {
  position: relative;
  background: var(--ink-900);
  padding-block: 2.6rem 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.ee-trust::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  opacity: .55;
}
.ee-trust__list { gap: 1.6rem .9rem; }
.ee-trust__value {
  font-size: clamp(2.15rem, 1.5rem + 2.1vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  background: linear-gradient(180deg, #fff 30%, var(--blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ee-trust__label { color: rgba(255, 255, 255, .82); font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.ee-trust__note { color: rgba(255, 255, 255, .42); font-size: .73rem; }
.ee-trust__footnote { border-top-color: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .5); }

/* ── Cards: the generic surface ─────────────────────────────────────────── */
.ee-service,
.ee-industry,
.ee-industrycard,
.ee-citycard,
.ee-minicard,
.ee-work,
.ee-quote,
.ee-card,
.ee-postcard,
.ee-contactcard,
.ee-aside-block,
.ee-panel,
.ee-takeaways,
.ee-form,
.ee-success,
.ee-thanks__panel,
.ee-inline-cta,
.ee-buyer,
.ee-problem {
  border-radius: var(--radius-lg);
  border-color: var(--line);
  background: var(--white);
}
.ee-section--tint .ee-card,
.ee-section--tint .ee-postcard,
.ee-section--tint .ee-industrycard { background: var(--white); }

.ee-service { padding: 1.6rem 1.55rem 1.5rem; }
.ee-service::before { height: 3px; border-radius: 3px 3px 0 0; background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); }
.ee-service:hover { border-color: rgba(46, 125, 190, .45); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.ee-service__title { font-weight: 750; letter-spacing: -.02em; }
.ee-service__code { color: var(--blue-600); letter-spacing: .14em; font-weight: 600; }
.ee-service__roles li,
.ee-chip { border-radius: var(--radius-pill); background: var(--paper); border-color: var(--line); color: var(--body); padding: .28rem .72rem; }
.ee-service__link { color: var(--blue-600); }

.ee-industry { padding: 1.35rem 1.4rem 1.3rem; }
.ee-industry:hover { border-color: var(--blue-500); box-shadow: var(--shadow); transform: translateY(-4px); }

.ee-industrycard:hover,
.ee-card:hover,
.ee-postcard:hover { border-color: rgba(46, 125, 190, .42); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.ee-industrycard__media img,
.ee-card__media img,
.ee-postcard__media img,
.ee-work img { transition: transform .8s var(--ease-out); }
.ee-industrycard:hover img,
.ee-card:hover img,
.ee-postcard:hover img,
.ee-work:hover img { transform: scale(1.05); }
.ee-industrycard__body h2 { font-weight: 750; }

.ee-minicard { padding: 1.05rem 1.15rem; }
.ee-minicard:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ee-minicard__code { color: var(--blue-600); letter-spacing: .13em; font-weight: 600; }

.ee-problem { padding: 1.55rem 1.5rem 1.6rem; }
.ee-problem__title { font-weight: 720; }
.ee-problem__response { border-top-color: var(--line-strong); }
.ee-problem__arrow { color: var(--blue-500); }

.ee-why__marker { background: var(--blue-500); border-radius: 2px; }
.ee-why__item h3 { font-weight: 720; }

/* ── Process rail ───────────────────────────────────────────────────────── */
.ee-process__line { background: rgba(255, 255, 255, .16); }
.ee-process__line span { background: linear-gradient(90deg, var(--blue-500), var(--blue-300)); }
.ee-process__n {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  min-width: 38px; height: 38px;
  color: var(--blue-300);
  font-size: .82rem;
  backdrop-filter: blur(8px);
}
.ee-process__step { padding-top: 2.6rem; }
.ee-process__title { color: #fff; }
.ee-process__text { color: rgba(255, 255, 255, .70); }

/* ── Work / portfolio imagery ───────────────────────────────────────────── */
.ee-work { overflow: hidden; }
.ee-work__media { position: relative; }
.ee-work figcaption { padding: 1.05rem 1.15rem 1.2rem; }
.ee-work figcaption strong { font-family: var(--font-display); font-weight: 720; letter-spacing: -.015em; }
.ee-work__flag { background: rgba(7, 12, 18, .78); backdrop-filter: blur(8px); border-radius: var(--radius-pill); padding: .24rem .7rem; }
.ee-filter { border-radius: var(--radius-pill); min-height: 44px; padding: .5rem 1.1rem; border-color: var(--line-strong); }
.ee-filter:hover { border-color: var(--blue-500); color: var(--blue-600); }
.ee-filter.is-active { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.ee-quote {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue-500), var(--blue-300)) 1;
  box-shadow: var(--shadow-sm);
}
.ee-quote blockquote p { font-size: 1.02rem; color: var(--ink-900); line-height: 1.6; font-weight: 450; }
.ee-quotes__btn {
  border-radius: var(--radius-pill);
  border-color: var(--line-strong);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.ee-quotes__btn:hover { background: var(--ink-900); border-color: var(--ink-900); color: #fff; transform: translateY(-2px); }

/* ── Coverage map ───────────────────────────────────────────────────────── */
.ee-map__canvas {
  border-radius: var(--radius-lg);
  border-color: rgba(255, 255, 255, .13);
  background:
    radial-gradient(700px 420px at 78% 8%, rgba(46, 125, 190, .30), transparent 62%),
    linear-gradient(160deg, #0C1C2E, #070C12);
  box-shadow: var(--shadow-lg);
}
.ee-map__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
}
.ee-map__label { border-radius: var(--radius-sm); font-weight: 600; }
.ee-map__pin--live .ee-map__dot { background: var(--blue-400); }
.ee-map__key--live .ee-map__swatch { background: var(--blue-400); }
.ee-map__pin:hover .ee-map__label { background: var(--blue-500); }

/* ── Page head ──────────────────────────────────────────────────────────── */
.ee-pagehead {
  position: relative;
  background:
    radial-gradient(820px 400px at 88% -10%, rgba(46, 125, 190, .14), transparent 62%),
    linear-gradient(180deg, var(--paper), var(--white));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 1.8rem + 3.6vw, 4.4rem);
}
.ee-pagehead__figure { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.ee-pagehead__facts { border-top-color: var(--line-strong); }
.ee-pagehead__facts strong { font-family: var(--font-display); font-weight: 720; font-size: 1.02rem; }
.ee-pagehead__meta { border-radius: var(--radius); border-left: 3px solid var(--blue-500); }

.ee-crumbs { background: transparent; border-bottom: 0; position: relative; }
.ee-crumbs__list { padding: .85rem 0 .1rem; }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.ee-form { border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--blue-500), var(--blue-300)) 1; box-shadow: var(--shadow-lg); }
.ee-field input,
.ee-field select,
.ee-field textarea {
  border-radius: var(--radius);
  border-color: var(--line-strong);
  min-height: 50px;
  padding: .68rem .85rem;
  background: #FCFDFE;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.ee-field input:hover,
.ee-field select:hover,
.ee-field textarea:hover { border-color: var(--blue-300); background: #fff; }
.ee-field input:focus,
.ee-field select:focus,
.ee-field textarea:focus {
  background: #fff;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(46, 125, 190, .15);
}
.ee-field label { font-family: var(--font-num); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.ee-fieldset__legend { color: var(--blue-600); letter-spacing: .15em; font-weight: 600; }
.ee-success { border-top: 4px solid transparent; border-image: linear-gradient(90deg, var(--ok), #4ECB8E) 1; }

/* ── Prose, tables, panels ──────────────────────────────────────────────── */
.ee-prose__h { font-weight: 780; }
.ee-prose p { font-size: 1.02rem; line-height: 1.72; }
.ee-callout { border-radius: var(--radius); border-left: 3px solid var(--blue-500); background: var(--paper); }
.ee-callout__title { font-family: var(--font-display); font-weight: 720; }
.ee-tablewrap { border-radius: var(--radius); }
.ee-table thead th { background: var(--ink-900); color: #fff; font-family: var(--font-num); letter-spacing: .08em; }
.ee-panel { border-top: 3px solid var(--blue-500); box-shadow: var(--shadow-sm); }
.ee-takeaways { border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--blue-500), var(--blue-300)) 1; }
.ee-takeaways h2 { font-family: var(--font-num); letter-spacing: .14em; color: var(--blue-600); }
.ee-article__cta { border-radius: var(--radius-lg); position: relative; overflow: hidden; background: var(--ink-900); }
.ee-article__cta::after {
  content: "";
  position: absolute; inset: -40% -20% auto -20%; height: 160%;
  background: radial-gradient(600px 320px at 82% 6%, rgba(46, 125, 190, .34), transparent 62%);
  pointer-events: none;
}
.ee-article__cta > * { position: relative; z-index: 1; }
.ee-article__head { background: linear-gradient(180deg, var(--paper), var(--white)); }
.ee-aside-block--navy { background: var(--ink-900); border-color: rgba(255, 255, 255, .09); }
.ee-aside-block--navy .ee-btn--primary { box-shadow: none; }

/* ── Inline CTA band ────────────────────────────────────────────────────── */
.ee-inline-cta {
  border-left: 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue-500), var(--blue-300)) 1;
  box-shadow: var(--shadow);
  padding: 1.4rem 1.6rem;
}
.ee-inline-cta--light {
  background: rgba(255, 255, 255, .05);
  border-image: none;
  border-top-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.ee-footer {
  position: relative;
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}
.ee-footer::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(760px 420px at 78% 100%, rgba(46, 125, 190, .22), transparent 64%);
  pointer-events: none;
}
.ee-footer > .ee-shell { position: relative; z-index: 1; }
.ee-footer__cta { border-bottom-color: rgba(255, 255, 255, .12); }
.ee-footer__cta-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.025em; }
.ee-footer__brand img { border-radius: 12px; padding: 3px; background: #fff; }
.ee-footer__col-title { font-family: var(--font-num); letter-spacing: .16em; }
.ee-footer__legal { border-top-color: rgba(255, 255, 255, .12); }

/* ── Floating WhatsApp (desktop) ────────────────────────────────────────── */
.ee-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #22C55E, #16A34A);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(22, 163, 74, .7);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.ee-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 20px 44px -12px rgba(22, 163, 74, .8); text-decoration: none; }
.ee-fab .ee-icon { width: 26px; height: 26px; }
@media (max-width: 1099px) { .ee-fab { display: none; } }

/* ── Sticky mobile CTA ──────────────────────────────────────────────────── */
.ee-stickycta {
  background: rgba(7, 12, 18, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

/* ── Motion ─────────────────────────────────────────────────────────────── */
[data-ee-reveal] {
  transform: translateY(26px);
  transition-duration: .75s;
  transition-timing-function: var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.ee-hero__figure img { transition-duration: 2s; transition-timing-function: var(--ease-out); }
.ee-btn--primary { position: relative; overflow: hidden; }
.ee-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
  pointer-events: none;
}
.ee-btn--primary:hover::after { transform: translateX(120%); }

/* ── Dark-surface link + eyebrow corrections ────────────────────────────── */
.ee-section--navy a:not(.ee-btn) { color: var(--blue-300); }
.ee-hero a:not(.ee-btn) { color: var(--blue-300); }

/* ── Responsive refinements ─────────────────────────────────────────────── */
@media (min-width: 960px) {
  .ee-hero__inner { grid-template-columns: 1.06fr .94fr; gap: clamp(2.4rem, 1.4rem + 3.4vw, 4.4rem); }
}
@media (max-width: 620px) {
  body { font-size: 16.5px; }
  h1 { font-size: clamp(2.2rem, 1.6rem + 5.4vw, 3.1rem); letter-spacing: -.03em; }
  .ee-dispatch { margin-inline: 0; margin-top: -1.8rem; padding: .95rem 1rem 1rem; }
  .ee-hero__facts { gap: .9rem 1.1rem; }
  .ee-trust__value { font-size: 2.1rem; }
}
@media (max-width: 400px) {
  .ee-dispatch__tag { display: block; margin-left: 0; }
  .ee-dispatch__steps li { padding-bottom: .55rem; }
}

/* ── Admin dashboard inherits the brand typefaces and geometry ──────────── */
.ee-admin {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.ee-admin h1, .ee-admin h2, .ee-admin h3, .ee-admin h4 {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -.02em;
}

/* ── Correction: top-accent rules that respect rounded corners ──────────────
   `border-image` does not follow `border-radius`, so a gradient top border on a
   rounded card leaves square gradient ends poking past the corners. These rules
   cancel the border-image approach above and draw the accent as a positioned
   element instead, which rounds correctly.                                  */
.ee-quote,
.ee-form,
.ee-success,
.ee-takeaways,
.ee-inline-cta {
  border-image: none;
  border-top: 0;
  border-left: 0;
  position: relative;
  overflow: hidden;
}

.ee-quote::before,
.ee-form::before,
.ee-success::before,
.ee-takeaways::before,
.ee-inline-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.ee-success::before { background: linear-gradient(90deg, var(--ok), #4ECB8E); }
.ee-inline-cta--light::before { background: linear-gradient(90deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .08)); }

/* The service card's accent bar should follow the card's own corner radius. */
.ee-service::before { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }



