/*------------------------------------------------------------------
# [Elitek v4 — Homepage redesign]
#
# Source of truth for the "Homepage v4" page template (home-v4.php).
# Deliberately standalone: the v4 template dequeues the legacy
# elitek.css, so nothing here needs to fight the old cascade.
#
# Written as plain CSS (a valid subset of LESS) so the compiled
# css/elitek-v4.css is a byte-identical copy of this file. Edit the
# .less; rebuild with `npx mix` (or just copy it across).
#
# Spacing convention (mirrors the design system):
#   --pad    horizontal page padding   36px  / 15px  under 767px
#   --sec-y  section vertical padding  104px / 56px  under 767px
# New sections only need `.elitek-wrap` to inherit both.
------------------------------------------------------------------*/

/* ============================================================
   1. Root, tokens, resets
   ============================================================ */

body.elitek-v4 {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.elitek-v4 * { box-sizing: border-box; }

html:has(body.elitek-v4) { scroll-behavior: smooth; }

body.elitek-v4 button,
body.elitek-v4 a,
body.elitek-v4 [role="button"],
body.elitek-v4 summary { -webkit-tap-highlight-color: transparent; }

body.elitek-v4 button:focus,
body.elitek-v4 a:focus,
body.elitek-v4 [role="button"]:focus { outline: none; }

body.elitek-v4 button:focus-visible,
body.elitek-v4 a:focus-visible,
body.elitek-v4 [role="button"]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

body.elitek-v4 ::selection { background: #3C6F8F; color: #fff; }

body.elitek-v4 input::placeholder,
body.elitek-v4 textarea::placeholder { color: #9DB2BD; }

.elitek-root {
  --pad: 36px;
  --sec-y: 104px;
  --hero-yt: 60px;
  --hero-yb: 84px;
  --foot-yt: 48px;
  --foot-yb: 28px;

  --paper: #F3F7F9;
  --card: #FFFFFF;
  --ink: #16323F;
  --muted: #5E7785;
  --line: #E1E9ED;
  --brand: #3C6F8F;
  --brand-d: #1E4256;
  --brand-dd: #0F2632;
  --magento: #EC6325;
  --shopware: #189EFF;

  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
}

/* One media query drives the whole page's compact spacing. */
@media (max-width: 767px) {
  .elitek-root {
    --pad: 15px;
    --sec-y: 56px;
    --hero-yt: 28px;
    --hero-yb: 48px;
    --foot-yt: 34px;
    --foot-yb: 24px;
  }
}

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

/* ============================================================
   2. Shared layout + typography primitives
   ============================================================ */

.elitek-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--sec-y) var(--pad);
}

.elitek-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}

.elitek-eyebrow-alt { color: var(--muted); }

.elitek-h2 {
  margin: 38px 0 56px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.elitek-h2-tight { margin-top: 40px; margin-bottom: 14px; }

.elitek-lead {
  margin: 0 0 56px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}

.elitek-accent { color: var(--brand); }

/* Trim heading rhythm on phones. */
@media (max-width: 767px) {
  .elitek-root .elitek-h2,
  .elitek-root .elitek-stats-h2 { margin-bottom: 30px !important; }
}

/* Buttons and inline links -----------------------------------
   Inline `style` attributes are not used in the markup, but hover
   rules still carry !important so the v4 page stays immune to the
   legacy stylesheet if it is ever re-enqueued alongside it. */

.elitek-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 28px;
  background: var(--brand);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s, transform .18s;
}

.elitek-btn:hover {
  background: #212121 !important;
  transform: translateY(-2px) !important;
  color: #fff;
}

.elitek-btn-sm { height: 42px; padding: 0 20px; gap: 0; }

.elitek-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 3px;
  transition: color .18s, border-color .18s;
}

.elitek-link:hover {
  color: var(--brand-d) !important;
  border-bottom-color: var(--brand-d) !important;
}

.elitek-link-m {
  transition: color .18s, border-color .18s;
  text-decoration: none;
}

.elitek-link-m:hover {
  color: var(--magento) !important;
  border-bottom-color: var(--magento) !important;
}

.elitek-link-s {
  transition: color .18s, border-color .18s;
  text-decoration: none;
}

.elitek-link-s:hover { color: var(--shopware) !important; }

.elitek-arrow {
  display: inline-block;
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}

.elitek-link:hover .elitek-arrow,
.elitek-link-m:hover .elitek-arrow,
.elitek-link-s:hover .elitek-arrow,
.elitek-blogcard:hover .elitek-arrow {
  animation: elitek-arrow-bob 0.7s ease-in-out infinite;
}

/* Round slider / carousel buttons */
.elitek-navbtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: background .16s, border-color .16s, color .16s;
}

.elitek-navbtn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.elitek-navbtn-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.elitek-navbtn-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   3. Keyframes
   ============================================================ */

@keyframes elitek-sheen {
  0% { transform: translateX(-160%) skewX(-16deg); }
  55%, 100% { transform: translateX(430%) skewX(-16deg); }
}

@keyframes elitek-cart {
  0%, 100% { transform: translateY(0) rotate(0); }
  30% { transform: translateY(-2.5px) rotate(-5deg); }
  60% { transform: translateY(0) rotate(3deg); }
}

@keyframes elitek-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(95, 224, 166, 0.55); }
  50% { opacity: 0.55; box-shadow: 0 0 0 5px rgba(95, 224, 166, 0); }
}

@keyframes elitek-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes elitek-float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes elitek-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.12); }
}

@keyframes elitek-drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-22px, 16px) scale(1.1); }
}

@keyframes elitek-badge {
  0%, 80%, 100% { transform: scale(1); }
  87% { transform: scale(1.32); }
  93% { transform: scale(0.94); }
}

@keyframes elitek-bar {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@keyframes elitek-arrow-bob {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Respect a reduced-motion preference: kill the ambient loops but
   keep the interactive transitions that convey state. */
@media (prefers-reduced-motion: reduce) {
  .elitek-root *,
  .elitek-root *::before,
  .elitek-root *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   4. Header + navigation
   ============================================================ */

.elitek-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .32s ease;
}

.elitek-header.scrolled { box-shadow: 0 8px 24px -14px rgba(22, 50, 63, 0.34); }

.elitek-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .32s cubic-bezier(.4, 0, .2, 1);
}

.elitek-header.scrolled .elitek-header-inner { height: 62px; }

.elitek-homelink {
  display: flex;
  align-items: center;
  color: var(--brand);
  text-decoration: none;
}

.elitek-logo {
  height: 46px;
  width: auto;
  transition: height .32s cubic-bezier(.4, 0, .2, 1);
}

.elitek-header.scrolled .elitek-logo { height: 32px; }

@media (max-width: 767px) {
  .elitek-header .elitek-logo { height: 36px; }
  .elitek-header.scrolled .elitek-logo { height: 27px; }
}

.elitek-headernav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.elitek-navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

.elitek-nav {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s;
}

.elitek-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s cubic-bezier(.4, 0, .2, 1);
}

.elitek-nav:hover { color: var(--brand) !important; }
.elitek-nav:hover::after { transform: scaleX(1); }

/* Language switcher — desktop dropdown ----------------------- */

.elitek-langwrap { position: relative; }

.elitek-langtrigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  transition: border-color .16s;
}

.elitek-langtrigger:hover { border-color: var(--brand-d) !important; }

.elitek-langcaret { font-size: 9px; color: var(--muted); }

.elitek-langmenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 128px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(22, 50, 63, 0.34);
  padding: 6px;
  z-index: 60;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.elitek-langwrap .elitek-langmenu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.elitek-langopt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: background .14s;
}

.elitek-langopt:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

.elitek-flag {
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

/* Hamburger -------------------------------------------------- */

.elitek-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: var(--brand);
  cursor: pointer;
  padding: 0 13px;
  transition: background .18s, transform .18s;
}

.elitek-hamburger:hover {
  background: var(--brand-d);
  transform: translateY(-1px);
}

.elitek-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
}

.elitek-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.elitek-hamburger.open span:nth-child(2) { opacity: 0; }
.elitek-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Drawers ---------------------------------------------------- */

.elitek-navoverlay,
.elitek-langoverlay,
.elitek-drawer,
.elitek-langdrawer { display: none; }

@media (max-width: 1199px) {
  .elitek-hamburger { display: flex; }
  .elitek-navlinks { display: none; }
  .elitek-langmenu { display: none !important; }

  .elitek-navoverlay,
  .elitek-langoverlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 38, 50, 0.32);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    pointer-events: none;
  }

  .elitek-navoverlay.open,
  .elitek-langoverlay.open {
    opacity: 1 !important;
    pointer-events: auto;
  }

  .elitek-drawer,
  .elitek-langdrawer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 91;
    width: 80%;
    max-width: 420px;
    background: var(--card);
    padding: 26px 30px 34px;
    transform: translateX(100%);
    overflow-y: auto;
  }

  .elitek-drawer.open,
  .elitek-langdrawer.open {
    transform: translateX(0) !important;
    box-shadow: -34px 0 70px -22px rgba(22, 50, 63, 0.42);
  }

  .elitek-drawer .elitek-nav {
    font-size: 20px;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
  }

  .elitek-drawer .elitek-nav::after { display: none; }

  .elitek-drawer .elitek-btn {
    justify-content: center;
    height: 54px;
    margin-top: 22px;
    font-size: 17px;
  }
}

.elitek-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.elitek-langdrawer .elitek-drawer-head { margin-bottom: 18px; }

.elitek-drawer-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.elitek-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  transition: border-color .16s;
}

.elitek-drawer-close:hover { border-color: var(--brand-d); }

.elitek-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.elitek-drawer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.elitek-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.elitek-langrow {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: background .16s, border-color .16s;
}

.elitek-langrow:hover { border-color: var(--brand-d) !important; }

.elitek-langrow.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ============================================================
   5. Hero
   ============================================================ */

.elitek-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 10%, var(--paper)) 0%, var(--paper) 58%);
}

.elitek-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--hero-yt) var(--pad) var(--hero-yb);
}

.elitek-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}

.elitek-hero-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.elitek-hero-h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.elitek-hero-p {
  margin: 28px 0 0;
  font-size: clamp(15px, 1.4vw + 0.5rem, 19px);
  line-height: 1.62;
  color: var(--ink);
  max-width: 46ch;
}

.elitek-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

@media (max-width: 1150px) {
  .elitek-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    justify-items: center;
  }
  .elitek-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .elitek-hero-text .elitek-hero-h1,
  .elitek-hero-text .elitek-hero-p {
    margin-left: auto;
    margin-right: auto;
  }
  .elitek-hero-actions { justify-content: center; }
  .elitek-hero-graphic {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .elitek-hero-seework { display: none !important; }
}

@media (max-width: 600px) {
  .elitek-hero-eyebrow span { font-size: 11px; white-space: nowrap; }
}

@media (max-width: 550px) {
  .elitek-hero-graphic {
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -40px;
  }
}

@media (max-width: 450px) {
  .elitek-hero-eyebrow span { font-size: 9.5px; }
}

@media (max-width: 430px) {
  .elitek-hero-graphic { transform: scale(0.68); margin-bottom: -80px; }
}

@media (max-width: 400px) {
  .elitek-hero-eyebrow { justify-content: center !important; }
  .elitek-hero-eyebrow span:last-child { display: none !important; }
}

/* Hero graphic ---------------------------------------------- */

.elitek-hero-graphic { position: relative; }

.elitek-orbs {
  position: absolute;
  inset: -40px;
  z-index: 0;
  pointer-events: none;
}

.elitek-orb {
  position: absolute;
  border-radius: 50%;
}

.elitek-orb-1 {
  top: -10px;
  left: 6px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, #5FB0FF, #189EFF);
  filter: blur(46px);
  opacity: 0.5;
  animation: elitek-drift 11s ease-in-out infinite;
}

.elitek-orb-2 {
  bottom: 0;
  right: -12px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle at 60% 40%, #FFB07A, #EC6325);
  filter: blur(54px);
  opacity: 0.4;
  animation: elitek-drift2 13s ease-in-out infinite;
}

.elitek-orb-3 {
  bottom: 28%;
  left: -24px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, #7BE6B8, #2BB985);
  filter: blur(48px);
  opacity: 0.34;
  animation: elitek-drift 15s ease-in-out infinite 1s;
}

/* Phone mock */
.elitek-phone {
  position: relative;
  z-index: 2;
  width: 248px;
  margin: 0 auto;
  animation: elitek-float 7s ease-in-out infinite;
}

.elitek-phone-shell {
  position: relative;
  background: #0F2632;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(22, 50, 63, 0.5);
}

.elitek-phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0F2632;
  border-radius: 0 0 13px 13px;
  z-index: 3;
}

.elitek-phone-screen {
  background: var(--card);
  border-radius: 32px;
  overflow: hidden;
}

.elitek-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 5px;
}

.elitek-phone-clock {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}

.elitek-phone-batt {
  width: 16px;
  height: 9px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  opacity: 0.75;
}

.elitek-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 12px;
}

.elitek-burger-mini {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.elitek-burger-mini span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.elitek-burger-mini span:last-child { width: 11px; }

.elitek-phone-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.elitek-cart { position: relative; display: flex; }

.elitek-cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--magento);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--card);
  animation: elitek-badge 4s ease-in-out infinite;
}

.elitek-promo {
  margin: 0 14px 13px;
  height: 92px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--brand), var(--brand-d));
  position: relative;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.elitek-promo-kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 5px;
}

.elitek-promo-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.elitek-promo-cta {
  margin-top: 10px;
  height: 23px;
  width: fit-content;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: var(--brand);
}

.elitek-promo-blob {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.elitek-plist {
  padding: 0 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.elitek-pcard {
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}

.elitek-pthumb {
  height: 54px;
  background:
    repeating-linear-gradient(135deg, rgba(22, 50, 63, 0.06) 0 7px, transparent 7px 14px),
    var(--paper);
}

.elitek-pbody { padding: 7px 9px 9px; }

.elitek-pline {
  display: block;
  height: 5px;
  width: 78%;
  border-radius: 3px;
  background: var(--line);
}

.elitek-prow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.elitek-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}

.elitek-plus {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

/* Floating metric cards */
.elitek-revcard {
  position: absolute;
  bottom: 14px;
  left: -54px;
  z-index: 6;
  width: 200px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 26px 58px -22px rgba(22, 50, 63, 0.42);
  animation: elitek-float2 6.5s ease-in-out infinite .3s;
}

.elitek-rev-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.elitek-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2BB985;
  animation: elitek-pulse 1.8s ease-in-out infinite;
}

.elitek-rev-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.elitek-rev-row {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.elitek-rev-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.elitek-rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: color-mix(in srgb, #2BB985 14%, #fff);
  color: #1B7F5C;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  margin-bottom: 2px;
}

.elitek-bars {
  margin-top: 13px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.elitek-bars span {
  flex: 1;
  min-height: 4px;
  border-radius: 3px 3px 0 0;
  background: rgba(60, 111, 143, 0.24);
  transition: height .85s cubic-bezier(.4, 0, .2, 1);
}

.elitek-bars span.is-hot { background: var(--brand); }

.elitek-convchip {
  position: absolute;
  top: -14px;
  right: -12px;
  z-index: 6;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px 14px;
  box-shadow: 0 16px 34px -16px rgba(22, 50, 63, 0.34);
  animation: elitek-float2 6s ease-in-out infinite;
}

.elitek-conv-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.elitek-conv-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.elitek-conv-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  line-height: 1;
}

.elitek-conv-delta {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1B7F5C;
}

.elitek-toast {
  position: absolute;
  top: 74px;
  left: -62px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 26px 58px -22px rgba(22, 50, 63, 0.42);
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), opacity .45s ease;
}

.elitek-toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.elitek-toast-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #2BB985, #1B7F5C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 9px 18px -6px rgba(43, 185, 133, 0.55);
  flex-shrink: 0;
}

.elitek-toast-amt {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1;
}

.elitek-toast-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

.elitek-builton {
  position: absolute;
  bottom: -26px;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px -18px rgba(22, 50, 63, 0.32);
  white-space: nowrap;
}

.elitek-builton-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.elitek-builton-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.elitek-builton-item svg { display: block; flex-shrink: 0; }

.elitek-builton-sep {
  width: 1px;
  height: 22px;
  background: var(--line);
}

/* ============================================================
   6. Services
   ============================================================ */

.elitek-services {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.elitek-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 22px;
}

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

.elitek-svc-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.26);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

/* Whole-card hit area, as on the legacy homepage. Only rendered when the row
   has a `services_link`; links inside the copy are lifted back above it. */
.elitek-svc-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 18px;
}

.elitek-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.elitek-svc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.elitek-svc-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand) 12%, var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elitek-svc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--brand);
}

.elitek-svc-card h3 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
}

.elitek-svc-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: -4px 0 14px;
}

.elitek-svc-card p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
}

/* `services_description` is a WYSIWYG, so the editor's own markup has to land
   on the design. Trim the outer margins and give any list the arrow bullets. */
.elitek-svc-desc > *:first-child { margin-top: 0; }
.elitek-svc-desc > *:last-child { margin-bottom: 0; }

.elitek-svc-desc a {
  position: relative;
  z-index: 2;
  color: var(--brand);
}

.elitek-svc-list,
.elitek-svc-desc ul,
.elitek-svc-desc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.elitek-svc-list li,
.elitek-svc-desc li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}

.elitek-svc-list li::before,
.elitek-svc-desc li::before {
  content: "\2192";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   7. Platforms
   ============================================================ */

.elitek-platforms {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand) 16%, #ffffff) 0%,
    color-mix(in srgb, var(--brand) 26%, #ffffff) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.elitek-plat-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.elitek-plat-orb-1 {
  position: absolute;
  top: -70px;
  left: -50px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFB078, #EC6325);
  filter: blur(95px);
  opacity: 0.3;
  animation: elitek-drift 16s ease-in-out infinite;
}

.elitek-plat-orb-2 {
  position: absolute;
  bottom: -90px;
  right: -40px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #6FC0FF, #189EFF);
  filter: blur(105px);
  opacity: 0.32;
  animation: elitek-drift2 19s ease-in-out infinite;
}

.elitek-plat-orb-3 {
  position: absolute;
  top: 28%;
  left: 42%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand), transparent 70%);
  filter: blur(90px);
  opacity: 0.24;
  animation: elitek-drift 22s ease-in-out infinite 1.5s;
}

.elitek-platforms .elitek-wrap {
  position: relative;
  z-index: 1;
}

.elitek-plat-wrap { position: relative; }

.elitek-plat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.elitek-plat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px;
  transition: transform .2s, box-shadow .2s;
}

.elitek-plat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 64px -36px rgba(22, 50, 63, 0.32);
}

.elitek-plat-card--m { border-top: 3px solid var(--magento); }
.elitek-plat-card--s { border-top: 3px solid var(--shopware); }

.elitek-plat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.elitek-plat-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elitek-plat-card--m .elitek-plat-ico {
  background: color-mix(in srgb, var(--magento) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--magento) 22%, #fff);
}

.elitek-plat-card--s .elitek-plat-ico {
  background: color-mix(in srgb, var(--shopware) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--shopware) 22%, #fff);
}

.elitek-plat-ico svg { display: block; }

.elitek-plat-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.elitek-plat-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 7px;
}

/* `platform_subtitle` is editor content, so a wrapping <p> from the WYSIWYG
   must not add margins on top of the block's own. */
.elitek-plat-desc {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--muted);
}

.elitek-plat-desc > *:first-child { margin-top: 0; }
.elitek-plat-desc > *:last-child { margin-bottom: 0; }

/* `platform_bullets` normally supplies .elitek-plat-row divs; the li variants
   below let a plain WYSIWYG list land on the same design. */
.elitek-plat-rows ul,
.elitek-plat-rows ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elitek-plat-row,
.elitek-plat-rows li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}

.elitek-plat-row:last-child,
.elitek-plat-rows li:last-child { border-bottom: 1px solid var(--line); }

.elitek-plat-row::before,
.elitek-plat-rows li::before {
  content: "\2192";
  font-weight: 700;
  flex-shrink: 0;
}

.elitek-plat-card--m .elitek-plat-row::before,
.elitek-plat-card--m .elitek-plat-rows li::before { color: var(--magento); }

.elitek-plat-card--s .elitek-plat-row::before,
.elitek-plat-card--s .elitek-plat-rows li::before { color: var(--shopware); }

.elitek-plat-cta {
  display: inline-block;
  margin-top: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding-bottom: 3px;
}

.elitek-plat-card--m .elitek-plat-cta { border-bottom: 2px solid var(--magento); }
.elitek-plat-card--s .elitek-plat-cta { border-bottom: 2px solid var(--shopware); }

.elitek-plat-nav {
  display: none;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.elitek-plat-foot {
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
}

.elitek-plat-foot .elitek-link {
  color: var(--brand);
  font-size: inherit;
  font-weight: 600;
  padding-bottom: 2px;
}

@media (max-width: 767px) {
  .elitek-plat-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .elitek-plat-grid::-webkit-scrollbar { display: none; }
  .elitek-plat-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 30px;
  }
  .elitek-plat-nav { display: flex; }
}

/* ============================================================
   8. Selected work
   ============================================================ */

.elitek-work { background: var(--paper); }

.elitek-proj {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.elitek-proj:last-child { margin-bottom: 0; }

.elitek-projimg {
  display: flex;
  height: 380px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: 24px 34px 34px;
  flex-direction: column;
  box-shadow: 0 26px 54px -32px rgba(22, 50, 63, 0.28);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease;
}

.elitek-projimg:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 72px -34px rgba(22, 50, 63, 0.42);
}

/* Every other project flips the image to the right column. */
.elitek-proj--flip .elitek-projimg { order: 2; }
.elitek-proj--flip .elitek-proj-body { order: 1; }

.elitek-proj-logo {
  height: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.elitek-proj-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.elitek-proj-shot {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elitek-proj-shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.elitek-proj-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.elitek-proj-h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.elitek-projtitle {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}

.elitek-projtitle:hover { color: var(--magento) !important; }

.elitek-proj-cta {
  display: inline-block;
  margin-top: 26px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .elitek-proj {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .elitek-proj .elitek-projimg {
    order: 0 !important;
    height: 260px;
  }
  .elitek-proj .elitek-proj-body {
    order: 1 !important;
    display: flex;
    flex-direction: column;
  }
  .elitek-proj-h3 { order: 1; font-size: 18px; }
  .elitek-proj-meta {
    order: 2;
    margin-top: 14px;
    margin-bottom: 0;
  }
  .elitek-proj-cta { order: 3; align-self: center; }
}

/* ============================================================
   9. Stats band
   ============================================================ */

.elitek-stats {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--brand) 88%, #ffffff) 0%,
    var(--brand) 55%,
    var(--brand-d) 100%);
  color: #fff;
}

.elitek-stats-h2 {
  margin: 0 0 56px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.elitek-stats-h2 .elitek-accent { color: rgba(255, 255, 255, 0.55); }

.elitek-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.elitek-stat {
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.elitek-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.elitek-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 18px;
}

.elitek-stat-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5px;
}

/* ============================================================
   10. Blog
   ============================================================ */

.elitek-blog {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.elitek-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px;
}

.elitek-blogcard {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.26);
  transition: transform .2s, box-shadow .2s;
}

.elitek-blogcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
}

.elitek-blogthumb {
  height: 204px;
  overflow: hidden;
}

.elitek-blogthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elitek-blogbody {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.elitek-blogcard h3 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.22;
}

.elitek-blogcard p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.elitek-blogmore {
  margin-top: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
}

.elitek-blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.elitek-blog-cta .elitek-btn { height: 54px; padding: 0 32px; }

/* ============================================================
   11. Contact
   ============================================================ */

.elitek-contact {
  background: linear-gradient(180deg, var(--paper) 0%, color-mix(in srgb, var(--brand) 9%, var(--paper)) 100%);
  border-top: 1px solid var(--line);
}

.elitek-contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.elitek-contact-h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.elitek-contact-p {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  max-width: 42ch;
}

.elitek-contact-people {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.elitek-faces {
  width: 178px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 32px rgba(22, 50, 63, 0.2));
}

.elitek-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.elitek-cd-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.elitek-cd-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 3px;
}

.elitek-contact-region {
  display: block;
  margin-top: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.elitek-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 30px 64px -34px rgba(22, 50, 63, 0.28);
}

.elitek-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Direct children only — the two fields inside .elitek-form-row are laid
   out by the grid and must not pick up the stacking margin. */
.elitek-form > .elitek-field + .elitek-field,
.elitek-form > .elitek-form-row + .elitek-field { margin-top: 22px; }

.elitek-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.elitek-input,
.elitek-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .18s;
}

.elitek-textarea { resize: vertical; }

.elitek-input:focus,
.elitek-textarea:focus { border-color: var(--brand); }

.elitek-submit {
  margin-top: 24px;
  width: 100%;
  height: 52px;
  justify-content: center;
  padding: 0;
}

.elitek-form-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.elitek-form-msg {
  margin: 0 0 22px;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}

.elitek-form-msg.is-ok {
  background: color-mix(in srgb, #2BB985 12%, var(--card));
  border: 1px solid color-mix(in srgb, #2BB985 34%, var(--card));
  color: #1B7F5C;
}

.elitek-form-msg.is-err {
  background: color-mix(in srgb, #D8442F 10%, var(--card));
  border: 1px solid color-mix(in srgb, #D8442F 32%, var(--card));
  color: #9C2A1B;
}

@media (max-width: 767px) {
  .elitek-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .elitek-contact-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .elitek-contact-intro .elitek-contact-p {
    margin-left: auto;
    margin-right: auto;
  }

  .elitek-form-row { grid-template-columns: 1fr; }
}

/* ---- Contact Form 7 --------------------------------------------
   Styled against the live form's markup:

     form > fieldset.hidden-fields-container   (hidden inputs)
     form > .container > .row > .field > p > label + .wpcf7-form-control-wrap > input
     form > p > input.wpcf7-submit + .wpcf7-spinner
     form > .wpcf7-response-output

   `.container` / `.row` / `.field` are generic names that come from the CF7
   form template, so every rule stays scoped to .elitek-form.
   Rows are a 2-up grid: the first row's four fields become 2x2, and a row
   holding a single field (the message) spans the full width. */

.elitek-form .wpcf7 { margin: 0; }

/* The fieldset only carries hidden inputs — its default border and padding
   would otherwise draw an empty box at the top of the card. */
.elitek-form .hidden-fields-container {
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}

.elitek-form .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.elitek-form .wpcf7-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.elitek-form .wpcf7-form .row + .row { margin-top: 22px; }

/* A lone field (the message) takes the whole width. */
.elitek-form .wpcf7-form .field:only-child { grid-column: 1 / -1; }

/* Spacing is owned by the grid gap, not by the CF7 paragraphs. */
.elitek-form .wpcf7-form .field p { margin: 0; }

.elitek-form .wpcf7-form label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.elitek-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 9px;
}

.elitek-form .wpcf7-form input[type="text"],
.elitek-form .wpcf7-form input[type="email"],
.elitek-form .wpcf7-form input[type="tel"],
.elitek-form .wpcf7-form input[type="url"],
.elitek-form .wpcf7-form input[type="number"],
.elitek-form .wpcf7-form input[type="date"],
.elitek-form .wpcf7-form select,
.elitek-form .wpcf7-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .18s;
}

/* The template asks for rows="10"; the design's box is nearer three lines. */
.elitek-form .wpcf7-form textarea {
  height: 116px;
  min-height: 116px;
  resize: vertical;
  display: block;
}

.elitek-form .wpcf7-form input:focus,
.elitek-form .wpcf7-form select:focus,
.elitek-form .wpcf7-form textarea:focus { border-color: var(--brand); }

/* Submit row — the pill from .elitek-btn. The spinner is overlaid inside the
   button's right edge instead of sitting next to it: CF7 keeps the spinner in
   the layout at all times (visibility, not display), which would otherwise
   shorten the button by ~36px against the design. */
.elitek-form .wpcf7-form > p {
  position: relative;
  margin: 24px 0 0;
}

.elitek-form .wpcf7-form input[type="submit"] {
  width: 100%;
  height: 52px;
  padding: 0 28px;
  background: var(--brand);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .18s, transform .18s;
}

.elitek-form .wpcf7-form input[type="submit"]:hover {
  background: #212121;
  transform: translateY(-2px);
}

.elitek-form .wpcf7-form input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.elitek-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  margin: 0;
}

/* Validation + response messages, matching .elitek-form-msg. */
.elitek-form .wpcf7-not-valid { border-color: #D8442F !important; }

.elitek-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
  color: #9C2A1B;
}

/* Empty before a submit attempt. CF7's own stylesheet hides it in these
   states, but don't depend on that being enqueued or winning the cascade —
   otherwise an empty bordered box sits under the button. */
.elitek-form .wpcf7-form.init .wpcf7-response-output,
.elitek-form .wpcf7-form.resetting .wpcf7-response-output,
.elitek-form .wpcf7-form.submitting .wpcf7-response-output { display: none; }

.elitek-form .wpcf7-response-output {
  margin: 22px 0 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}

.elitek-form .wpcf7-form.sent .wpcf7-response-output {
  background: color-mix(in srgb, #2BB985 12%, var(--card));
  border-color: color-mix(in srgb, #2BB985 34%, var(--card));
  color: #1B7F5C;
}

.elitek-form .wpcf7-form.invalid .wpcf7-response-output,
.elitek-form .wpcf7-form.failed .wpcf7-response-output,
.elitek-form .wpcf7-form.aborted .wpcf7-response-output {
  background: color-mix(in srgb, #D8442F 10%, var(--card));
  border-color: color-mix(in srgb, #D8442F 32%, var(--card));
  color: #9C2A1B;
}

/* Consent / choice fields opt back out of the uppercase micro-label. */
.elitek-form .wpcf7-acceptance label,
.elitek-form .wpcf7-checkbox label,
.elitek-form .wpcf7-radio label {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.elitek-form .wpcf7-acceptance input[type="checkbox"],
.elitek-form .wpcf7-checkbox input[type="checkbox"],
.elitek-form .wpcf7-radio input[type="radio"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.elitek-form .wpcf7-list-item { margin: 0; }
.elitek-form .wpcf7-form a { color: var(--brand); }

@media (max-width: 767px) {
  .elitek-form .wpcf7-form .row { grid-template-columns: 1fr; }
}

/* ============================================================
   12. Footer
   ============================================================ */

.elitek-foot {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--brand) 88%, #ffffff) 0%,
    var(--brand) 55%,
    var(--brand-d) 100%);
  color: #fff;
}

.elitek-foot-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--foot-yt) var(--pad) var(--foot-yb);
}

/* One compact row: mark, inline menu, CTA. Wraps rather than stacking, so the
   footer stays shallow at every width. */
.elitek-foot-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px 40px;
}

.elitek-foot-logo {
  color: #fff;
  flex-shrink: 0;
}

.elitek-foot-logo svg { height: 32px; width: auto; display: block; }

.elitek-foot-nav { flex: 1 1 auto; }

.elitek-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

.elitek-foot-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .16s;
}

.elitek-foot-links a:hover { color: #fff; }

/* Inverse pill — the brand blue is already the background here. */
.elitek-foot-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: var(--brand-d);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  transition: background .18s, color .18s, transform .18s;
}

.elitek-foot-cta:hover {
  background: #212121;
  color: #fff;
  transform: translateY(-2px);
}

.elitek-foot-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .elitek-foot-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .elitek-foot-logo { align-self: flex-start; }

  .elitek-foot-links {
    justify-content: flex-start;
    gap: 10px 24px;
  }

  .elitek-foot-cta {
    justify-content: center;
    width: 100%;
    height: 50px;
  }

  .elitek-foot-bottom { margin-top: 24px; }
}

/* ============================================================
   13. Generic mobile sliders (stats + blog)
   ============================================================ */

.elitek-slider-nav { display: none; }

@media (max-width: 767px) {
  .elitek-slider {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .elitek-slider::-webkit-scrollbar { display: none; }

  .elitek-slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .elitek-slider-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
  }

  .elitek-stats .elitek-slide {
    text-align: center;
    border-left: none !important;
    padding: 0 16px !important;
  }

  .elitek-stats .elitek-slider::before,
  .elitek-stats .elitek-slider::after {
    content: "";
    flex: 0 0 10%;
  }
}

/* ============================================================
   14. Services v4 (services-v4.php)

   Reuses the shared primitives — .elitek-hero, .elitek-eyebrow,
   .elitek-h2, .elitek-slider/.elitek-slide, .elitek-navbtn — and adds
   only what the Services design introduces on top.
   ============================================================ */

/* ---- Hero -------------------------------------------------- */

.elitek-svc-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 44px var(--pad) 56px;
}

.elitek-svc-hero-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.elitek-svc-hero-h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 15ch;
}

.elitek-svc-hero-p {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.4vw + 0.5rem, 18px);
  line-height: 1.62;
  color: var(--ink);
  max-width: 52ch;
}

/* The hero's "What we build" panel */
.elitek-svc-panel {
  position: relative;
  z-index: 2;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 34px 80px -34px rgba(22, 50, 63, 0.4);
  overflow: hidden;
  animation: elitek-float 7s ease-in-out infinite;
}

.elitek-svc-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.elitek-svc-panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.elitek-svc-panel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.elitek-svc-panel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.elitek-svc-panel-dots span:first-child { background: var(--magento); }
.elitek-svc-panel-dots span:last-child { background: var(--shopware); }

.elitek-svc-panel-body { padding: 12px 20px 20px; }

.elitek-svc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
}

.elitek-svc-row:last-child { border-bottom: none; }

/* Ticks light up one at a time — see startChecklist() in elitek-v4.js. */
.elitek-check-tile {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  color: transparent;
  transform: scale(0.9);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}

.elitek-check-tile.on {
  background: var(--brand);
  color: #fff;
  transform: scale(1);
}

/* "Built on" chip, centred under the panel */
.elitek-svc-builton {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 15px;
  box-shadow: 0 18px 40px -18px rgba(22, 50, 63, 0.32);
  white-space: nowrap;
  animation: elitek-float2 6s ease-in-out infinite;
}

.elitek-svc-builton .elitek-builton-item { gap: 6px; font-size: 13px; }
.elitek-svc-builton .elitek-builton-sep { height: 20px; }

@media (max-width: 1150px) {
  .elitek-svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    justify-items: center;
  }
  .elitek-svc-hero-grid .elitek-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .elitek-svc-hero-grid .elitek-svc-hero-h1,
  .elitek-svc-hero-grid .elitek-svc-hero-p {
    margin-left: auto;
    margin-right: auto;
  }
  .elitek-svc-hero-grid .elitek-hero-graphic {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---- Shared icon tile -------------------------------------- */

.elitek-tile {
  border-radius: 15px;
  background: linear-gradient(140deg,
    color-mix(in srgb, var(--brand) 16%, #fff),
    color-mix(in srgb, var(--brand) 6%, #fff));
  border: 1px solid color-mix(in srgb, var(--brand) 18%, #fff);
  box-shadow: 0 12px 26px -16px rgba(60, 111, 143, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  overflow: hidden;
}

.elitek-tile img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  display: block;
}

.elitek-tile--lg {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 14px 30px -18px rgba(60, 111, 143, 0.5);
}

.elitek-tile--md { width: 56px; height: 56px; }
.elitek-tile--sm { width: 52px; height: 52px; border-radius: 14px; }

/* ---- Services list ---------------------------------------- */

.elitek-svc-list-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--sec-y) var(--pad) calc(var(--sec-y) * 0.5);
}

.elitek-svc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}

.elitek-svc-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.26);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.elitek-svc-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.elitek-svc-item-ico { margin-bottom: 22px; }

.elitek-svc-item h3 {
  margin: 0 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.elitek-svc-item-sub {
  margin: -6px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

/* `service_description` is editor content: paragraphs get the design's body
   size, and any list becomes the arrow list from the mock. */
.elitek-svc-item-body p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}

.elitek-svc-item-body > *:last-child { margin-bottom: 0; }

.elitek-svc-item-body ul,
.elitek-svc-item-body ol {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.elitek-svc-item-body li {
  display: flex;
  gap: 12px;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
}

.elitek-svc-item-body li::before {
  content: "\2192";
  color: var(--brand);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  flex-shrink: 0;
}

/* Highlighted "not sure where to start" card */
.elitek-svc-cta {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: color-mix(in srgb, var(--brand) 22%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 34%, #fff);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.28);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.elitek-svc-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
}

.elitek-svc-cta-blob {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(60, 111, 143, 0.1);
}

.elitek-svc-cta .elitek-tile {
  background: #fff;
  border-color: color-mix(in srgb, var(--brand) 22%, #fff);
  box-shadow: none;
}

.elitek-svc-cta h3 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
  color: var(--brand-dd);
}

.elitek-svc-cta p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--brand-d);
}

.elitek-svc-cta .elitek-card-cta { color: var(--brand-dd); }

.elitek-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--brand);
}

@media (max-width: 860px) {
  .elitek-svc-cards { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .elitek-svc-item { padding: 28px; }
  .elitek-svc-cta { padding: 28px; }
  .elitek-svc-item-body p { font-size: 16px; }
}

/* ---- Audience split --------------------------------------- */

.elitek-aud-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.elitek-aud-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.26);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.elitek-aud-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
}

.elitek-aud-card--b2b { border-top-color: var(--brand-dd); }

.elitek-aud-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.elitek-aud-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 24%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.elitek-aud-card--b2b .elitek-aud-ico {
  background: color-mix(in srgb, var(--brand-dd) 12%, #fff);
  border-color: color-mix(in srgb, var(--brand-dd) 24%, #fff);
  color: var(--brand-dd);
}

.elitek-aud-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}

.elitek-aud-kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 7px;
}

.elitek-aud-card--b2b .elitek-aud-kicker { color: var(--brand-dd); }

.elitek-aud-p {
  margin: 0 0 8px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--muted);
}

.elitek-aud-rows { margin-top: auto; }

.elitek-aud-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}

.elitek-aud-row::before {
  content: "\2192";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.elitek-aud-row-t {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}

.elitek-aud-row-d {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 900px) and (min-width: 768px) {
  .elitek-aud-boxes { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .elitek-aud-card { padding: 28px; }
}

/* ---- Platforms note --------------------------------------- */

.elitek-platnote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.elitek-platnote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.elitek-platnote-card--m { border-top: 3px solid var(--magento); }
.elitek-platnote-card--s { border-top: 3px solid var(--shopware); }

.elitek-platnote-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.elitek-platnote-card--m .elitek-platnote-ico {
  background: color-mix(in srgb, var(--magento) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--magento) 22%, #fff);
}

.elitek-platnote-card--s .elitek-platnote-ico {
  background: color-mix(in srgb, var(--shopware) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--shopware) 22%, #fff);
}

.elitek-platnote-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.elitek-platnote-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- Lead paragraph used by the wider sections ------------- */

.elitek-lead-wide {
  margin: 0 0 40px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  max-width: 60ch;
}

/* ---- Extra services + security cards ---------------------- */

.elitek-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.elitek-sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.elitek-mini-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 22px 48px -30px rgba(22, 50, 63, 0.26);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.elitek-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 64px -32px rgba(22, 50, 63, 0.36);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.elitek-mini-card .elitek-tile { margin-bottom: 20px; }
.elitek-sec-grid .elitek-mini-card .elitek-tile { margin-bottom: 18px; }

.elitek-mini-card h3 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
}

.elitek-mini-card p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
}

.elitek-sec-grid .elitek-mini-card p { margin-bottom: 0; }

@media (max-width: 767px) {
  .elitek-svc-hero-inner { padding-top: 28px; padding-bottom: 48px; }
  .elitek-root .elitek-lead-wide { margin-bottom: 30px; }
}
