@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   EKO — Investment Infrastructure for Community Banking
   Brand: Deep Navy + Teal Accent, Inter, institutional finance
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --eko-bg-primary: #FFFFFF;
  --eko-bg-alt: #F4F7FB;
  --eko-bg-dark: #0B1D3A;
  --eko-bg-dark-panel: #132744;
  --eko-accent: #1C9882;
  --eko-accent-hover: #157A69;
  --eko-accent-light: #E6F7F4;
  --eko-text: #0B1D3A;
  --eko-text-secondary: #4A5568;
  --eko-text-muted: #718096;
  --eko-border: #DDE3ED;
  --eko-navy-mid: #1B3560;
  --eko-white: #FFFFFF;
  --eko-radius: 6px;
  --eko-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --eko-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --eko-shadow-card: 0 1px 3px rgba(11, 29, 58, 0.08);
  --eko-transition: 200ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--eko-font);
  color: var(--eko-text);
  background: var(--eko-bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--eko-accent); text-decoration: none; transition: color var(--eko-transition); }
a:hover { color: var(--eko-accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography Scale --- */
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
h5 { font-size: 16px; font-weight: 600; line-height: 1.4; }
p { font-size: 16px; line-height: 1.7; color: var(--eko-text-secondary); }

/* --- Container --- */
.eko-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.eko-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--eko-white);
  border-bottom: 1px solid var(--eko-border);
  transition: box-shadow var(--eko-transition);
}

.eko-nav--scrolled {
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.10);
}

.eko-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.eko-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.eko-nav__logo img {
  height: 30px;
  width: auto;
  max-width: 140px;
}

.eko-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.eko-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--eko-text);
  padding: 6px 12px;
  border-radius: var(--eko-radius);
  transition: color var(--eko-transition), background var(--eko-transition);
  white-space: nowrap;
  text-decoration: none;
}

.eko-nav__link:hover {
  color: var(--eko-accent);
  background: var(--eko-accent-light);
}

.eko-nav__link--active {
  color: var(--eko-accent);
}

/* Dropdown */
.eko-nav__dropdown {
  position: relative;
}

.eko-nav__dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--eko-text);
  padding: 6px 12px;
  border-radius: var(--eko-radius);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color var(--eko-transition), background var(--eko-transition);
  white-space: nowrap;
}

.eko-nav__dropdown-toggle:hover {
  color: var(--eko-accent);
  background: var(--eko-accent-light);
}

.eko-nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 200ms ease;
}

.eko-nav__dropdown.is-open .eko-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.eko-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 100;
}

.eko-nav__dropdown.is-open .eko-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eko-nav__dropdown-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--eko-text);
  padding: 8px 12px;
  border-radius: 4px;
  transition: background var(--eko-transition), color var(--eko-transition);
  text-decoration: none;
}

.eko-nav__dropdown-menu a:hover {
  background: var(--eko-accent-light);
  color: var(--eko-accent);
}

/* Nav CTA */
.eko-nav__actions {
  margin-left: auto;
  flex-shrink: 0;
}

.eko-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--eko-accent);
  color: var(--eko-white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--eko-radius);
  text-decoration: none;
  transition: background var(--eko-transition);
  white-space: nowrap;
}

.eko-nav__cta:hover {
  background: var(--eko-accent-hover);
  color: var(--eko-white);
}

/* Mobile hamburger */
.eko-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.eko-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--eko-text);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.eko-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eko-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.eko-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.eko-nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--eko-white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px clamp(20px, 4vw, 48px);
}

.eko-nav__mobile.is-open { display: block; }

.eko-nav__mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--eko-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--eko-border);
  text-decoration: none;
}

.eko-nav__mobile-link:hover { color: var(--eko-accent); }

.eko-nav__mobile-group-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--eko-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 20px 0 8px;
}

.eko-nav__mobile-sub {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--eko-border);
}

.eko-nav__mobile-sub a {
  display: block;
  font-size: 15px;
  color: var(--eko-text-secondary);
  padding: 6px 0;
  text-decoration: none;
}

.eko-nav__mobile-cta {
  display: block;
  margin-top: 24px;
  background: var(--eko-accent);
  color: var(--eko-white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--eko-radius);
  text-align: center;
  text-decoration: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.eko-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--eko-font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--eko-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--eko-transition), color var(--eko-transition), border-color var(--eko-transition);
  text-decoration: none;
  white-space: nowrap;
}

.eko-btn--primary {
  background: var(--eko-accent);
  color: var(--eko-white);
  border-color: var(--eko-accent);
}

.eko-btn--primary:hover {
  background: var(--eko-accent-hover);
  border-color: var(--eko-accent-hover);
  color: var(--eko-white);
}

.eko-btn--outline-white {
  background: transparent;
  color: var(--eko-white);
  border-color: rgba(255,255,255,0.5);
}

.eko-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--eko-white);
}

.eko-btn--outline-accent {
  background: transparent;
  color: var(--eko-accent);
  border-color: var(--eko-accent);
}

.eko-btn--outline-accent:hover {
  background: var(--eko-accent-light);
  color: var(--eko-accent-hover);
}

.eko-btn--dark {
  background: var(--eko-bg-dark);
  color: var(--eko-white);
  border-color: var(--eko-bg-dark);
}

.eko-btn--dark:hover {
  background: var(--eko-navy-mid);
  border-color: var(--eko-navy-mid);
  color: var(--eko-white);
}

/* ============================================================
   HERO — DARK NAVY
   ============================================================ */
.eko-hero {
  background: var(--eko-bg-dark);
  padding: clamp(72px, 8vw, 120px) 0 clamp(64px, 7vw, 100px);
  overflow: hidden;
  position: relative;
}

.eko-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eko-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eko-accent);
  background: rgba(28, 152, 130, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.eko-hero h1 {
  color: var(--eko-white);
  margin-bottom: 20px;
}

.eko-hero__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
}

.eko-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eko-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sub-page Hero (dark) */
.eko-subhero {
  background: var(--eko-bg-dark);
  padding: clamp(56px, 7vw, 88px) 0;
}

.eko-subhero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eko-subhero__text {
  /* text block */
}

.eko-subhero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 16px;
}

.eko-subhero h1 {
  color: var(--eko-white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.eko-subhero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
  max-width: 480px;
}

.eko-subhero__motif {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Light hero (blog) */
.eko-lighthero {
  background: var(--eko-bg-alt);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--eko-border);
}

.eko-lighthero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-lighthero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--eko-text);
  margin-bottom: 12px;
}

.eko-lighthero__sub {
  font-size: 16px;
  color: var(--eko-text-muted);
}

/* ============================================================
   SECTIONS — LIGHT
   ============================================================ */
.eko-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.eko-section--alt {
  background: var(--eko-bg-alt);
}

.eko-section--white {
  background: var(--eko-bg-primary);
}

.eko-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eko-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 12px;
}

.eko-section h2 {
  color: var(--eko-text);
  margin-bottom: 16px;
}

.eko-section__subhead {
  font-size: 17px;
  color: var(--eko-text-secondary);
  line-height: 1.65;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.eko-trust-strip {
  background: var(--eko-bg-alt);
  border-top: 1px solid var(--eko-border);
  border-bottom: 1px solid var(--eko-border);
  padding: 28px 0;
}

.eko-trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: center;
}

.eko-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--eko-text-secondary);
}

.eko-trust-strip__item svg {
  color: var(--eko-accent);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM FRAMING — TWO COLUMN
   ============================================================ */
.eko-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.eko-two-col h2 {
  color: var(--eko-text);
  margin-bottom: 20px;
}

.eko-two-col__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--eko-text-secondary);
}

.eko-two-col__body p + p { margin-top: 16px; }

/* ============================================================
   FEATURE GRID — 3 COL
   ============================================================ */
.eko-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eko-feature-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-left: 3px solid var(--eko-accent);
  border-radius: var(--eko-radius);
  padding: 28px 24px;
  transition: box-shadow var(--eko-transition);
}

.eko-feature-card:hover {
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.10);
}

.eko-feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--eko-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--eko-accent);
}

.eko-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 10px;
}

.eko-feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--eko-text-secondary);
}

/* ============================================================
   HOW IT WORKS — NUMBERED STEPS
   ============================================================ */
.eko-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.eko-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--eko-border);
  z-index: 0;
}

.eko-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eko-step__num {
  font-family: var(--eko-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--eko-accent);
  background: var(--eko-white);
  border: 2px solid var(--eko-accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.eko-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 10px;
}

.eko-step p {
  font-size: 14px;
  color: var(--eko-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.eko-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.eko-testimonial-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 32px;
}

.eko-testimonial-card__quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--eko-text);
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--eko-accent);
}

.eko-testimonial-card__attr {
  font-size: 13px;
  font-weight: 600;
  color: var(--eko-text-secondary);
}

.eko-testimonial-card__inst {
  font-size: 12px;
  color: var(--eko-text-muted);
  margin-top: 2px;
  font-family: var(--eko-mono);
}

/* Large testimonial */
.eko-testimonial-large {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: clamp(32px, 4vw, 56px);
  max-width: 820px;
  margin: 0 auto;
}

.eko-testimonial-large__quote {
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.65;
  color: var(--eko-text);
  margin-bottom: 28px;
  border-left: 4px solid var(--eko-accent);
  padding-left: 24px;
}

.eko-testimonial-large__attr {
  font-size: 14px;
  font-weight: 700;
  color: var(--eko-text);
  padding-left: 24px;
}

.eko-testimonial-large__inst {
  font-size: 13px;
  color: var(--eko-text-muted);
  padding-left: 24px;
  margin-top: 2px;
}

/* ============================================================
   COMPLIANCE CALLOUT — DARK PANEL
   ============================================================ */
.eko-dark-panel {
  background: var(--eko-bg-dark-panel);
  padding: clamp(56px, 7vw, 88px) 0;
}

.eko-dark-panel__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eko-dark-panel h2 {
  color: var(--eko-white);
  margin-bottom: 20px;
}

.eko-dark-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.eko-dark-panel__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eko-dark-panel__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.eko-dark-panel__feature svg {
  color: var(--eko-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.eko-cta-band {
  background: var(--eko-bg-dark-panel);
  padding: clamp(64px, 8vw, 96px) 0;
}

.eko-cta-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.eko-cta-band h2 {
  color: var(--eko-white);
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.eko-cta-band p {
  color: rgba(255,255,255,0.70);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.eko-cta-band__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Light CTA bottom */
.eko-cta-light {
  background: var(--eko-bg-alt);
  padding: clamp(64px, 7vw, 96px) 0;
  text-align: center;
}

.eko-cta-light__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-cta-light h2 {
  color: var(--eko-text);
  margin-bottom: 32px;
  font-size: clamp(26px, 3vw, 38px);
}

.eko-cta-light__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.eko-accordion {
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  overflow: hidden;
}

.eko-accordion__item {
  border-bottom: 1px solid var(--eko-border);
}

.eko-accordion__item:last-child { border-bottom: none; }

.eko-accordion__trigger {
  width: 100%;
  background: var(--eko-white);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--eko-text);
  cursor: pointer;
  transition: background var(--eko-transition);
  gap: 16px;
}

.eko-accordion__trigger:hover { background: var(--eko-bg-alt); }

.eko-accordion__trigger svg {
  flex-shrink: 0;
  transition: transform 250ms ease;
  color: var(--eko-accent);
}

.eko-accordion__item.is-open .eko-accordion__trigger {
  background: var(--eko-accent-light);
  color: var(--eko-accent);
}

.eko-accordion__item.is-open .eko-accordion__trigger svg {
  transform: rotate(45deg);
}

.eko-accordion__body {
  display: none;
  padding: 0 24px 20px;
  background: var(--eko-white);
  font-size: 14px;
  line-height: 1.7;
  color: var(--eko-text-secondary);
}

.eko-accordion__item.is-open .eko-accordion__body { display: block; }

/* ============================================================
   DATA TABLES
   ============================================================ */
.eko-table-wrap {
  overflow-x: auto;
  border-radius: var(--eko-radius);
  border: 1px solid var(--eko-border);
}

.eko-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.eko-table th {
  background: var(--eko-bg-dark);
  color: var(--eko-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}

.eko-table td {
  padding: 12px 16px;
  color: var(--eko-text-secondary);
  border-bottom: 1px solid var(--eko-border);
  vertical-align: top;
}

.eko-table tr:nth-child(even) td { background: var(--eko-bg-alt); }
.eko-table tr:last-child td { border-bottom: none; }

.eko-table__method {
  font-family: var(--eko-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--eko-accent-light);
  color: var(--eko-accent);
}

.eko-table__method--post {
  background: #FFF7ED;
  color: #C05621;
}

.eko-table__method--delete {
  background: #FFF5F5;
  color: #C53030;
}

.eko-table__path {
  font-family: var(--eko-mono);
  font-size: 12px;
  color: var(--eko-text);
}

/* ============================================================
   CODE BLOCK
   ============================================================ */
.eko-code-block {
  background: var(--eko-bg-dark);
  border-radius: var(--eko-radius);
  padding: 32px;
  overflow-x: auto;
  position: relative;
}

.eko-code-block__label {
  font-family: var(--eko-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--eko-accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.eko-code-block pre {
  font-family: var(--eko-mono);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  white-space: pre;
}

.eko-code-block .eko-code-key { color: #7DD3C8; }
.eko-code-block .eko-code-str { color: #86EFAC; }
.eko-code-block .eko-code-num { color: #FCA5A5; }
.eko-code-block .eko-code-comment { color: rgba(255,255,255,0.40); font-style: italic; }
.eko-code-block .eko-code-method { color: #93C5FD; font-weight: 700; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.eko-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.eko-pricing-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 32px;
  position: relative;
}

.eko-pricing-card--featured {
  border-color: var(--eko-accent);
  box-shadow: 0 0 0 2px var(--eko-accent);
}

.eko-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--eko-accent);
  color: var(--eko-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.eko-pricing-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 8px;
}

.eko-pricing-card__price {
  font-size: 40px;
  font-weight: 800;
  color: var(--eko-text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.eko-pricing-card__price sup {
  font-size: 20px;
  font-weight: 700;
  vertical-align: super;
  line-height: 1;
}

.eko-pricing-card__period {
  font-size: 14px;
  color: var(--eko-text-muted);
  margin-bottom: 16px;
}

.eko-pricing-card__desc {
  font-size: 14px;
  color: var(--eko-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--eko-border);
}

.eko-pricing-card__features {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eko-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--eko-text-secondary);
  line-height: 1.5;
}

.eko-pricing-card__feature svg {
  color: var(--eko-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.eko-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.eko-compare-table th {
  background: var(--eko-bg-dark);
  color: var(--eko-white);
  font-size: 13px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: center;
}

.eko-compare-table th:first-child { text-align: left; }

.eko-compare-table td {
  padding: 14px 20px;
  color: var(--eko-text-secondary);
  border-bottom: 1px solid var(--eko-border);
  text-align: center;
}

.eko-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--eko-text);
}

.eko-compare-table tr:nth-child(even) td { background: var(--eko-bg-alt); }

.eko-compare-check {
  color: var(--eko-accent);
  font-size: 18px;
  font-weight: 700;
}

.eko-compare-dash {
  color: var(--eko-text-muted);
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.eko-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.eko-team-card {
  text-align: center;
}

.eko-team-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--eko-radius);
  margin-bottom: 16px;
  background: var(--eko-bg-alt);
}

.eko-team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 4px;
}

.eko-team-card__title {
  font-size: 13px;
  color: var(--eko-text-muted);
}

/* ============================================================
   INTEGRATION GRID
   ============================================================ */
.eko-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eko-integration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--eko-text);
}

.eko-integration-item__icon {
  width: 36px;
  height: 36px;
  background: var(--eko-accent-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eko-accent);
  flex-shrink: 0;
}

/* ============================================================
   SDK CARDS
   ============================================================ */
.eko-sdk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.eko-sdk-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.eko-sdk-card__icon {
  width: 48px;
  height: 48px;
  background: var(--eko-bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.eko-sdk-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 4px;
}

.eko-sdk-card__link {
  font-size: 12px;
  font-family: var(--eko-mono);
  color: var(--eko-accent);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.eko-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.eko-stat-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
}

.eko-stat-item__value {
  font-size: 40px;
  font-weight: 800;
  color: var(--eko-accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--eko-mono);
}

.eko-stat-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--eko-text-secondary);
}

/* ============================================================
   CUSTOMER CARDS
   ============================================================ */
.eko-customer-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-left: 3px solid var(--eko-accent);
  border-radius: var(--eko-radius);
  padding: 28px;
}

.eko-customer-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 6px;
}

.eko-customer-card__descriptor {
  font-size: 15px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 12px;
}

.eko-customer-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--eko-text-secondary);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.eko-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.eko-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.eko-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eko-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--eko-text);
}

.eko-form-input,
.eko-form-select,
.eko-form-textarea {
  font-family: var(--eko-font);
  font-size: 14px;
  color: var(--eko-text);
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 10px 14px;
  transition: border-color var(--eko-transition), box-shadow var(--eko-transition);
  outline: none;
  width: 100%;
}

.eko-form-input:focus,
.eko-form-select:focus,
.eko-form-textarea:focus {
  border-color: var(--eko-accent);
  box-shadow: 0 0 0 3px rgba(28, 152, 130, 0.15);
}

.eko-form-textarea { resize: vertical; min-height: 120px; }

.eko-contact-info { }

.eko-contact-info h3 {
  font-size: 20px;
  color: var(--eko-text);
  margin-bottom: 24px;
}

.eko-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--eko-border);
}

.eko-contact-detail:last-child { border-bottom: none; }

.eko-contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--eko-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eko-accent);
  flex-shrink: 0;
}

.eko-contact-detail__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--eko-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.eko-contact-detail__value {
  font-size: 15px;
  color: var(--eko-text);
  line-height: 1.5;
}

.eko-contact-detail__value a {
  color: var(--eko-text);
  text-decoration: none;
}

.eko-contact-detail__value a:hover { color: var(--eko-accent); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.eko-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.eko-blog-featured__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.eko-blog-featured__body {
  padding: 32px 40px 32px 0;
}

.eko-blog-featured__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eko-accent);
  background: var(--eko-accent-light);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.eko-blog-featured__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 14px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
}

.eko-blog-featured__title:hover { color: var(--eko-accent); }

.eko-blog-featured__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--eko-text-secondary);
  margin-bottom: 20px;
}

.eko-blog-featured__meta {
  font-size: 12px;
  color: var(--eko-text-muted);
}

.eko-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eko-blog-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  overflow: hidden;
  transition: box-shadow var(--eko-transition);
  display: flex;
  flex-direction: column;
}

.eko-blog-card:hover {
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.10);
}

.eko-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.eko-blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eko-blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eko-accent);
  background: var(--eko-accent-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

.eko-blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--eko-text);
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  flex: 1;
}

.eko-blog-card__title:hover { color: var(--eko-accent); }

.eko-blog-card__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--eko-text-secondary);
  margin-bottom: 14px;
}

.eko-blog-card__meta {
  font-size: 11px;
  color: var(--eko-text-muted);
  margin-top: auto;
}

/* Blog article */
.eko-article-hero {
  background: var(--eko-bg-dark);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.eko-article-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-article-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  background: rgba(28,152,130,0.15);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.eko-article-hero h1 {
  color: var(--eko-white);
  font-size: clamp(28px, 4vw, 48px);
  max-width: 820px;
  margin-bottom: 16px;
}

.eko-article-hero__meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
  padding-bottom: 40px;
}

.eko-article-cover {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}

.eko-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
}

.eko-article-body h2 {
  font-size: 26px;
  color: var(--eko-text);
  margin: 40px 0 16px;
}

.eko-article-body h3 {
  font-size: 20px;
  color: var(--eko-text);
  margin: 32px 0 12px;
}

.eko-article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eko-text-secondary);
  margin-bottom: 20px;
}

.eko-article-body ul,
.eko-article-body ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.eko-article-body li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eko-text-secondary);
  margin-bottom: 8px;
}

/* ============================================================
   PRESS BAR
   ============================================================ */
.eko-press-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px;
  background: var(--eko-bg-alt);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
}

.eko-press-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.eko-press-item__outlet {
  font-size: 13px;
  font-weight: 800;
  color: var(--eko-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.eko-press-item__quote {
  font-size: 14px;
  font-style: italic;
  color: var(--eko-text-secondary);
  line-height: 1.5;
}

/* ============================================================
   PARTNER FORM
   ============================================================ */
.eko-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.eko-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eko-value-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-top: 3px solid var(--eko-accent);
  border-radius: var(--eko-radius);
  padding: 32px;
}

.eko-value-card h3 {
  font-size: 18px;
  color: var(--eko-text);
  margin-bottom: 12px;
}

.eko-value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--eko-text-secondary);
}

/* ============================================================
   FOUNDER / ABOUT
   ============================================================ */
.eko-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.eko-founder-grid img {
  border-radius: var(--eko-radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.eko-founder__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 12px;
}

.eko-founder h2 {
  color: var(--eko-text);
  margin-bottom: 20px;
}

.eko-founder p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--eko-text-secondary);
  margin-bottom: 16px;
}

/* Mission full width */
.eko-mission {
  text-align: center;
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--eko-bg-dark);
}

.eko-mission__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-mission__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 24px;
}

.eko-mission blockquote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--eko-white);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

/* ============================================================
   ICON GRID — SECURITY
   ============================================================ */
.eko-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eko-icon-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.eko-icon-card__icon {
  width: 44px;
  height: 44px;
  background: var(--eko-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eko-accent);
  flex-shrink: 0;
}

.eko-icon-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 6px;
}

.eko-icon-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--eko-text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.eko-footer {
  background: var(--eko-bg-dark);
  padding: clamp(56px, 7vw, 80px) 0 0;
}

.eko-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.eko-footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.eko-footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
  max-width: 220px;
}

.eko-footer__col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.eko-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eko-footer__col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--eko-transition);
}

.eko-footer__col-links a:hover {
  color: var(--eko-white);
}

.eko-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.eko-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
  max-width: 600px;
}

.eko-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.eko-footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  text-decoration: none;
}

.eko-footer__legal-links a:hover {
  color: rgba(255,255,255,0.70);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.eko-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--eko-bg-dark-panel);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px clamp(20px, 4vw, 48px);
  z-index: 9000;
  display: none;
}

.eko-cookie.is-visible { display: block; }

.eko-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.eko-cookie__text {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  min-width: 200px;
}

.eko-cookie__text a {
  color: var(--eko-accent);
  text-decoration: underline;
}

.eko-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.eko-cookie__accept {
  background: var(--eko-accent);
  color: var(--eko-white);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--eko-transition);
}

.eko-cookie__accept:hover { background: var(--eko-accent-hover); }

.eko-cookie__essential {
  background: transparent;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--eko-transition);
}

.eko-cookie__essential:hover { background: rgba(255,255,255,0.08); }

body.eko-cookie-visible { padding-bottom: 80px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.eko-legal-hero {
  background: var(--eko-bg-alt);
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--eko-border);
}

.eko-legal-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-legal-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--eko-text);
  margin-bottom: 8px;
}

.eko-legal-hero__date {
  font-size: 14px;
  color: var(--eko-text-muted);
}

.eko-legal-content {
  padding: clamp(48px, 6vw, 80px) 0;
}

.eko-legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-legal-content h2 {
  font-size: 22px;
  color: var(--eko-text);
  margin: 36px 0 12px;
  font-weight: 700;
}

.eko-legal-content h3 {
  font-size: 17px;
  color: var(--eko-text);
  margin: 24px 0 10px;
  font-weight: 600;
}

.eko-legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eko-text-secondary);
  margin-bottom: 16px;
}

.eko-legal-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}

.eko-legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--eko-text-secondary);
  margin-bottom: 6px;
}

.eko-legal-content a {
  color: var(--eko-accent);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.eko-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 48px);
}

.eko-404__code {
  font-size: 96px;
  font-weight: 800;
  color: var(--eko-accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--eko-mono);
}

.eko-404 h1 {
  font-size: 32px;
  color: var(--eko-text);
  margin-bottom: 16px;
}

.eko-404 p {
  font-size: 17px;
  color: var(--eko-text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CASE STUDY CARD
   ============================================================ */
.eko-case-card {
  background: var(--eko-bg-dark-panel);
  border-radius: var(--eko-radius);
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.eko-case-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  margin-bottom: 12px;
}

.eko-case-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--eko-white);
  margin-bottom: 16px;
}

.eko-case-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
}

.eko-case-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.eko-case-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

.eko-case-metric__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--eko-accent);
  font-family: var(--eko-mono);
  line-height: 1;
  margin-bottom: 6px;
}

.eko-case-metric__label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ============================================================
   FEATURE LIST DETAILED
   ============================================================ */
.eko-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eko-feature-detail-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-border);
  border-radius: var(--eko-radius);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.eko-feature-detail-card__icon {
  width: 48px;
  height: 48px;
  background: var(--eko-accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eko-accent);
  flex-shrink: 0;
}

.eko-feature-detail-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--eko-text);
  margin-bottom: 8px;
}

.eko-feature-detail-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--eko-text-secondary);
  margin-bottom: 12px;
}

.eko-feature-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eko-feature-spec {
  font-size: 12px;
  font-family: var(--eko-mono);
  color: var(--eko-accent);
  background: var(--eko-accent-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.eko-divider {
  height: 1px;
  background: var(--eko-border);
  margin: 0;
}

.text-accent { color: var(--eko-accent); }
.text-white { color: var(--eko-white); }
.text-muted { color: var(--eko-text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .eko-nav__links { display: none; }
  .eko-nav__actions { display: none; }
  .eko-nav__hamburger { display: flex; }

  .eko-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .eko-subhero__inner { grid-template-columns: 1fr; gap: 32px; }
  .eko-subhero__motif { justify-content: flex-start; }
  .eko-hero__visual { justify-content: flex-start; }

  .eko-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .eko-steps { grid-template-columns: repeat(2, 1fr); }
  .eko-steps::before { display: none; }

  .eko-two-col { grid-template-columns: 1fr; }
  .eko-dark-panel__inner { grid-template-columns: 1fr; gap: 40px; }

  .eko-footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .eko-footer__brand { grid-column: 1 / -1; }

  .eko-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .eko-integration-grid { grid-template-columns: 1fr 1fr; }
  .eko-team-grid { grid-template-columns: repeat(3, 1fr); }
  .eko-contact-grid { grid-template-columns: 1fr; }
  .eko-partner-grid { grid-template-columns: 1fr; }
  .eko-founder-grid { grid-template-columns: 1fr; }
  .eko-blog-featured { grid-template-columns: 1fr; }
  .eko-blog-featured__body { padding: 24px; }
  .eko-case-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .eko-feature-grid { grid-template-columns: 1fr; }
  .eko-steps { grid-template-columns: 1fr; }
  .eko-testimonials { grid-template-columns: 1fr; }
  .eko-stats-row { grid-template-columns: 1fr; }
  .eko-blog-grid { grid-template-columns: 1fr; }
  .eko-values-grid { grid-template-columns: 1fr; }
  .eko-icon-grid { grid-template-columns: 1fr; }
  .eko-sdk-grid { grid-template-columns: 1fr; }
  .eko-integration-grid { grid-template-columns: 1fr; }
  .eko-team-grid { grid-template-columns: repeat(2, 1fr); }
  .eko-form-row { grid-template-columns: 1fr; }
  .eko-footer__top { grid-template-columns: 1fr 1fr; }
  .eko-case-card__metrics { grid-template-columns: 1fr; }
  .eko-footer__bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .eko-team-grid { grid-template-columns: 1fr 1fr; }
  .eko-footer__top { grid-template-columns: 1fr; }
  .eko-hero__ctas { flex-direction: column; align-items: flex-start; }
  .eko-cta-band__buttons { flex-direction: column; align-items: center; }
  .eko-cta-light__buttons { flex-direction: column; align-items: center; }
}

/* ============================================================
   BLOG ARTICLE DETAIL (BEM variant)
   ============================================================ */
.eko-article {
  background: var(--eko-white);
}

.eko-article__header {
  background: var(--eko-bg-dark);
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.eko-article__header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eko-article__meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eko-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--eko-transition);
}

.eko-article__back:hover { color: var(--eko-white); }
.eko-article__back i { font-size: 11px; }

.eko-article__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eko-accent);
  background: rgba(28,152,130,0.15);
  padding: 3px 10px;
  border-radius: 4px;
}

.eko-article__header h1 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--eko-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 820px;
}

.eko-article__lede {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
  margin-bottom: 28px;
  max-width: 720px;
}

.eko-article__byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}

.eko-article__byline-sep { color: rgba(255,255,255,0.25); }

.eko-article__cover {
  width: 100%;
  background: var(--eko-bg-dark);
  padding: 0 0 clamp(48px, 6vw, 64px);
}

.eko-article__cover-img {
  display: block;
  max-width: 1200px;
  width: calc(100% - clamp(40px, 8vw, 96px));
  margin: 0 auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--eko-radius);
}

.eko-article__body {
  padding: clamp(48px, 6vw, 80px) 0;
}

.eko-article__body-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  min-height: 120px;
}

.eko-article__body-inner h2 {
  font-size: 26px;
  color: var(--eko-text);
  margin: 40px 0 16px;
  font-weight: 700;
}

.eko-article__body-inner h3 {
  font-size: 20px;
  color: var(--eko-text);
  margin: 32px 0 12px;
  font-weight: 600;
}

.eko-article__body-inner p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eko-text-secondary);
  margin-bottom: 20px;
}

.eko-article__body-inner ul,
.eko-article__body-inner ol {
  margin: 0 0 20px 24px;
}

.eko-article__body-inner ul { list-style: disc; }
.eko-article__body-inner ol { list-style: decimal; }

.eko-article__body-inner li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eko-text-secondary);
  margin-bottom: 8px;
}

.eko-article__body-inner a {
  color: var(--eko-accent);
  text-decoration: underline;
}

.eko-article__footer {
  background: var(--eko-bg-alt);
  border-top: 1px solid var(--eko-border);
  padding: clamp(40px, 5vw, 60px) 0;
}

.eko-article__footer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eko-article__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.eko-article__cta p {
  font-size: 15px;
  color: var(--eko-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .eko-article__footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .eko-article__cover-img {
    border-radius: 0;
    width: 100%;
  }
}
