/* =====================================================
   ECOMMERCE-SEO.CSS — RankBoost Agency (2026)
   Follows master.css design tokens exactly.
   Prefix: .ec- (ecommerce)
   ===================================================== */

/* ─── HERO ─── */
.ec-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 0;
  background: linear-gradient(160deg, #FAFAFD 0%, #F2F0FC 55%, #fff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.ec-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 6% 18%,  rgba(91,71,224,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 22%,  rgba(200,255,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 88%,  rgba(91,71,224,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ec-hero-orb {
  position: absolute; border-radius: 999px;
  filter: blur(32px); opacity: 0.5; pointer-events: none; will-change: transform;
}
.ec-hero-orb--purple {
  width: 220px; height: 220px; left: 5%; top: 22%;
  background: rgba(91,71,224,0.2);
  animation: ecFloat 7s ease-in-out infinite;
}
.ec-hero-orb--lime {
  width: 160px; height: 160px; right: 8%; top: 14%;
  background: rgba(200,255,0,0.38);
  animation: ecFloat 8.5s ease-in-out infinite reverse;
}
@keyframes ecFloat {
  0%, 100% { transform: translate(0,0); }
  38% { transform: translate(16px,-26px); }
  70% { transform: translate(-12px,18px); }
}
.ec-hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--grid-gap-lg); align-items: center;
}
@media (min-width: 1024px) {
  .ec-hero-inner { grid-template-columns: 1fr 480px; }
}
.ec-hero-copy h1 {
  font-size: var(--fs-h1); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.032em;
  color: var(--ink); margin-top: var(--space-xs);
}
.ec-hero-copy h1 em { font-style: normal; color: var(--primary); }

.ec-hero-visual {
  position: relative; border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(91,71,224,0.04);
  background: var(--surface); overflow: hidden;
  min-height: 460px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.ec-hero-visual:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 40px 100px rgba(0,0,0,0.14);
}
.ec-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}

/* Floating stat chips on hero visual */
.ec-chip {
  position: absolute;
  display: flex; align-items: center; gap: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 11px 16px;
  font-size: 12.5px; font-weight: 800; color: var(--ink);
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.ec-chip-a { bottom: 18%; left: -10%; animation: chipPulse 3.5s ease-in-out infinite; }
.ec-chip-b { top:  16%; right: -8%; animation: chipPulse 4.5s ease-in-out infinite 1s; }
.ec-chip-c { bottom: 38%; right: -10%; animation: chipPulse 4s ease-in-out infinite 0.5s; }
@keyframes chipPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.ec-chip-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ec-chip-icon--green  { background: rgba(34,197,94,0.12); }
.ec-chip-icon--purple { background: var(--primary-light); }
.ec-chip-icon--amber  { background: rgba(234,179,8,0.12); }
.ec-chip strong { display: block; font-size: 17px; font-weight: 900; line-height: 1; }
.ec-chip span   { display: block; font-size: 10.5px; font-weight: 700; color: var(--ink-faint); margin-top: 2px; }

/* Bottom wave spacer */
.ec-hero-wave {
  margin-top: 80px; line-height: 0; overflow: hidden;
}
.ec-hero-wave svg { display: block; width: 100%; }

/* ─── WHAT IS ECOMMERCE SEO ─── */
.ec-intro-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ec-intro-grid {
  display: grid; gap: var(--grid-gap-lg); align-items: center;
}
@media (min-width: 1024px) { .ec-intro-grid { grid-template-columns: 1fr 1fr; } }

.ec-intro-visual {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  min-height: 420px; position: relative; background: var(--surface-2);
}
.ec-intro-visual img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}
.ec-intro-float {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: var(--space-sm);
}
.ec-intro-float-icon {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--accent); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; flex-shrink: 0;
}
.ec-intro-float strong { display: block; font-size: 18px; font-weight: 900; color: var(--ink); line-height: 1; }
.ec-intro-float span   { display: block; font-size: 11.5px; font-weight: 700; color: var(--ink-faint); margin-top: 3px; }

.ec-intro-copy h2 {
  font-size: var(--fs-h2); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.025em;
  margin-top: var(--space-sm);
}
.ec-intro-copy p {
  font-size: var(--fs-body-lg); color: var(--ink-muted);
  line-height: 1.78; margin-top: var(--space-md);
}
.ec-intro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap-sm); margin-top: var(--space-lg);
}
.ec-intro-stat {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-2); padding: 16px;
  text-align: center;
  transition: border-color 180ms, box-shadow 180ms;
}
.ec-intro-stat:hover { border-color: rgba(91,71,224,0.22); box-shadow: var(--shadow-sm); }
.ec-intro-stat strong {
  display: block; font-size: 28px; font-weight: 900;
  color: var(--primary); line-height: 1; letter-spacing: -0.03em;
}
.ec-intro-stat span {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: var(--space-xs); line-height: 1.4;
}

/* ─── CHALLENGES SECTION ─── */
.ec-challenges-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--ink);
  position: relative; overflow: hidden;
}
.ec-challenges-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 90% 20%, rgba(91,71,224,0.16), transparent 60%),
    radial-gradient(ellipse 35% 45% at 8%  80%, rgba(200,255,0,0.06),  transparent 60%);
  pointer-events: none;
}
.ec-challenges-section .eyebrow { color: var(--accent); }
.ec-challenges-section .eyebrow::before { background: var(--accent); }
.ec-challenges-section .section-heading h2 { color: #fff; }
.ec-challenges-section .section-heading p   { color: rgba(255,255,255,0.58); }
.ec-challenges-inner { position: relative; z-index: 1; }

.ec-challenges-grid {
  display: grid; gap: var(--space-md); margin-top: var(--heading-gap);
}
@media (min-width: 640px)  { .ec-challenges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ec-challenges-grid { grid-template-columns: repeat(4, 1fr); } }

.ec-challenge-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: var(--card-pad);
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.ec-challenge-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,255,0,0.2);
  transform: translateY(-3px);
}
.ec-challenge-icon {
  font-size: 26px; margin-bottom: var(--space-sm); display: block;
}
.ec-challenge-card h3 {
  font-size: 15px; font-weight: 800; color: #fff;
  letter-spacing: -0.01em; margin-bottom: var(--space-xs);
}
.ec-challenge-card p {
  font-size: 13px; color: rgba(255,255,255,0.52);
  line-height: 1.7; margin: 0;
}
.ec-challenge-card .ec-pain-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: var(--space-sm); padding: 4px 10px; border-radius: 100px;
  background: rgba(200,255,0,0.1); color: var(--accent);
  font-size: 10.5px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.07em;
}

/* ─── SERVICES SECTION ─── */
.ec-services-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ec-services-grid {
  display: grid; gap: var(--grid-gap-sm); margin-top: var(--heading-gap);
}
@media (min-width: 640px)  { .ec-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .ec-services-grid { grid-template-columns: repeat(3, 1fr); } }

.ec-service-card {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: var(--surface); padding: var(--card-pad);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
}
.ec-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary-light);
  transition: background 200ms;
}
.ec-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,71,224,0.2);
}
.ec-service-card:hover::before { background: var(--primary); }
.ec-service-card.featured {
  border-color: rgba(91,71,224,0.25);
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--surface) 100%);
  grid-column: 1 / -1;
}
@media (min-width: 1200px) {
  .ec-service-card.featured { grid-column: span 1; }
}
.ec-service-card.featured::before { background: var(--primary); }

.ec-service-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: var(--space-md); flex-shrink: 0;
  transition: background 200ms, transform 200ms;
}
.ec-service-card:hover .ec-service-icon {
  background: var(--primary); color: #fff; transform: scale(1.06);
}
.ec-service-card h3 {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.015em; margin-bottom: var(--space-sm); color: var(--ink);
}
.ec-service-card p {
  font-size: 13.5px; color: var(--ink-muted);
  line-height: 1.72; flex: 1; margin-bottom: var(--space-md);
}
.ec-service-list {
  display: grid; gap: var(--space-xs); margin-bottom: var(--space-md);
}
.ec-service-list li {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: 12.5px; color: var(--ink-muted);
}
.ec-service-list li::before {
  content: '→'; color: var(--primary); font-weight: 900; font-size: 11px; flex-shrink: 0;
}
.ec-service-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--primary); font-size: 13px; font-weight: 800;
  margin-top: auto; transition: gap 180ms; text-decoration: none;
}
.ec-service-link:hover { gap: 11px; }
.ec-service-link svg { width: 14px; height: 14px; }

/* ─── PLATFORMS SECTION ─── */
.ec-platforms-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.ec-platforms-grid {
  display: grid; gap: var(--space-md); margin-top: var(--heading-gap);
}
@media (min-width: 640px)  { .ec-platforms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ec-platforms-grid { grid-template-columns: repeat(3, 1fr); } }

.ec-platform-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
  position: relative; overflow: hidden;
}
.ec-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,71,224,0.2);
}
.ec-platform-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 10.5px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.ec-platform-badge--popular { background: var(--accent); color: #000; }
.ec-platform-badge--common  { background: var(--primary-light); color: var(--primary); }

.ec-platform-logo {
  display: flex; align-items: center; gap: var(--grid-gap-sm);
  margin-bottom: var(--space-md);
}
.ec-platform-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--surface-2);
}
.ec-platform-card h3 {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
}
.ec-platform-card > p {
  font-size: 14px; color: var(--ink-muted); line-height: 1.72; margin-bottom: var(--space-md);
}
.ec-platform-features {
  display: grid; gap: 7px; margin-bottom: var(--space-md);
}
.ec-platform-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--ink-muted); line-height: 1.5;
}
.ec-platform-features li::before {
  content: '✓';
  display: inline-flex; width: 18px; height: 18px;
  align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(91,71,224,0.1);
  color: var(--primary); font-size: 10px; font-weight: 900;
  flex-shrink: 0; margin-top: 1px;
}
.ec-platform-cta {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  color: var(--primary); font-size: 13px; font-weight: 800;
  transition: gap 180ms; text-decoration: none;
}
.ec-platform-cta:hover { gap: var(--space-sm); }
.ec-platform-cta svg { width: 14px; height: 14px; }

/* ─── WHY CHOOSE ─── */
.ec-why-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ec-why-grid {
  display: grid; gap: var(--grid-gap-lg); align-items: center; margin-top: var(--heading-gap);
}
@media (min-width: 1024px) { .ec-why-grid { grid-template-columns: 1fr 1fr; } }

.ec-why-visual {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  min-height: 460px; position: relative; background: var(--surface-2);
}
.ec-why-visual img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}
.ec-why-metrics {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
}
.ec-why-metric {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.ec-why-metric strong {
  display: block; font-size: 20px; font-weight: 900;
  color: var(--primary); line-height: 1; letter-spacing: -0.025em;
}
.ec-why-metric span {
  display: block; font-size: 10.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: var(--space-xs); line-height: 1.3;
}
.ec-why-pillars { display: grid; gap: var(--space-md); }
.ec-why-pillar {
  display: grid; grid-template-columns: 48px 1fr;
  gap: var(--grid-gap-sm); align-items: start;
  padding: var(--card-pad-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms, border-color 180ms, box-shadow 180ms;
}
.ec-why-pillar:hover {
  transform: translateX(5px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
}
.ec-why-pillar-num {
  display: flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: var(--primary);
  color: #fff; font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.ec-why-pillar h3 {
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: var(--space-xs);
}
.ec-why-pillar p {
  font-size: 13.5px; color: var(--ink-muted);
  line-height: 1.68; margin: 0;
}

/* ─── PROCESS SECTION ─── */
.ec-process-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.ec-process-track {
  display: grid; gap: 0; margin-top: var(--heading-gap); position: relative;
}
@media (min-width: 1024px) {
  .ec-process-track { grid-template-columns: repeat(7, 1fr); }
  .ec-process-track::before {
    content: ''; display: block;
    position: absolute; top: 27px;
    left: calc(100% / 14); right: calc(100% / 14);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(91,71,224,0.15) 100%);
    z-index: 0;
  }
}
.ec-process-step {
  padding: var(--card-pad) 16px; position: relative; z-index: 1;
  text-align: center;
  transition: transform 200ms;
}
.ec-process-step:hover { transform: translateY(-3px); }
.ec-process-bubble {
  width: 54px; height: 54px; border-radius: 999px;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--surface-2);
  box-shadow: 0 0 0 3px var(--primary), var(--shadow-primary);
  transition: transform 200ms, box-shadow 200ms;
}
.ec-process-step:hover .ec-process-bubble {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--primary), var(--shadow-primary-lg);
}
.ec-process-step h3 {
  font-size: 13.5px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: var(--space-xs);
}
.ec-process-step p {
  font-size: 12px; color: var(--ink-muted); line-height: 1.6; margin: 0;
}

/* ─── BENEFITS SECTION ─── */
.ec-benefits-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ec-benefits-grid {
  display: grid; gap: var(--space-md); margin-top: var(--heading-gap);
}
@media (min-width: 640px)  { .ec-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ec-benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.ec-benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
  position: relative; overflow: hidden;
}
.ec-benefit-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--primary-light);
  transition: background 200ms;
}
.ec-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,71,224,0.18);
}
.ec-benefit-card:hover::after { background: var(--primary); }
.ec-benefit-icon {
  font-size: 30px; margin-bottom: var(--space-sm); display: block;
}
.ec-benefit-card h3 {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.015em; margin-bottom: var(--space-xs); color: var(--ink);
}
.ec-benefit-card p {
  font-size: 13.5px; color: var(--ink-muted); line-height: 1.72; margin: 0;
}
.ec-benefit-stat {
  display: flex; align-items: baseline; gap: var(--space-xs); margin-top: var(--space-sm);
}
.ec-benefit-stat strong {
  font-size: 28px; font-weight: 900; color: var(--primary);
  letter-spacing: -0.03em; line-height: 1;
}
.ec-benefit-stat span { font-size: 12px; font-weight: 700; color: var(--ink-faint); }

/* ─── INDUSTRIES SECTION ─── */
.ec-industries-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.ec-industries-grid {
  display: grid; gap: var(--space-sm); margin-top: var(--heading-gap);
}
@media (min-width: 480px)  { .ec-industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .ec-industries-grid { grid-template-columns: repeat(4, 1fr); } }

.ec-industry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--card-pad) 20px;
  display: flex; align-items: center; gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: transform 180ms, border-color 180ms, box-shadow 180ms, background 180ms;
}
.ec-industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}
.ec-industry-icon {
  font-size: 26px; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.ec-industry-card h3 { font-size: 14.5px; font-weight: 800; color: var(--ink); }
.ec-industry-card p  { font-size: 12px; color: var(--ink-faint); font-weight: 700; margin-top: 3px; }

/* ─── FAQ ─── */
.ec-faq-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ec-faq-layout {
  display: grid; gap: var(--grid-gap-lg); align-items: start; margin-top: var(--heading-gap);
}
@media (min-width: 1024px) { .ec-faq-layout { grid-template-columns: 320px 1fr; } }

.ec-faq-sidebar {
  background: var(--primary-light);
  border: 1px solid rgba(91,71,224,0.15);
  border-radius: var(--r-xl); padding: var(--card-pad);
}
.ec-faq-sidebar h3 {
  font-size: 18px; font-weight: 800; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: var(--space-sm);
}
.ec-faq-sidebar p {
  font-size: 14px; color: var(--ink-muted); line-height: 1.72; margin-bottom: var(--space-md);
}
.ec-faq-trust { display: grid; gap: var(--space-sm); margin-top: var(--space-md); }
.ec-faq-trust-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--ink-muted);
}
.ec-faq-trust-row::before {
  content: '✓';
  display: inline-flex; width: 20px; height: 20px;
  align-items: center; justify-content: center;
  border-radius: 999px; background: var(--accent);
  color: #000; font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1023px) {
  .ec-hero { min-height: auto; padding-bottom: 60px; }
  .ec-chip-a, .ec-chip-b, .ec-chip-c { display: none; }
}
@media (max-width: 767px) {
  .ec-hero { padding-top: 120px; }
  .ec-hero-copy h1 { font-size: 32px; }
  .ec-hero-visual { min-height: 320px; }
  .ec-intro-stats { grid-template-columns: 1fr; }
  .ec-why-metrics { grid-template-columns: 1fr 1fr; }
  .ec-process-track { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .ec-process-track { grid-template-columns: 1fr; }
}