/* ============================================================
   EXPRESS KOLIMINE — Shared Static CSS
   Design tokens, header, footer, common layout utilities.
   All scoped styles for page templates are inlined per page.
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout utilities ---- */
.ek-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---- Buttons ---- */
.ek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}
.ek-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.ek-btn--primary {
  background: var(--ek-amber);
  color: var(--ek-navy);
  box-shadow: 0 2px 12px 0 rgb(52 102 170 / .24);
}
.ek-btn--primary:hover {
  background: var(--ek-amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px 0 rgb(52 102 170 / .32);
}
.ek-btn--secondary {
  background: var(--ek-navy);
  color: #fff;
}
.ek-btn--secondary:hover { background: #1E293B; transform: translateY(-1px); }
.ek-btn--ghost {
  background: transparent;
  border-color: var(--ek-border);
  color: var(--ek-navy);
}
.ek-btn--ghost:hover { background: var(--ek-bg); border-color: var(--ek-navy); }
.ek-btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.ek-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

/* ---- Info list (light background, icon checkmarks) ---- */
.ek-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.875rem;
}
.ek-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--ek-bg, #F8FAFC);
  border: 1.5px solid var(--ek-border, #E2E8F0);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ek-slate, #475569);
}
.ek-info-list li svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--ek-amber-dark, #2d5a96);
}

/* ---- Design tokens ---- */
:root {
  --ek-navy:        #3466aa;
  --ek-navy-mid:    #2d5a96;
  --ek-amber:       #3466aa;
  --ek-amber-dark:  #2d5a96;
  --ek-amber-light: #e8f0f8;
  --ek-white:       #FFFFFF;
  --ek-bg:          #f1f1f1;
  --ek-slate:       #333333;
  --ek-slate-light: #666666;
  --ek-border:      #d0d0d0;
  --ek-radius:      0.625rem;
  --ek-shadow-md:   0 4px 24px -4px rgb(52 102 170 / .14);
  --ek-shadow-lg:   0 12px 40px -8px rgb(52 102 170 / .20);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ek-announce {
  background: var(--ek-navy);
  color: rgba(255,255,255,.7);
  font-size: 0.75rem;
  font-weight: 500;
  padding-block: 0.5625rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ek-announce__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ek-announce__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ek-announce__item {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  white-space: nowrap;
}
.ek-announce__item svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--ek-amber);
  flex-shrink: 0;
}
.ek-announce__item a { color: rgba(255,255,255,.7); transition: color 0.15s; }
.ek-announce__item a:hover { color: var(--ek-amber); }
.ek-announce__right { display: flex; align-items: center; gap: 1rem; }
.ek-announce__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(52,102,170,.12);
  border: 1px solid rgba(52,102,170,.22);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ek-amber);
  white-space: nowrap;
}
.ek-announce__badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--ek-amber);
  animation: ek-blink 1.8s ease-in-out infinite;
}
@keyframes ek-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.ek-header {
  background: var(--ek-white);
  border-bottom: 1px solid var(--ek-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s;
}
.ek-header.is-scrolled { box-shadow: var(--ek-shadow-md); }
.ek-header__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 4.25rem;
  display: flex;
  align-items: center;
}

/* Logo */
.ek-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-right: 2.5rem;
}
.ek-logo__mark {
  width: 2.125rem;
  height: 2.125rem;
  background: var(--ek-navy);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ek-logo__mark svg { width: 1.125rem; height: 1.125rem; color: var(--ek-white); }
.ek-logo__text { line-height: 1.2; }
.ek-logo__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ek-navy);
  letter-spacing: -0.02em;
}
.ek-logo__tagline {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ek-slate);
  letter-spacing: 0.02em;
}

/* Desktop nav */
.ek-nav {
  display: none;
  flex: 1;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 1024px) { .ek-nav { display: flex; } }

.ek-nav__item { position: relative; }
.ek-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ek-navy);
  border-radius: var(--ek-radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  background: none;
}
.ek-nav__link svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--ek-slate);
  transition: transform 0.2s, color 0.15s;
  flex-shrink: 0;
}
.ek-nav__item:hover > .ek-nav__link { color: var(--ek-amber-dark); background: var(--ek-amber-light); }
.ek-nav__item:hover > .ek-nav__link svg { transform: rotate(180deg); color: var(--ek-amber-dark); }

/* Mega dropdown */
.ek-mega {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 800px;
  max-width: calc(100vw - 3rem);
  background: var(--ek-white);
  border: 1px solid var(--ek-border);
  border-radius: 1.25rem;
  box-shadow: var(--ek-shadow-lg);
  padding: 1.75rem;
  display: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.ek-mega::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0; right: 0;
  height: 0.75rem;
}
.ek-nav__item:hover .ek-mega,
.ek-nav__item:focus-within .ek-mega {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.ek-mega__arrow {
  position: absolute;
  top: -0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.875rem;
  height: 0.4375rem;
  overflow: hidden;
}
.ek-mega__arrow::after {
  content: '';
  position: absolute;
  top: 0.125rem; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0.625rem; height: 0.625rem;
  background: var(--ek-white);
  border: 1px solid var(--ek-border);
  border-radius: 2px;
}

/* Mega header */
.ek-mega__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ek-border);
}
.ek-mega__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ek-slate);
}
.ek-mega__view-all {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ek-amber-dark);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.15s;
}
.ek-mega__view-all:hover { gap: 0.5rem; }
.ek-mega__view-all svg { width: 0.875rem; height: 0.875rem; }

/* Services grid */
.ek-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
}
.ek-mega-service {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--ek-radius);
  transition: background 0.15s;
  color: var(--ek-navy);
}
.ek-mega-service:hover { background: var(--ek-bg); }
.ek-mega-service:hover .ek-mega-service__icon { background: var(--ek-amber); border-color: var(--ek-amber); }
.ek-mega-service:hover .ek-mega-service__icon svg { color: var(--ek-navy); }
.ek-mega-service__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--ek-amber-light);
  border: 1.5px solid rgba(52,102,170,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 0.0625rem;
}
.ek-mega-service__icon svg { width: 1rem; height: 1rem; color: var(--ek-amber-dark); transition: color 0.15s; }
.ek-mega-service__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ek-navy);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.ek-mega-service__desc {
  display: block;
  font-size: 0.75rem;
  color: var(--ek-slate);
  line-height: 1.5;
}

/* Simple dropdown */
.ek-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: var(--ek-white);
  border: 1px solid var(--ek-border);
  border-radius: var(--ek-radius);
  box-shadow: var(--ek-shadow-md);
  padding: 0.5rem;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
  pointer-events: none;
}
.ek-dropdown::before {
  content: '';
  position: absolute;
  top: -0.75rem; left: 0; right: 0;
  height: 0.75rem;
}
.ek-nav__item:hover .ek-dropdown,
.ek-nav__item:focus-within .ek-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ek-dropdown__link {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ek-navy);
  border-radius: calc(var(--ek-radius) - 2px);
  transition: background 0.15s, color 0.15s;
}
.ek-dropdown__link:hover { background: #e8f0f8; color: #3466aa; }

/* Header actions */
.ek-header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .ek-header__actions { display: flex; } }

.ek-header__phone {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ek-navy);
  padding: 0.5rem 0.875rem;
  border-radius: var(--ek-radius);
  transition: color 0.15s, background 0.15s;
}
.ek-header__phone svg { width: 0.875rem; height: 0.875rem; color: var(--ek-amber); flex-shrink: 0; }
.ek-header__phone:hover { color: #2d5a96; background: #e8f0f8; }

.ek-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.625rem 1.375rem;
  background: var(--ek-amber);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--ek-radius);
  box-shadow: 0 2px 12px 0 rgba(52, 102, 170, .3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.ek-header__cta:hover { background: var(--ek-amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px 0 rgba(52, 102, 170, .4); }
.ek-header__cta svg { width: 0.875rem; height: 0.875rem; }

/* Language switcher */
.ek-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem;
  border: 1px solid var(--ek-border);
  border-radius: 9999px;
  background: var(--ek-bg);
  flex-shrink: 0;
}
.ek-lang-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2rem;
  padding-inline: 0.625rem;
  border-radius: 9999px;
  color: var(--ek-slate);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.ek-lang-switcher__link:hover {
  background: rgba(15,23,42,.06);
  color: var(--ek-navy);
}
.ek-lang-switcher__link.is-active {
  background: var(--ek-navy);
  color: #fff;
  box-shadow: 0 2px 10px rgba(15,23,42,.16);
}
.ek-lang-switcher__link.is-active:hover {
  color: #fff;
  background: var(--ek-navy);
}
.ek-lang-switcher--mobile {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.ek-lang-switcher--mobile .ek-lang-switcher__link {
  min-width: 0;
  flex: 1 1 0;
  height: 2.25rem;
}

/* Active nav link */
.ek-nav__link.is-active { color: #3466aa; }
.ek-nav__link.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1.25rem;
  left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: #3466aa;
  border-radius: 1px;
}

/* Mobile burger */
.ek-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--ek-radius);
  color: var(--ek-navy);
  transition: background 0.15s;
}
@media (min-width: 1024px) { .ek-burger { display: none; } }
.ek-burger:hover { background: var(--ek-bg); }
.ek-burger svg { width: 1.375rem; height: 1.375rem; }
.ek-burger__icon--close { display: none; }
body.ek-mobile-open .ek-burger__icon--open { display: none; }
body.ek-mobile-open .ek-burger__icon--close { display: block; }

/* Mobile menu panel */
.ek-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 999;
  background: var(--ek-white);
  overflow-y: auto;
  padding: 1.25rem 1.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
body.ek-mobile-open .ek-mobile-menu {
  display: block;
  transform: translateX(0);
}
.ek-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ek-border);
  margin-bottom: 1.5rem;
}
.ek-mobile-menu__langs {
  margin-bottom: 1.5rem;
}
.ek-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ek-radius);
  color: var(--ek-navy);
  transition: background 0.15s;
}
.ek-mobile-menu__close:hover { background: var(--ek-bg); }
.ek-mobile-menu__close svg { width: 1.25rem; height: 1.25rem; }

.ek-mobile-nav__section { margin-bottom: 2rem; }
.ek-mobile-nav__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ek-slate);
  padding: 0 0.5rem;
  margin-bottom: 0.625rem;
}
.ek-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--ek-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ek-navy);
  transition: background 0.15s;
}
.ek-mobile-nav__link:hover { background: var(--ek-bg); }
.ek-mobile-nav__link svg { width: 1.125rem; height: 1.125rem; color: var(--ek-amber-dark); flex-shrink: 0; }
.ek-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--ek-amber);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ek-radius);
  box-shadow: 0 4px 16px 0 rgba(52, 102, 170, .35);
  margin-top: 0.5rem;
}
.ek-mobile-cta svg { width: 1rem; height: 1rem; }
.ek-mobile-divider {
  padding-top: .5rem;
  border-top: 1px solid var(--ek-border);
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Pre-footer CTA band */
.ek-footer-cta {
  background: #416ead;
  padding-block: 3.5rem;
  position: relative;
  z-index: 30;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.ek-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.ek-footer-cta__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.ek-footer-cta__text { flex: 1; min-width: 0; }
.ek-footer-cta__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 0.5rem;
}
.ek-footer-cta__title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--ek-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ek-footer-cta__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; flex-shrink: 0; align-items: center; }
.ek-footer-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 2rem;
  background: var(--ek-white);
  color: var(--ek-navy);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.625rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.ek-footer-cta__btn-primary:hover { background: #f8fafc; transform: translateY(-1px); box-shadow: 0 6px 18px rgb(255 255 255 / .12); }
.ek-footer-cta__btn-primary svg { width: 1rem; height: 1rem; }
.ek-footer-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.75rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.30);
  color: var(--ek-white);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.625rem;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ek-footer-cta__btn-secondary:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.ek-footer-cta__btn-secondary svg { width: 1rem; height: 1rem; }

/* Main footer */
.ek-footer-body {
  position: relative;
  z-index: 30;
  background: var(--ek-navy);
  color: rgba(255,255,255,.92);
  padding-block: 3.75rem 3rem;
}
.ek-footer-body__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.ek-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .ek-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ek-footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; } }

.ek-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.ek-footer-logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--ek-navy);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ek-footer-logo__mark svg { width: 1.125rem; height: 1.125rem; color: #fff; }
.ek-footer-logo__name { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.ek-footer-logo__tagline { display: block; font-size: 0.6875rem; color: rgba(255,255,255,.45); font-weight: 500; }
.ek-footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.ek-footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9999px;
  padding: 0.4375rem 1rem;
  margin-bottom: 1.5rem;
}
.ek-footer-rating__stars { display: flex; gap: 2px; }
.ek-footer-rating__stars svg { width: 0.8125rem; height: 0.8125rem; color: #ffffff; }
.ek-footer-rating__text { font-size: 0.8125rem; font-weight: 700; color: #ffffff; }
.ek-footer-socials { display: flex; gap: 0.625rem; }
.ek-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ek-footer-social:hover { background: #3466aa; color: #fff; border-color: #3466aa; }
.ek-footer-social svg { width: 1rem; height: 1rem; }

.ek-footer-col__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ek-footer-col__links { display: flex; flex-direction: column; gap: 0.625rem; }
.ek-footer-col__link {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.88);
  transition: color 0.15s;
}
.ek-footer-col__link:hover { color: #ffffff; }
.ek-footer-col__link svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

.ek-footer-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.ek-footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ek-footer-contact__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: rgba(52, 102, 170, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.0625rem;
}
.ek-footer-contact__icon svg { width: 0.875rem; height: 0.875rem; color: var(--ek-white); }
.ek-footer-contact__label { font-size: 0.6875rem; color: rgba(255,255,255,.4); font-weight: 500; margin-bottom: 0.125rem; }
.ek-footer-contact__value { font-size: 0.875rem; color: rgba(255,255,255,.96); font-weight: 600; }
.ek-footer-contact__value a { transition: color 0.15s; }
.ek-footer-contact__value a:hover { color: #ffffff; }

.ek-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ek-footer-bottom__copy { font-size: 0.8125rem; color: rgba(255,255,255,.75); }
.ek-footer-bottom__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.ek-footer-bottom__links a { font-size: 0.8125rem; color: rgba(255,255,255,.82); transition: color 0.15s; }
.ek-footer-bottom__links a:hover { color: #ffffff; }

/* ============================================================
   PAGE HERO — two-column hero with form
   ============================================================ */
.ek-page-hero {
  background: var(--ek-navy);
  padding-block: 4rem 3.5rem;
}
/* Light hero variant — white background, dark text */
.ek-page-hero--light {
  background: #fff;
  border-bottom: 1px solid var(--ek-border);
}
.ek-page-hero--light .ek-page-hero__text { color: var(--ek-navy); }
.ek-page-hero--light .ek-page-hero__title { color: var(--ek-navy); }
.ek-page-hero--light .ek-page-hero__lead { color: var(--ek-slate); }
.ek-page-hero--light .ek-page-hero__sub { color: var(--ek-slate-light); }
.ek-page-hero--light .ek-breadcrumb a { color: var(--ek-slate); }
.ek-page-hero--light .ek-breadcrumb { color: var(--ek-slate-light); }
.ek-page-hero--light .ek-check-list li { color: var(--ek-slate); }
.ek-page-hero--light .ek-check-list li::before { background: var(--ek-amber-dark); }

.ek-page-hero__two-col {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .ek-page-hero__two-col { grid-template-columns: 1fr 420px; }
}
.ek-page-hero__text { color: #fff; }
.ek-page-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ek-page-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem;
}
.ek-page-hero__sub {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-top: 1.25rem;
}

/* ek-check-list SVG size guard */
.ek-check-list li svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION TYPOGRAPHY HELPERS
   ============================================================ */
.ek-section {
  padding-block: 5rem;
}
.ek-section--alt { background: #fff; }
.ek-section--navy { background: var(--ek-navy); color: #fff; }
.ek-section--navy .ek-section__title { color: #fff; }
.ek-section--navy .ek-section__subtitle { color: rgba(255,255,255,.7); }

.ek-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ek-amber-dark);
  margin-bottom: 0.75rem;
}
.ek-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ek-navy);
  margin-bottom: 1rem;
}
.ek-section__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
.ek-section__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ek-slate);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ek-breadcrumb { margin-bottom: 1.25rem; }
.ek-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.45);
}
.ek-breadcrumb__item { display: flex; align-items: center; gap: 0.375rem; }
.ek-breadcrumb__item + .ek-breadcrumb__item::before {
  content: '/';
  color: rgba(255,255,255,.25);
}
.ek-breadcrumb__item--current { color: rgba(255,255,255,.7); font-weight: 600; }
.ek-breadcrumb__link { color: rgba(255,255,255,.5); transition: color 0.15s; }
.ek-breadcrumb__link:hover { color: var(--ek-amber); }

/* ============================================================
   CHECK LIST
   ============================================================ */
.ek-check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ek-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}
.ek-check-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--ek-amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}
/* check list on light background */
.ek-section .ek-check-list li { color: var(--ek-slate); }

/* ============================================================
   HERO FORM BOX
   ============================================================ */
.ek-hero-form-box {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(15,23,42,.35);
}
.ek-hero-form-box__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background: var(--ek-navy-mid, #1E293B);
  padding: 1.25rem 1.5rem 1rem;
  margin: 0;
}
.ek-hero-form-box__sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.55);
  background: var(--ek-navy-mid, #1E293B);
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

/* ============================================================
   FORM
   ============================================================ */
.ek-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.ek-form__row { display: grid; gap: 0.75rem; }
.ek-form__row--2 { grid-template-columns: 1fr 1fr; }
.ek-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.ek-form__row--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
@media (max-width: 560px) {
  .ek-form__row--2,
  .ek-form__row--3,
  .ek-form__row--4 { grid-template-columns: 1fr; }
}
.ek-form__group { display: flex; flex-direction: column; gap: 0.375rem; }
.ek-form__label { font-size: 0.8125rem; font-weight: 600; color: var(--ek-navy); }
.ek-form__input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--ek-border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--ek-navy);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  font-family: inherit;
}
.ek-form__input:focus { border-color: var(--ek-amber); box-shadow: 0 0 0 3px rgb(52 102 170 / .12); }
.ek-form__textarea { resize: vertical; min-height: 80px; }
.ek-form__submit { width: 100%; margin-top: 0.25rem; padding-block: 0.875rem; font-size: 1rem; font-weight: 700; }

/* ============================================================
   PRODUCTS GRID (pakkematerjalid)
   ============================================================ */
.ek-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.ek-product-card {
  border: 1.5px solid var(--ek-border);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.ek-product-card:hover { box-shadow: 0 8px 24px -4px rgba(15,23,42,.12); border-color: var(--ek-amber); }
.ek-product-card__img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--ek-bg); }
.ek-product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ek-product-card__body { padding: 1rem 1.25rem 1.25rem; }
.ek-product-card__name { font-size: 1rem; font-weight: 700; color: var(--ek-navy); margin-bottom: 0.25rem; }
.ek-product-card__dims { font-size: 0.8125rem; color: var(--ek-slate-light); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.ek-product-card__price { font-size: 1rem; font-weight: 700; color: var(--ek-amber-dark); }
.ek-product-card__desc { font-size: 0.875rem; color: var(--ek-slate); line-height: 1.55; margin-top: 0.5rem; }
.ek-product-card__badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.625rem;
  background: var(--ek-amber-light);
  color: var(--ek-amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   CTA INLINE (after products)
   ============================================================ */
.ek-cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--ek-navy);
  border-radius: 1rem;
  margin-top: 1rem;
}
.ek-cta-inline p { font-size: 1rem; font-weight: 600; color: #fff; flex: 1; }

/* ============================================================
   CTA SECTION (dark banner at bottom of pages)
   ============================================================ */
.ek-cta-section {
  background: var(--ek-amber);
  padding-block: 3rem;
}
.ek-cta-section__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.ek-cta-section__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--ek-navy);
  margin-bottom: 0.375rem;
}
.ek-cta-section__text { font-size: 0.9375rem; color: rgba(15,23,42,.65); }
.ek-cta-section__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.ek-btn--outline-light {
  background: transparent;
  border: 2px solid var(--ek-navy);
  color: var(--ek-navy);
}
.ek-btn--outline-light:hover { background: var(--ek-navy); color: #fff; }

/* ============================================================
   PRICE TABLE (dark section)
   ============================================================ */
.ek-price-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 0.625rem; }
.ek-price-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.ek-price-table thead tr { background: rgba(255,255,255,.08); }
.ek-price-table th { padding: 0.75rem 1rem; text-align: left; font-weight: 700; color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.12); white-space: nowrap; }
.ek-price-table td { padding: 0.625rem 1rem; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06); white-space: nowrap; }
.ek-price-table tbody tr:last-child td { border-bottom: none; }
.ek-price-table tbody tr:hover { background: rgba(255,255,255,.04); }

/* ============================================================
   PRICE NOTES (dark section list)
   ============================================================ */
.ek-price-notes {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ek-price-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}
.ek-price-notes li::before { content: '—'; color: var(--ek-amber); flex-shrink: 0; }

/* ============================================================
   FOOTER VARIANTS used by page templates
   ============================================================ */
.ek-footer-col__logo { margin-bottom: 0.75rem; }
.ek-footer-col__tagline { font-size: 0.875rem; color: rgba(255,255,255,.45); margin-top: 0.5rem; }
.ek-footer-col__contacts {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: 0.375rem;
  font-size: 0.875rem; color: rgba(255,255,255,.6);
}
.ek-footer-col__contacts a { color: inherit; transition: color 0.15s; }
.ek-footer-col__contacts a:hover { color: var(--ek-amber); }
.ek-footer-col__addresses {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.375rem;
  font-size: 0.8125rem; color: rgba(255,255,255,.45);
}
.ek-footer-col__addresses a { color: inherit; transition: color 0.15s; }
.ek-footer-col__addresses a:hover { color: var(--ek-amber); }
.ek-footer-col__nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.375rem;
}
.ek-footer-col__nav a {
  font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color 0.15s;
}
.ek-footer-col__nav a:hover { color: var(--ek-amber); }
.ek-footer-col__link--active { color: #3466aa !important; font-weight: 600; }

/* ============================================================
   FOOTER GRID (template variant used in page files)
   ============================================================ */
.ek-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 0;
}
@media (min-width: 640px) { .ek-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ek-footer__grid { grid-template-columns: 1.4fr 1.2fr 1fr; gap: 2rem; } }
.ek-footer__bottom {
  padding-block: 1.25rem;
}
.ek-footer__bottom .ek-wrap {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8125rem; color: rgba(255,255,255,.35);
}
.ek-footer__bottom a { color: rgba(255,255,255,.35); transition: color 0.15s; }
.ek-footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   SECTION COLOUR MODIFIERS
   ============================================================ */
.ek-section--blue {
  background: var(--ek-navy);
  padding-block: 5rem;
}
.ek-section--blue .ek-section__title { color: #fff; }
.ek-section__title--white { color: #fff; }

/* ============================================================
   ACCORDION
   ============================================================ */
.ek-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.ek-accordion__item {
  border: 1.5px solid var(--ek-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.ek-accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ek-navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.ek-accordion__title::-webkit-details-marker { display: none; }
.ek-accordion__title::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ek-amber-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] > .ek-accordion__title { background: var(--ek-bg); }
details[open] > .ek-accordion__title::after { transform: rotate(45deg); }
.ek-accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ek-slate);
}
.ek-accordion__body p { margin: 0; }
.ek-accordion__body[hidden] { display: none !important; }

.ks-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ks-accordion__item {
  border: 1px solid var(--ek-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.ks-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ek-navy);
  font-family: inherit;
  transition: background 0.2s;
}
.ks-accordion__trigger:hover { background: #f8fafc; }
.ks-accordion__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--ek-amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ks-accordion__chevron {
  display: block;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  max-height: 1rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--ek-slate);
  overflow: hidden;
}
.ks-accordion__trigger[aria-expanded="true"] .ks-accordion__chevron {
  transform: rotate(180deg);
}
.ks-accordion__trigger[aria-expanded="true"] {
  background: #f8fafc;
}
.ks-accordion__trigger > span:not(.ks-accordion__num) { flex: 1; }
.ks-accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ek-slate);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.ks-accordion__body p { margin: 0; }
.ks-accordion__body[hidden] { display: none !important; }

/* ============================================================
   PRICE TWO-COL (dark section layout)
   ============================================================ */
.ek-price-two-col {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ek-price-two-col { grid-template-columns: 1fr 1fr; }
}
.ek-price-ask h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ek-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.ek-service-card {
  display: block;
  text-decoration: none;
  border: 1.5px solid var(--ek-border);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.ek-service-card:hover {
  box-shadow: 0 8px 24px -4px rgba(15,23,42,.12);
  border-color: var(--ek-amber);
  transform: translateY(-2px);
}
.ek-service-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin-bottom: 0.5rem;
}
.ek-service-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ek-slate);
  margin: 0;
}

/* ============================================================
   BUTTON VARIANTS (additional)
   ============================================================ */
.ek-btn--white-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.ek-btn--white-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ============================================================
   SECTION ALT BACKGROUND
   ============================================================ */
.ek-section--alt-bg {
  background: #F1F5F9;
  padding-block: 5rem;
}

/* ============================================================
   HINNAINFO — two-column pricing conditions block
   ============================================================ */
.ek-hinnainfo {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 860px) {
  .ek-hinnainfo { grid-template-columns: 340px 1fr; gap: 5rem; }
}

/* Left sticky column */
.ek-hinnainfo__left {
  position: sticky;
  top: 5rem;
}
.ek-hinnainfo__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ek-slate);
  margin-bottom: 1.75rem;
}
.ek-hinnainfo__contact {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ek-border);
}
.ek-hinnainfo__contact p {
  font-size: 0.8125rem;
  color: var(--ek-slate-light);
  margin-bottom: 0.25rem;
}
.ek-hinnainfo__phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ek-navy);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.15s;
}
.ek-hinnainfo__phone:hover { color: var(--ek-amber-dark); }

/* Right list */
.ek-hinnainfo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--ek-border);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}
.ek-hinnainfo__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--ek-border);
  transition: background 0.15s;
}
.ek-hinnainfo__item:last-child { border-bottom: none; }
.ek-hinnainfo__item:hover { background: #F8FAFC; }
.ek-hinnainfo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: var(--ek-amber-light, #e8f0f8);
  border-radius: 0.5rem;
  color: var(--ek-amber-dark);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.ek-hinnainfo__icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}
.ek-hinnainfo__item > span:last-child {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ek-slate);
  padding-top: 0.2rem;
}

/* ============================================================
   SERVICE CARD ICON
   ============================================================ */
.ek-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--ek-amber-light, #e8f0f8);
  color: var(--ek-amber-dark);
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}
.ek-service-card__icon svg { width: 1.25rem; height: 1.25rem; display: block; }

/* ============================================================
   FEATURES GRID (why choose us)
   ============================================================ */
.ek-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.ek-feature-card {
  background: #fff;
  border: 1.5px solid var(--ek-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.ek-feature-card:hover {
  box-shadow: 0 6px 20px -4px rgba(15,23,42,.1);
  border-color: var(--ek-amber);
}
.ek-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--ek-amber-light, #e8f0f8);
  color: var(--ek-amber-dark);
  margin-bottom: 1rem;
}
.ek-feature-card__icon svg {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  min-width: 1.375rem;
  max-width: 1.375rem;
  flex-shrink: 0;
  overflow: hidden;
}
.ek-feature-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin-bottom: 0.5rem;
}
.ek-feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ek-slate);
  margin: 0;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.ek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.ek-gallery__item {
  display: block;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  background: var(--ek-bg);
}
.ek-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.ek-gallery__item:hover img { transform: scale(1.04); }
.ek-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(15,23,42,.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   SERVICES LIST (checkmark list)
   ============================================================ */
.ek-services-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ek-services-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ek-navy);
  line-height: 1.5;
}
.ek-services-list__icon {
  flex-shrink: 0;
  min-width: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  background: var(--ek-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ek-services-list__icon svg {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  min-width: 0.75rem;
  max-width: 0.75rem;
  flex-shrink: 0;
  stroke: var(--ek-navy);
  fill: none;
}

/* ============================================================
   TWO-COLUMN SECTION LAYOUT
   ============================================================ */
.ek-section__two-col {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .ek-section__two-col { grid-template-columns: 1fr 340px; }
}
.ek-section__two-col-aside { display: flex; flex-direction: column; gap: 1.5rem; }

/* ============================================================
   INFO BOX (aside card)
   ============================================================ */
.ek-info-box {
  background: var(--ek-bg);
  border: 1px solid var(--ek-border);
  border-radius: var(--ek-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.ek-info-box__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: color-mix(in srgb, var(--ek-amber) 12%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ek-info-box__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--ek-amber-dark);
}
.ek-info-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ek-dark);
  margin: 0;
}
.ek-info-box__text {
  font-size: 0.875rem;
  color: var(--ek-slate);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   BUTTON ACCORDION (with trigger / chevron / num)
   ============================================================ */
.ek-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ek-dark);
  font-family: inherit;
  transition: background 0.2s;
}
.ek-accordion__trigger:hover { background: #f8fafc; }
.ek-accordion__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ek-amber) 15%, transparent);
  color: var(--ek-amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ek-accordion__chevron {
  display: block;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  max-height: 1rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--ek-slate);
  overflow: hidden;
}
.ek-accordion__trigger[aria-expanded="true"] .ek-accordion__chevron {
  transform: rotate(180deg);
}
.ek-accordion__trigger[aria-expanded="true"] { background: #f8fafc; }
.ek-accordion__trigger > span:not(.ek-accordion__num) { flex: 1; }

/* ============================================================
   SECTION CLOSING TEXT
   ============================================================ */
.ek-section__closing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ek-border);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ek-slate);
}

/* ============================================================
   RESPONSIVE — page-level
   ============================================================ */
@media (max-width: 640px) {
  .ek-page-hero { padding-block: 2.5rem 2rem; }
  .ek-section { padding-block: 3rem; }
  .ek-section--blue { padding-block: 3rem; }
  .ek-section--alt-bg { padding-block: 3rem; }
  .ek-cta-section__inner { flex-direction: column; align-items: flex-start; }
  .ek-cta-inline { flex-direction: column; align-items: flex-start; }
  .ek-services-grid { grid-template-columns: 1fr; }
  .ek-features-grid { grid-template-columns: 1fr; }
  .ek-gallery { grid-template-columns: repeat(2, 1fr); }
  .ek-price-two-col { gap: 2rem; }
  .ek-hinnainfo__left { position: static; }
  .ek-moobel-grid { grid-template-columns: repeat(2, 1fr); }
  .ek-warning-box { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════
   MÖÖBLI ÄRAVEDU — KATEGOORIATE GRID
═══════════════════════════════════════════════════════ */

.ek-moobel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.ek-moobel-card {
  background: #fff;
  border: 1px solid var(--ek-border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ek-moobel-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--ek-amber-light, #e8f0f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ek-amber-dark);
  flex-shrink: 0;
}

.ek-moobel-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin: 0;
}

.ek-moobel-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ek-moobel-card__list li {
  font-size: 0.875rem;
  color: var(--ek-slate);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.ek-moobel-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ek-amber);
}

/* ═══════════════════════════════════════════════════════
   WARNING BOX
═══════════════════════════════════════════════════════ */

.ek-warning-box {
  background: #eef5fb;
  border: 1px solid #b3d9f2;
  border-left: 4px solid #3466aa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.ek-warning-box__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: #e8f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3466aa;
  flex-shrink: 0;
}

.ek-warning-box__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: #FEF3C7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B45309;
  flex-shrink: 0;
}

.ek-warning-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin: 0 0 0.5rem;
}

.ek-warning-box__text {
  font-size: 0.9rem;
  color: var(--ek-slate);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.ek-warning-box__list {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ek-warning-box__list li {
  font-size: 0.875rem;
  color: var(--ek-slate);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.5;
}

.ek-warning-box__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #B45309;
}

/* ═══════════════════════════════════════════════════════
   HINNAKIRI — BULLET LIST (vana mööbel leht)
═══════════════════════════════════════════════════════ */

.ek-hinnainfo {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ek-hinnainfo li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ek-slate);
  line-height: 1.6;
}

.ek-hinnainfo li svg {
  flex-shrink: 0;
  margin-top: 0.25em;
  color: var(--ek-amber-dark);
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER — для приватности, контакты и т.д.
═══════════════════════════════════════════════════════ */

.ek-page-header {
  background: #fff;
  border-bottom: 1px solid var(--ek-border);
  padding-block: 3.5rem 2.5rem;
}

.ek-page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ek-navy);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.2;
}

.ek-page-header__lead {
  font-size: 1.0625rem;
  color: var(--ek-slate);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════��═══════════════════════
   LEGAL CONTENT & LISTS — для приватности и условий
═══════════════════════════════════════════════════════ */

.ek-legal-content {
  max-width: 800px;
}

.ek-legal-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ek-navy);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ek-border);
}

.ek-legal-content h3:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.ek-legal-content p {
  font-size: 0.9375rem;
  color: var(--ek-slate);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.ek-legal-content a {
  color: var(--ek-amber-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--ek-amber-dark);
  transition: color 0.2s;
}

.ek-legal-content a:hover {
  color: var(--ek-amber);
}

.ek-legal-content hr {
  border: none;
  height: 1px;
  background: var(--ek-border);
  margin: 1.5rem 0;
}

.ek-legal-list {
  list-style: none;
  margin: 0.75rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ek-legal-list li {
  font-size: 0.9375rem;
  color: var(--ek-slate);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.ek-legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--ek-amber-dark);
  font-weight: bold;
}

/* ═══════════════════════════════════════════════════════
   CONTENT WRAPPER — макет для секций с текстом
═══════════════════════════════════════════════════════ */

.ek-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

/* Container alias */
.ek-container { /* Alias for .ek-wrap */
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
