/* seoeclipse.com -- style.css */
/* Design: Navy #0D1B35 + Indigo #5B4CF5 + Mint #2EFFA6 */
/* CSS prefix: ecl-  |  Space Grotesk (headings) + DM Sans (body) */
/* Navigation: FLOATING PILL NAV -- centered glassmorphism pill */
/* Hero: BENTO GRID -- headline left + stat cards right */
/* Completely unique from all previous builds */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ecl-navy:  #0D1B35;
  --ecl-nv2:   #162040;
  --ecl-nv3:   #1E2B4A;
  --ecl-nv4:   #263558;
  --ecl-ind:   #5B4CF5;
  --ecl-ind2:  #4A3BE0;
  --ecl-ind3:  rgba(91,76,245,.12);
  --ecl-ind4:  rgba(91,76,245,.22);
  --ecl-mint:  #2EFFA6;
  --ecl-mint2: #1FCC84;
  --ecl-white: #FFFFFF;
  --ecl-off:   #F0EEFF;
  --ecl-cloud: #E8E4FF;
  --ecl-stone: #8A86AE;
  --ecl-rule:  rgba(91,76,245,.18);
  --ecl-rinv:  rgba(255,255,255,.07);

  --ecl-fh: 'Space Grotesk', system-ui, sans-serif;
  --ecl-fb: 'DM Sans', system-ui, sans-serif;

  --ecl-r:   6px;
  --ecl-rmd: 12px;
  --ecl-rlg: 18px;
  --ecl-rxl: 24px;
  --ecl-rxx: 36px;

  --ecl-max:  1180px;
  --ecl-ease: 0.22s cubic-bezier(.4,0,.2,1);
  --ecl-sh:   0 8px 40px rgba(0,0,0,.28);
  --ecl-shi:  0 4px 24px rgba(91,76,245,.35);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ecl-fb); font-size: 1rem; line-height: 1.7; color: var(--ecl-navy); background: var(--ecl-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── FLOATING PILL NAV (completely unique) ──────────────── */
.ecl-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 920px;
  z-index: 900;
}
.ecl-pill-wrap {
  background: rgba(13,27,53,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(91,76,245,.28);
  border-radius: 100px;
  padding: .5rem .5rem .5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  transition: background var(--ecl-ease), box-shadow var(--ecl-ease), border-color var(--ecl-ease);
}
.ecl-nav.ecl-nav-solid .ecl-pill-wrap {
  background: rgba(9,18,34,.97);
  box-shadow: var(--ecl-sh);
  border-color: rgba(91,76,245,.4);
}
/* Brand inside pill */
.ecl-pill-brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-right: .75rem; }
.ecl-pill-mark { width: 28px; height: 28px; border-radius: 50%; background: var(--ecl-ind); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ecl-pill-mark svg { width: 12px; height: 12px; color: #fff; }
.ecl-pill-logo { font-family: var(--ecl-fh); font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: -.025em; }
.ecl-pill-logo em { color: var(--ecl-mint); font-style: normal; }
/* Links inside pill */
.ecl-pill-links { display: flex; align-items: center; flex: 1; }
.ecl-pill-a {
  font-family: var(--ecl-fh); font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.42); padding: .42rem .78rem; border-radius: 100px;
  transition: var(--ecl-ease); white-space: nowrap; letter-spacing: -.01em;
}
.ecl-pill-a:hover, .ecl-pill-a.ecl-on { color: rgba(255,255,255,.9); background: rgba(91,76,245,.18); }
/* Right side of pill */
.ecl-pill-end { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.ecl-pill-lang { display: flex; gap: .15rem; }
.ecl-pill-lang a { font-family: var(--ecl-fh); font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .18rem .45rem; border-radius: 100px; color: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.1); transition: var(--ecl-ease); }
.ecl-pill-lang a.ecl-lng, .ecl-pill-lang a:hover { color: var(--ecl-mint); border-color: rgba(46,255,166,.3); background: rgba(46,255,166,.08); }
.ecl-pill-cta { font-family: var(--ecl-fh); font-size: .82rem; font-weight: 700; padding: .52rem 1.2rem; background: var(--ecl-ind); color: #fff; border-radius: 100px; transition: var(--ecl-ease); white-space: nowrap; letter-spacing: -.01em; }
.ecl-pill-cta:hover { background: var(--ecl-ind2); box-shadow: var(--ecl-shi); }
/* Mobile toggle */
.ecl-mob-tog { display: none; align-items: center; justify-content: center; width: 34px; height: 34px; color: rgba(255,255,255,.6); flex-shrink: 0; }
.ecl-mob-tog svg { width: 18px; height: 18px; }
/* Mobile drawer */
.ecl-mob-drawer { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ecl-navy); z-index: 850; padding: 5rem 2rem 2rem; overflow-y: auto; }
.ecl-mob-drawer.ecl-open { display: block; }
.ecl-mob-lnk { display: block; font-family: var(--ecl-fh); font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,.35); padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color var(--ecl-ease); }
.ecl-mob-lnk:hover { color: var(--ecl-mint); }

/* ── SHELL ───────────────────────────────────────────────── */
.ecl-shell { max-width: var(--ecl-max); margin: 0 auto; padding: 0 2.5rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ecl-fh); }
h1 { font-size: clamp(3rem, 5vw, 6rem); font-weight: 700; line-height: 1.0; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 700; line-height: 1.07; letter-spacing: -.03em; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--ecl-stone); line-height: 1.72; }

.ecl-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .75rem; border-radius: 100px;
  border: 1px solid rgba(46,255,166,.3); color: var(--ecl-mint); background: rgba(46,255,166,.08);
}
.ecl-badge-ind { color: var(--ecl-ind); background: var(--ecl-ind3); border-color: var(--ecl-ind4); }
.ecl-badge-wh { color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }

/* ── BUTTONS ────────────────────────────────────────────── */
.ecl-btn-ind, .ecl-btn-wh, .ecl-btn-out, .ecl-btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ecl-fh); font-size: .88rem; font-weight: 700;
  padding: .78rem 2rem; border-radius: 100px; cursor: pointer;
  transition: var(--ecl-ease); white-space: nowrap; letter-spacing: -.01em;
}
.ecl-btn-ind { background: var(--ecl-ind); color: #fff; border: 2px solid var(--ecl-ind); }
.ecl-btn-ind:hover { background: var(--ecl-ind2); transform: translateY(-2px); box-shadow: var(--ecl-shi); }
.ecl-btn-wh { background: #fff; color: var(--ecl-navy); border: 2px solid #fff; }
.ecl-btn-wh:hover { background: var(--ecl-cloud); transform: translateY(-2px); }
.ecl-btn-out { background: transparent; color: var(--ecl-navy); border: 2px solid rgba(13,27,53,.2); }
.ecl-btn-out:hover { border-color: var(--ecl-ind); color: var(--ecl-ind); transform: translateY(-2px); }
.ecl-btn-ghost { background: transparent; color: rgba(255,255,255,.5); border: 2px solid rgba(255,255,255,.15); }
.ecl-btn-ghost:hover { border-color: rgba(255,255,255,.4); color: #fff; transform: translateY(-2px); }

/* ── BENTO HERO ─────────────────────────────────────────── */
.ecl-hero-zone {
  background: var(--ecl-navy);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
/* Shell inside hero spans full width; its own inline grid splits copy + bento */
.ecl-hero-zone > .ecl-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  min-height: 100vh;
}
/* Radial glow behind hero */
.ecl-hero-zone::before {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(91,76,245,.22) 0%, transparent 70%);
  top: -10%; left: -10%;
  pointer-events: none;
}
.ecl-hero-copy {
  padding: 9rem 3rem 5rem 0;
  position: relative; z-index: 1;
}
.ecl-hero-copy h1 { color: #fff; margin: 1rem 0 1.25rem; }
.ecl-hero-copy h1 em { color: var(--ecl-mint); font-style: normal; }
.ecl-hero-sub { color: rgba(255,255,255,.38); max-width: 44ch; margin-bottom: 2.5rem; font-size: 1rem; font-family: var(--ecl-fb); }
.ecl-hero-acts { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.ecl-hero-trust { display: flex; align-items: center; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.ecl-hero-trust-item { font-family: var(--ecl-fh); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.18); }
.ecl-hero-trust-n { font-size: 1.4rem; font-weight: 700; color: var(--ecl-mint); line-height: 1; letter-spacing: -.03em; margin-bottom: .12rem; }

/* Bento grid (right side) */
.ecl-bento-side { padding: 8rem 0 5rem 2.5rem; position: relative; z-index: 1; }
.ecl-bento { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: .85rem; }
.ecl-bn { border-radius: var(--ecl-rlg); padding: 1.5rem; position: relative; overflow: hidden; }
/* Big stat card */
.ecl-bn-stat { background: var(--ecl-ind); grid-column: 1; grid-row: 1; }
.ecl-bn-stat-n { font-family: var(--ecl-fh); font-size: 3.5rem; font-weight: 700; color: #fff; letter-spacing: -.04em; line-height: 1; }
.ecl-bn-stat-l { font-family: var(--ecl-fh); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-top: .25rem; }
/* Service list card */
.ecl-bn-list { background: var(--ecl-nv3); grid-column: 2; grid-row: 1; }
.ecl-bn-list-item { font-family: var(--ecl-fh); font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5); padding: .28rem 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: .4rem; }
.ecl-bn-list-item:last-child { border-bottom: none; }
.ecl-bn-list-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ecl-mint); flex-shrink: 0; }
/* Wide trend card */
.ecl-bn-trend { background: var(--ecl-nv2); grid-column: 1 / 3; grid-row: 2; display: flex; align-items: center; gap: 1.25rem; }
.ecl-bn-trend-lbl { font-family: var(--ecl-fh); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); white-space: nowrap; }
.ecl-bn-trend-bars { display: flex; align-items: flex-end; gap: 4px; flex: 1; height: 44px; }
.ecl-bn-bar { border-radius: 3px 3px 0 0; background: rgba(91,76,245,.3); flex: 1; transition: background .3s; }
.ecl-bn-bar:nth-child(1) { height: 35%; }
.ecl-bn-bar:nth-child(2) { height: 48%; }
.ecl-bn-bar:nth-child(3) { height: 40%; }
.ecl-bn-bar:nth-child(4) { height: 58%; }
.ecl-bn-bar:nth-child(5) { height: 52%; }
.ecl-bn-bar:nth-child(6) { height: 75%; background: rgba(91,76,245,.6); }
.ecl-bn-bar:nth-child(7) { height: 88%; background: var(--ecl-ind); }
.ecl-bn-bar:nth-child(8) { height: 100%; background: var(--ecl-mint); }
.ecl-bn-trend-pc { font-family: var(--ecl-fh); font-size: 1.6rem; font-weight: 700; color: var(--ecl-mint); letter-spacing: -.03em; white-space: nowrap; }
/* Location card */
.ecl-bn-loc { background: var(--ecl-nv3); grid-column: 1; grid-row: 3; display: flex; align-items: center; gap: .65rem; }
.ecl-bn-loc-ico { width: 32px; height: 32px; border-radius: 50%; background: var(--ecl-ind3); border: 1px solid var(--ecl-ind4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ecl-bn-loc-ico svg { width: 14px; height: 14px; color: var(--ecl-ind); }
.ecl-bn-loc-t { font-family: var(--ecl-fh); font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); }
.ecl-bn-loc-s { font-family: var(--ecl-fb); font-size: .68rem; color: rgba(255,255,255,.22); }
/* Year founded card */
.ecl-bn-year { background: var(--ecl-mint); grid-column: 2; grid-row: 3; display: flex; flex-direction: column; justify-content: center; }
.ecl-bn-year-n { font-family: var(--ecl-fh); font-size: 2rem; font-weight: 700; color: var(--ecl-navy); letter-spacing: -.04em; line-height: 1; }
.ecl-bn-year-l { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(13,27,53,.4); margin-top: .18rem; }

/* ── TICKER MARQUEE ─────────────────────────────────────── */
.ecl-ticker-zone { background: var(--ecl-ind); overflow: hidden; padding: .9rem 0; }
.ecl-ticker-rail { display: flex; gap: 0; animation: eclTick 28s linear infinite; white-space: nowrap; }
.ecl-ticker-rail:hover { animation-play-state: paused; }
.ecl-ticker-seg { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; flex-shrink: 0; }
.ecl-tick-item { font-family: var(--ecl-fh); font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: .65rem; }
.ecl-tick-item b { color: #fff; }
.ecl-tick-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ecl-mint); flex-shrink: 0; }
@keyframes eclTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ────────────────────────────────────────────── */
.ecl-sect { padding: 7rem 0; }
.ecl-sect--sky { padding: 7rem 0; background: var(--ecl-off); }
.ecl-sect--dark { padding: 7rem 0; background: var(--ecl-navy); }
.ecl-sect--deep { padding: 7rem 0; background: #080F1E; }
.ecl-sect-hd { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 4rem; }
.ecl-sect-hd-r { max-width: 38ch; }

/* ── SERVICE TILES (hover slide-reveal) ─────────────────── */
.ecl-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ecl-svc-tile {
  border-radius: var(--ecl-rxl); overflow: hidden;
  aspect-ratio: 3/2; position: relative; cursor: pointer;
  background: var(--ecl-nv2); text-decoration: none; display: block;
}
.ecl-svc-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; transition: opacity .5s, transform .5s; }
.ecl-svc-tile:hover .ecl-svc-tile-img { opacity: .15; transform: scale(1.05); }
.ecl-svc-tile-base {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,27,53,.95) 60%, transparent);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.ecl-svc-tile-rev {
  position: absolute; inset: 0;
  background: rgba(91,76,245,.95);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ecl-svc-tile:hover .ecl-svc-tile-base { transform: translateY(100%); }
.ecl-svc-tile:hover .ecl-svc-tile-rev { transform: translateY(0); }
.ecl-svc-tile-cat { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ecl-mint); margin-bottom: .38rem; }
.ecl-svc-tile-nm { font-family: var(--ecl-fh); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .2rem; line-height: 1.25; }
.ecl-svc-tile-pr { font-family: var(--ecl-fh); font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.35); }
.ecl-svc-tile-rev .ecl-svc-tile-nm { margin-bottom: .6rem; font-size: 1.05rem; }
.ecl-svc-tile-desc { font-family: var(--ecl-fb); font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ecl-svc-tile-cta { font-family: var(--ecl-fh); font-size: .78rem; font-weight: 700; color: var(--ecl-mint); display: flex; align-items: center; gap: .3rem; }

/* ── FEATURED CASE STUDY CARD ─────────────────────────────── */
.ecl-feat-case { border-radius: var(--ecl-rxx); overflow: hidden; background: var(--ecl-nv2); display: grid; grid-template-columns: 1.2fr 1fr; position: relative; }
.ecl-feat-img { overflow: hidden; aspect-ratio: 4/3; }
.ecl-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.ecl-feat-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.ecl-feat-sector { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ecl-mint); margin-bottom: .65rem; }
.ecl-feat-h { font-family: var(--ecl-fh); font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: .85rem; letter-spacing: -.02em; }
.ecl-feat-p { font-family: var(--ecl-fb); font-size: .84rem; color: rgba(255,255,255,.35); line-height: 1.68; margin-bottom: 1.75rem; }
.ecl-feat-kpis { display: flex; gap: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.07); }
.ecl-fkpi-n { font-family: var(--ecl-fh); font-size: 1.8rem; font-weight: 700; color: var(--ecl-mint); line-height: 1; letter-spacing: -.03em; }
.ecl-fkpi-l { font-family: var(--ecl-fh); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.2); margin-top: .2rem; }

/* ── PROCESS TIMELINE (horizontal steps) ────────────────── */
.ecl-timeline { display: flex; margin-top: 4.5rem; position: relative; }
.ecl-timeline::after { content: ''; position: absolute; top: 22px; left: 2rem; right: 2rem; height: 1px; background: var(--ecl-rule); z-index: 0; }
.ecl-tl-step { flex: 1; padding: 0 1rem; position: relative; z-index: 1; text-align: center; }
.ecl-tl-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--ecl-nv3); border: 2px solid var(--ecl-ind4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--ecl-fh); font-size: .7rem; font-weight: 700; color: var(--ecl-ind); transition: var(--ecl-ease); }
.ecl-tl-step:hover .ecl-tl-dot { background: var(--ecl-ind); color: #fff; border-color: var(--ecl-ind); }
.ecl-tl-h { font-family: var(--ecl-fh); font-size: .9rem; font-weight: 700; color: var(--ecl-navy); margin-bottom: .45rem; }
.ecl-tl-p { font-family: var(--ecl-fb); font-size: .78rem; color: var(--ecl-stone); line-height: 1.6; }

/* ── STATS BAND ──────────────────────────────────────────── */
.ecl-stats-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ecl-rinv); border-bottom: 1px solid var(--ecl-rinv); margin-top: 5rem; }
.ecl-stat-cell { text-align: center; padding: 2.5rem 1rem; border-right: 1px solid var(--ecl-rinv); }
.ecl-stat-cell:last-child { border-right: none; }
.ecl-stat-n { font-family: var(--ecl-fh); font-size: 3rem; font-weight: 700; color: var(--ecl-mint); line-height: 1; letter-spacing: -.04em; margin-bottom: .22rem; }
.ecl-stat-l { font-family: var(--ecl-fh); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.18); }

/* ── TESTIMONIALS (magazine 2-col) ──────────────────────── */
.ecl-testi-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.25rem; margin-top: 4rem; }
.ecl-testi-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.ecl-tcard { background: var(--ecl-nv2); border-radius: var(--ecl-rxl); padding: 1.75rem; border: 1px solid var(--ecl-rinv); transition: border-color var(--ecl-ease); }
.ecl-tcard:hover { border-color: var(--ecl-ind4); }
.ecl-tcard-big { padding: 2.5rem; background: var(--ecl-ind); }
.ecl-tcard-big:hover { border-color: rgba(255,255,255,.2); }
.ecl-tcard-qt { font-family: var(--ecl-fh); font-size: 3rem; color: var(--ecl-mint); opacity: .25; line-height: .7; margin-bottom: .5rem; }
.ecl-tcard-big .ecl-tcard-qt { color: #fff; opacity: .2; }
.ecl-tcard-txt { font-family: var(--ecl-fb); font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.72; font-style: italic; margin-bottom: 1.25rem; }
.ecl-tcard-big .ecl-tcard-txt { font-size: .98rem; color: rgba(255,255,255,.7); }
.ecl-tcard-by { display: flex; align-items: center; gap: .55rem; border-top: 1px solid rgba(255,255,255,.07); padding-top: .85rem; }
.ecl-tav { width: 28px; height: 28px; border-radius: 50%; background: var(--ecl-nv3); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-family: var(--ecl-fh); font-size: .65rem; font-weight: 700; color: var(--ecl-mint); flex-shrink: 0; }
.ecl-tcard-big .ecl-tav { background: rgba(255,255,255,.12); color: #fff; }
.ecl-twho { font-family: var(--ecl-fh); font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.65); }
.ecl-torg { font-family: var(--ecl-fb); font-size: .68rem; color: rgba(255,255,255,.2); }
.ecl-tcity { font-family: var(--ecl-fh); font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ecl-mint); margin-left: auto; }
.ecl-tcard-big .ecl-tcity { color: rgba(255,255,255,.45); }

/* ── PRICING COMPARISON TABLE ────────────────────────────── */
.ecl-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 4.5rem; }
.ecl-ptile { border-radius: var(--ecl-rxl); padding: 2.25rem 2rem; border: 1.5px solid var(--ecl-rule); background: var(--ecl-nv2); position: relative; transition: border-color var(--ecl-ease); }
.ecl-ptile:hover { border-color: var(--ecl-ind4); }
.ecl-ptile-feat { background: var(--ecl-ind); border-color: transparent; transform: scale(1.03); box-shadow: var(--ecl-shi); }
.ecl-ptile-feat:hover { border-color: rgba(255,255,255,.2); }
.ecl-ptile-badge { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ecl-mint); background: rgba(46,255,166,.12); border: 1px solid rgba(46,255,166,.25); padding: .18rem .65rem; border-radius: 100px; display: inline-block; margin-bottom: 1rem; }
.ecl-ptile-name { font-family: var(--ecl-fh); font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: -.025em; margin-bottom: .35rem; }
.ecl-ptile-price { font-family: var(--ecl-fh); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.05em; margin-bottom: .18rem; }
.ecl-ptile-price span { font-size: 1.2rem; font-weight: 500; opacity: .4; }
.ecl-ptile-desc { font-family: var(--ecl-fb); font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.ecl-ptile-feats { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.75rem; }
.ecl-ptile-feat-row { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--ecl-fh); font-size: .82rem; color: rgba(255,255,255,.6); }
.ecl-ptile-feat-chk { color: var(--ecl-mint); flex-shrink: 0; font-size: .8rem; margin-top: .05rem; }
.ecl-ptile-cta { display: block; text-align: center; padding: .8rem; border-radius: 100px; font-family: var(--ecl-fh); font-size: .84rem; font-weight: 700; transition: var(--ecl-ease); }
.ecl-ptile-cta-ind { background: var(--ecl-ind); color: #fff; }
.ecl-ptile-cta-ind:hover { background: var(--ecl-ind2); }
.ecl-ptile-cta-wh { background: #fff; color: var(--ecl-navy); }
.ecl-ptile-cta-wh:hover { background: var(--ecl-cloud); }

/* ── FAQ (2-column clean accordion) ─────────────────────── */
.ecl-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; margin-top: 3.5rem; }
.ecl-faq-e { border-bottom: 1px solid rgba(13,27,53,.1); }
.ecl-faq-e:first-child, .ecl-faq-col:first-child .ecl-faq-e:first-child { border-top: 1px solid rgba(13,27,53,.1); }
.ecl-faq-col:last-child .ecl-faq-e { }
.ecl-faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.ecl-faq-qt { font-family: var(--ecl-fh); font-size: .9rem; font-weight: 700; color: var(--ecl-navy); line-height: 1.3; }
.ecl-faq-tog { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(13,27,53,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--ecl-ease); }
.ecl-faq-tog svg { width: 9px; height: 9px; transition: transform .22s; }
.ecl-faq-e.ecl-fq-on .ecl-faq-tog { background: var(--ecl-ind); border-color: var(--ecl-ind); }
.ecl-faq-e.ecl-fq-on .ecl-faq-tog svg { transform: rotate(45deg); color: #fff; }
.ecl-faq-ans { display: none; padding-bottom: 1rem; }
.ecl-faq-ans p { font-size: .86rem; color: var(--ecl-stone); line-height: 1.72; }
.ecl-faq-e.ecl-fq-on .ecl-faq-ans { display: block; }

/* ── CTA WITH INLINE FORM ────────────────────────────────── */
.ecl-cta-band { background: var(--ecl-navy); padding: 7rem 0; }
.ecl-cta-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.ecl-cta-h { font-family: var(--ecl-fh); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin-bottom: .75rem; }
.ecl-cta-h em { color: var(--ecl-mint); font-style: normal; }
.ecl-cta-p { color: rgba(255,255,255,.3); font-size: .9rem; font-style: italic; }
.ecl-mini-form { background: var(--ecl-nv2); border-radius: var(--ecl-rxl); padding: 2rem; border: 1px solid var(--ecl-rinv); }
.ecl-mini-form-hd { font-family: var(--ecl-fh); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.2); margin-bottom: 1.25rem; }

/* ── FIELDS ──────────────────────────────────────────────── */
.ecl-field { margin-bottom: 1rem; }
.ecl-lbl { display: block; font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ecl-stone); margin-bottom: .35rem; }
.ecl-lbl-inv { color: rgba(255,255,255,.2); }
.ecl-inp { width: 100%; padding: .72rem 1rem; border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--ecl-rmd); font-family: var(--ecl-fb); font-size: .9rem; color: #fff; background: rgba(255,255,255,.04); transition: border-color var(--ecl-ease), box-shadow var(--ecl-ease); }
.ecl-inp:focus { border-color: var(--ecl-ind); box-shadow: 0 0 0 3px var(--ecl-ind3); outline: none; }
.ecl-inp::placeholder { color: rgba(255,255,255,.2); }
.ecl-inp-light { background: var(--ecl-off); border-color: rgba(13,27,53,.15); color: var(--ecl-navy); }
.ecl-inp-light:focus { border-color: var(--ecl-ind); box-shadow: 0 0 0 3px var(--ecl-ind3); }
.ecl-inp-light::placeholder { color: rgba(13,27,53,.25); }
.ecl-col2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.ecl-submit { display: block; width: 100%; padding: .82rem; background: var(--ecl-ind); color: #fff; border: none; border-radius: 100px; font-family: var(--ecl-fh); font-size: .88rem; font-weight: 700; cursor: pointer; transition: var(--ecl-ease); letter-spacing: -.01em; margin-top: 1.25rem; }
.ecl-submit:hover { background: var(--ecl-ind2); }
.ecl-agree { display: flex; align-items: flex-start; gap: .6rem; margin-top: .85rem; }
.ecl-agree input { width: 13px; height: 13px; margin-top: 3px; accent-color: var(--ecl-ind); flex-shrink: 0; cursor: pointer; }
.ecl-agree label { font-family: var(--ecl-fb); font-size: .82rem; color: rgba(255,255,255,.25); line-height: 1.5; cursor: pointer; }
.ecl-agree label a { color: var(--ecl-ind); }
.ecl-agree-light label { color: var(--ecl-stone); }
.ecl-agree-light label a { color: var(--ecl-ind2); }

/* ── CROWN (inner page header) ──────────────────────────── */
.ecl-crown-band {
  background: linear-gradient(135deg, var(--ecl-navy) 0%, var(--ecl-nv3) 100%);
  padding-top: 8.5rem; padding-bottom: 4rem;
  text-align: center; border-bottom: 3px solid var(--ecl-ind);
  position: relative; overflow: hidden;
}
.ecl-crown-band::before {
  content: ''; position: absolute; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(91,76,245,.18) 0%, transparent 70%);
  top: -10%; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.ecl-crown-band h1 { color: #fff; position: relative; z-index: 1; text-align: center; }
.ecl-crown-band p { color: rgba(255,255,255,.35); max-width: 52ch; margin: .75rem auto 0; font-size: .95rem; position: relative; z-index: 1; font-style: italic; text-align: center; }
.ecl-crumb { display: flex; align-items: center; justify-content: center; gap: .35rem; font-family: var(--ecl-fh); font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.18); margin-bottom: 1.25rem; letter-spacing: .04em; position: relative; z-index: 1; }
.ecl-crumb a { color: rgba(255,255,255,.18); transition: color var(--ecl-ease); }
.ecl-crumb a:hover { color: var(--ecl-mint); }
.ecl-crumb-sep { color: rgba(255,255,255,.12); }

/* ── SERVICE SINGLE PAGE ─────────────────────────────────── */
.ecl-svc-layout { display: grid; grid-template-columns: 1fr 270px; gap: 4.5rem; margin-top: 4.5rem; align-items: start; }
.ecl-svc-content h2 { font-family: var(--ecl-fh); font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 .75rem; letter-spacing: -.025em; }
.ecl-svc-content p { margin-bottom: .85rem; font-size: .9rem; }
.ecl-svc-content ul { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.ecl-svc-content li { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--ecl-fb); font-size: .86rem; color: var(--ecl-stone); }
.ecl-svc-content li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ecl-ind); flex-shrink: 0; margin-top: .7em; }
.ecl-svc-aside { position: sticky; top: calc(64px + 1.25rem + 16px); background: var(--ecl-navy); border-radius: var(--ecl-rxl); overflow: hidden; }
.ecl-asa-top { padding: 2rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.ecl-asa-from { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); margin-bottom: .22rem; }
.ecl-asa-price { font-family: var(--ecl-fh); font-size: 3rem; font-weight: 700; color: var(--ecl-mint); line-height: 1; letter-spacing: -.05em; }
.ecl-asa-unit { font-family: var(--ecl-fh); font-size: .7rem; color: rgba(255,255,255,.2); margin-top: .18rem; }
.ecl-asa-rows { padding: 1.25rem; }
.ecl-asa-row { display: flex; justify-content: space-between; padding: .48rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .8rem; }
.ecl-asa-row:last-child { border-bottom: none; }
.ecl-asa-k { color: rgba(255,255,255,.22); font-family: var(--ecl-fh); }
.ecl-asa-v { font-family: var(--ecl-fh); color: rgba(255,255,255,.6); font-weight: 600; }
.ecl-asa-cta { display: block; margin: 0 1.25rem 1.25rem; text-align: center; padding: .78rem; background: var(--ecl-ind); color: #fff; border-radius: 100px; font-family: var(--ecl-fh); font-size: .82rem; font-weight: 700; transition: background var(--ecl-ease); }
.ecl-asa-cta:hover { background: var(--ecl-ind2); }

/* ── BUILDER ─────────────────────────────────────────────── */
.ecl-bld-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; margin-top: 3.5rem; }
.ecl-bld-panel { background: var(--ecl-off); border: 1px solid rgba(13,27,53,.1); border-radius: var(--ecl-rxl); padding: 1.75rem; margin-bottom: 1.25rem; }
.ecl-bld-hd { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ecl-stone); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(13,27,53,.1); display: flex; align-items: center; gap: .6rem; }
.ecl-step-tag { width: 20px; height: 20px; border-radius: 50%; background: var(--ecl-ind); color: #fff; font-family: var(--ecl-fh); font-size: .6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ecl-radio-tile { display: flex; align-items: center; gap: .85rem; padding: .78rem 1rem; border: 1.5px solid rgba(13,27,53,.12); border-radius: var(--ecl-rmd); cursor: pointer; margin-bottom: .4rem; transition: var(--ecl-ease); background: #fff; }
.ecl-radio-tile:hover { border-color: var(--ecl-ind4); }
.ecl-radio-tile.ecl-rt-on { border-color: var(--ecl-ind); background: var(--ecl-ind3); }
.ecl-radio-tile input[type="radio"] { accent-color: var(--ecl-ind); flex-shrink: 0; cursor: pointer; }
.ecl-rt-body { flex: 1; }
.ecl-rt-nm { font-family: var(--ecl-fh); font-size: .88rem; font-weight: 700; color: var(--ecl-navy); }
.ecl-rt-sm { font-family: var(--ecl-fb); font-size: .72rem; color: var(--ecl-stone); }
.ecl-rt-pr { font-family: var(--ecl-fh); font-size: .9rem; font-weight: 700; color: var(--ecl-navy); white-space: nowrap; }
.ecl-chk-tile { display: flex; align-items: center; gap: .85rem; padding: .72rem 1rem; border: 1.5px solid rgba(13,27,53,.12); border-radius: var(--ecl-rmd); cursor: pointer; margin-bottom: .4rem; transition: var(--ecl-ease); background: #fff; }
.ecl-chk-tile:hover { border-color: var(--ecl-ind4); }
.ecl-chk-tile.ecl-ct-on { border-color: var(--ecl-ind); background: var(--ecl-ind3); }
.ecl-chk-tile input[type="checkbox"] { accent-color: var(--ecl-ind); flex-shrink: 0; cursor: pointer; }
.ecl-chk-lbl { flex: 1; font-family: var(--ecl-fh); font-size: .84rem; font-weight: 600; color: var(--ecl-navy); }
.ecl-chk-amt { font-family: var(--ecl-fh); font-size: .84rem; font-weight: 700; color: var(--ecl-navy); white-space: nowrap; }
.ecl-hr-area { display: flex; align-items: center; gap: 1.25rem; margin-top: .65rem; }
.ecl-hr-slider { flex: 1; accent-color: var(--ecl-ind); cursor: pointer; }
.ecl-hr-val { font-family: var(--ecl-fh); font-size: .84rem; font-weight: 700; color: var(--ecl-navy); min-width: 140px; text-align: right; }

/* Summary sticky panel */
.ecl-sum-panel { position: sticky; top: calc(64px + 1.25rem + 16px); background: var(--ecl-navy); border-radius: var(--ecl-rxl); padding: 2rem; }
.ecl-sum-hd { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.ecl-sum-items { min-height: 50px; display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.ecl-sum-item { display: flex; justify-content: space-between; gap: .5rem; font-size: .8rem; }
.ecl-sum-ik { color: rgba(255,255,255,.28); font-family: var(--ecl-fh); }
.ecl-sum-iv { font-family: var(--ecl-fh); color: rgba(255,255,255,.6); font-weight: 600; text-align: right; }
.ecl-sum-sep { height: 1px; background: rgba(255,255,255,.07); margin: .75rem 0; }
.ecl-sum-total { display: flex; justify-content: space-between; align-items: baseline; }
.ecl-sum-tl { font-family: var(--ecl-fh); font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.2); }
.ecl-sum-tv { font-family: var(--ecl-fh); font-size: 2.4rem; font-weight: 700; color: var(--ecl-mint); letter-spacing: -.04em; }
.ecl-sum-go { display: block; width: 100%; margin-top: 1.5rem; padding: .82rem; background: var(--ecl-ind); color: #fff; border: none; border-radius: 100px; font-family: var(--ecl-fh); font-size: .88rem; font-weight: 700; cursor: pointer; transition: var(--ecl-ease); text-align: center; }
.ecl-sum-go:hover { background: var(--ecl-ind2); }
.ecl-sum-go:disabled { opacity: .2; cursor: not-allowed; }
.ecl-sum-note { font-family: var(--ecl-fh); font-size: .6rem; color: rgba(255,255,255,.16); text-align: center; margin-top: .65rem; }

/* ── CHECKOUT ────────────────────────────────────────────── */
.ecl-checkout-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; margin-top: 3.5rem; align-items: start; }
.ecl-checkout-form { background: var(--ecl-off); border: 1px solid rgba(13,27,53,.1); border-radius: var(--ecl-rxl); padding: 2.5rem; }
.ecl-checkout-aside { position: sticky; top: calc(64px + 1.25rem + 16px); background: var(--ecl-navy); border-radius: var(--ecl-rxl); padding: 2rem; }
.ecl-aside-hd { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.07); }

/* ── CONTACT ─────────────────────────────────────────────── */
.ecl-contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.ecl-contact-info-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.ecl-cii-ico { width: 36px; height: 36px; border-radius: var(--ecl-rmd); background: var(--ecl-ind3); border: 1px solid var(--ecl-ind4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ecl-cii-ico svg { width: 14px; height: 14px; color: var(--ecl-ind); }
.ecl-cii-lbl { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ecl-stone); margin-bottom: .1rem; }
.ecl-cii-val { font-family: var(--ecl-fb); font-size: .9rem; color: var(--ecl-navy); }
.ecl-cii-val a { color: var(--ecl-ind2); }

/* ── ABOUT ──────────────────────────────────────────────── */
.ecl-about-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.ecl-about-img-wrap { border-radius: var(--ecl-rxx); overflow: hidden; aspect-ratio: 4/3; background: var(--ecl-off); }
.ecl-about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ecl-about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.ecl-val-tile { background: var(--ecl-off); border: 1px solid rgba(13,27,53,.1); border-radius: var(--ecl-rmd); padding: 1.25rem; border-top: 3px solid var(--ecl-ind); }
.ecl-val-tile h4 { font-family: var(--ecl-fh); font-size: .88rem; font-weight: 700; margin-bottom: .25rem; color: var(--ecl-navy); }
.ecl-val-tile p { font-size: .76rem; margin: 0; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.ecl-portfolio-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 4rem; }
.ecl-port-card { display: grid; grid-template-columns: 320px 1fr; border-radius: var(--ecl-rxl); overflow: hidden; border: 1px solid rgba(13,27,53,.1); }
.ecl-port-img { background: var(--ecl-off); overflow: hidden; }
.ecl-port-img img { width: 100%; height: 100%; object-fit: cover; }
.ecl-port-body { padding: 2.5rem; }
.ecl-port-sector { font-family: var(--ecl-fh); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ecl-ind); margin-bottom: .75rem; }
.ecl-port-kpis { display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(13,27,53,.08); }
.ecl-pkn { font-family: var(--ecl-fh); font-size: 1.7rem; font-weight: 700; color: var(--ecl-ind); letter-spacing: -.03em; line-height: 1; }
.ecl-pkl { font-family: var(--ecl-fh); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ecl-stone); margin-top: .18rem; }

/* ── LEGAL ───────────────────────────────────────────────── */
.ecl-legal-wrap { max-width: 800px; margin: 4rem auto; }
.ecl-legal-wrap h2 { font-family: var(--ecl-fh); font-size: 1.3rem; font-weight: 700; margin: 2.5rem 0 .65rem; letter-spacing: -.02em; }
.ecl-legal-wrap h3 { font-family: var(--ecl-fh); font-size: .95rem; font-weight: 700; margin: 1.5rem 0 .4rem; }
.ecl-legal-wrap p, .ecl-legal-wrap li { font-family: var(--ecl-fb); font-size: .88rem; color: var(--ecl-stone); line-height: 1.76; margin-bottom: .8rem; }
.ecl-legal-wrap ul, .ecl-legal-wrap ol { padding-left: 1.35rem; margin-bottom: .9rem; }
.ecl-legal-wrap a { color: var(--ecl-ind2); }
.ecl-legal-stamp { display: inline-block; font-family: var(--ecl-fh); font-size: .65rem; color: var(--ecl-stone); background: var(--ecl-off); border: 1px solid rgba(13,27,53,.1); padding: .2rem .7rem; border-radius: 100px; margin-bottom: 1.5rem; }

/* ── RESULT PAGES ────────────────────────────────────────── */
.ecl-result-zone { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 7rem 1.5rem; }
.ecl-result-card { max-width: 440px; width: 100%; text-align: center; background: var(--ecl-off); border: 1px solid rgba(13,27,53,.1); border-radius: var(--ecl-rxl); padding: 3rem; box-shadow: var(--ecl-sh); }
.ecl-res-ico { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.ecl-res-ok { background: var(--ecl-ind3); border: 1px solid var(--ecl-ind4); }
.ecl-res-no { background: var(--ecl-off); border: 1px solid rgba(13,27,53,.12); }
.ecl-res-ico svg { width: 26px; height: 26px; color: var(--ecl-ind); }

/* ── FOOTER ──────────────────────────────────────────────── */
.ecl-footer { background: #08101F; padding: 5rem 0 2rem; }
.ecl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.ecl-footer-brand { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.ecl-footer-bmark { width: 26px; height: 26px; border-radius: 50%; background: var(--ecl-ind); display: flex; align-items: center; justify-content: center; }
.ecl-footer-bmark svg { width: 11px; height: 11px; color: #fff; }
.ecl-footer-bname { font-family: var(--ecl-fh); font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: -.025em; }
.ecl-footer-bname em { color: var(--ecl-mint); font-style: normal; }
.ecl-footer-tag { font-family: var(--ecl-fb); font-size: .82rem; color: rgba(255,255,255,.18); font-style: italic; margin-bottom: 1.25rem; }
.ecl-footer-addr { font-family: var(--ecl-fb); font-size: .74rem; color: rgba(255,255,255,.1); line-height: 1.9; }
.ecl-footer-addr a { color: rgba(255,255,255,.12); transition: color var(--ecl-ease); }
.ecl-footer-addr a:hover { color: var(--ecl-mint); }
.ecl-footer-socials { display: flex; gap: .4rem; margin-top: 1.25rem; }
.ecl-fsoc { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.18); transition: var(--ecl-ease); }
.ecl-fsoc:hover { border-color: rgba(91,76,245,.4); color: var(--ecl-mint); background: rgba(91,76,245,.12); }
.ecl-fsoc svg { width: 12px; height: 12px; }
.ecl-footer-col h4 { font-family: var(--ecl-fh); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.18); margin-bottom: .85rem; }
.ecl-footer-col ul { display: flex; flex-direction: column; gap: .42rem; }
.ecl-footer-col li a { font-family: var(--ecl-fb); font-size: .78rem; color: rgba(255,255,255,.14); transition: color var(--ecl-ease); }
.ecl-footer-col li a:hover { color: var(--ecl-mint); }
.ecl-footer-base { padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ecl-footer-copy { font-family: var(--ecl-fh); font-size: .65rem; color: rgba(255,255,255,.1); }
.ecl-footer-dig { font-family: var(--ecl-fb); font-size: .65rem; color: rgba(255,255,255,.1); font-style: italic; }
.ecl-footer-legal { display: flex; gap: 1.25rem; }
.ecl-footer-legal a { font-family: var(--ecl-fh); font-size: .65rem; color: rgba(255,255,255,.1); transition: color var(--ecl-ease); }
.ecl-footer-legal a:hover { color: var(--ecl-mint); }

/* ── COOKIE ──────────────────────────────────────────────── */
.ecl-cookie { position: fixed; bottom: 1.25rem; left: 1.25rem; width: 300px; background: var(--ecl-navy); border: 1px solid rgba(255,255,255,.1); border-radius: var(--ecl-rxl); padding: 1.5rem; box-shadow: var(--ecl-sh); z-index: 9999; transition: opacity .3s, transform .3s; }
.ecl-cookie.ecl-ck-off { opacity: 0; pointer-events: none; transform: translateY(8px); }
.ecl-ck-txt { font-family: var(--ecl-fb); font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.58; margin-bottom: .85rem; font-style: italic; }
.ecl-ck-acts { display: flex; gap: .5rem; }
.ecl-ck-yes { flex: 1; padding: .5rem; background: var(--ecl-ind); color: #fff; border: none; border-radius: 100px; font-family: var(--ecl-fh); font-size: .78rem; font-weight: 700; cursor: pointer; transition: background var(--ecl-ease); }
.ecl-ck-yes:hover { background: var(--ecl-ind2); }
.ecl-ck-no { flex: 1; padding: .5rem; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); background: none; border-radius: 100px; font-size: .78rem; font-family: var(--ecl-fh); cursor: pointer; transition: var(--ecl-ease); }
.ecl-ck-no:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* ── CHAT WIDGET ─────────────────────────────────────────── */
.ecl-chat-btn { position: fixed; bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; border-radius: 50%; background: var(--ecl-ind); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--ecl-shi); z-index: 800; border: none; transition: var(--ecl-ease); }
.ecl-chat-btn:hover { transform: scale(1.08); background: var(--ecl-ind2); }
.ecl-chat-btn svg { width: 19px; height: 19px; color: #fff; }
.ecl-chat-box { position: fixed; bottom: calc(1.25rem + 48px + .75rem); right: 1.25rem; width: 295px; background: var(--ecl-white); border: 1px solid rgba(13,27,53,.1); border-radius: var(--ecl-rxl); box-shadow: var(--ecl-sh); z-index: 800; overflow: hidden; transform: translateY(12px) scale(.95); opacity: 0; pointer-events: none; transition: transform .22s, opacity .22s; }
.ecl-chat-box.ecl-chat-on { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.ecl-chat-head { background: var(--ecl-navy); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .6rem; }
.ecl-chat-av2 { width: 28px; height: 28px; border-radius: 50%; background: var(--ecl-ind); display: flex; align-items: center; justify-content: center; font-family: var(--ecl-fh); font-size: .7rem; font-weight: 800; color: #fff; }
.ecl-chat-head h4 { font-family: var(--ecl-fh); font-size: .84rem; font-weight: 700; color: #fff; }
.ecl-chat-head span { font-family: var(--ecl-fb); font-size: .68rem; color: rgba(255,255,255,.3); }
.ecl-chat-body { padding: 1.25rem; }
.ecl-chat-msg { font-family: var(--ecl-fb); font-size: .8rem; color: var(--ecl-stone); margin-bottom: .85rem; font-style: italic; }
.ecl-chat-fn, .ecl-chat-ta { width: 100%; padding: .5rem .85rem; border: 1px solid rgba(13,27,53,.12); border-radius: var(--ecl-rmd); font-family: var(--ecl-fb); font-size: .8rem; color: var(--ecl-navy); background: var(--ecl-off); margin-bottom: .45rem; }
.ecl-chat-ta { resize: none; height: 60px; }
.ecl-chat-fn:focus, .ecl-chat-ta:focus { border-color: var(--ecl-ind); outline: none; }
.ecl-chat-send { width: 100%; padding: .55rem; background: var(--ecl-ind); color: #fff; border: none; border-radius: 100px; font-family: var(--ecl-fh); font-size: .8rem; font-weight: 700; cursor: pointer; transition: background var(--ecl-ease); }
.ecl-chat-send:hover { background: var(--ecl-ind2); }
.ecl-chat-done { display: none; text-align: center; padding: .85rem; font-family: var(--ecl-fh); font-size: .84rem; color: var(--ecl-ind); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.ecl-fade { opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
.ecl-fade.ecl-in { opacity: 1; transform: none; }
.ecl-d1 { transition-delay: .07s; }
.ecl-d2 { transition-delay: .14s; }
.ecl-d3 { transition-delay: .21s; }
.ecl-d4 { transition-delay: .28s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ecl-pill-links { display: none; }
  .ecl-mob-tog { display: flex; }
  .ecl-hero-zone > .ecl-shell { grid-template-columns: 1fr; }
  .ecl-bento-side { display: none; }
  .ecl-hero-copy { padding: 9rem 0 4rem; }
  .ecl-svc-grid { grid-template-columns: 1fr 1fr; }
  .ecl-testi-layout { grid-template-columns: 1fr; }
  .ecl-testi-stack { }
  .ecl-pricing-grid { grid-template-columns: 1fr; }
  .ecl-ptile-feat { transform: none; }
  .ecl-faq-grid { grid-template-columns: 1fr; }
  .ecl-cta-split { grid-template-columns: 1fr; gap: 3rem; }
  .ecl-bld-layout { grid-template-columns: 1fr; }
  .ecl-sum-panel { position: static; }
  .ecl-checkout-grid { grid-template-columns: 1fr; }
  .ecl-checkout-aside { position: static; }
  .ecl-svc-layout { grid-template-columns: 1fr; }
  .ecl-svc-aside { position: static; }
  .ecl-contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ecl-about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ecl-footer-grid { grid-template-columns: 1fr 1fr; }
  .ecl-feat-case { grid-template-columns: 1fr; }
  .ecl-timeline { flex-direction: column; gap: 2rem; }
  .ecl-timeline::after { display: none; }
  .ecl-tl-step { text-align: left; padding-top: 0; padding-left: 3.5rem; }
  .ecl-tl-dot { position: absolute; left: 0; top: 0; margin: 0; }
  .ecl-port-card { grid-template-columns: 1fr; }
  .ecl-stats-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ecl-shell { padding: 0 1.25rem; }
  .ecl-nav { width: calc(100% - 2rem); top: .85rem; }
  .ecl-sect, .ecl-sect--sky, .ecl-sect--dark, .ecl-sect--deep { padding: 5rem 0; }
  .ecl-svc-grid { grid-template-columns: 1fr; }
  .ecl-about-values { grid-template-columns: 1fr; }
  .ecl-footer-grid { grid-template-columns: 1fr; }
  .ecl-footer-base { flex-direction: column; align-items: flex-start; }
  .ecl-col2 { grid-template-columns: 1fr; }
  .ecl-stats-rail { grid-template-columns: 1fr 1fr; }
}
