/* ══════════════════════════════════════════════════
   EYEPLAY  •  Public Frontend CSS
   Brand: Crimson #C8202F · Cyan #0099CC · White
   Font: DM Sans
   ══════════════════════════════════════════════════ */

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

/* ── Variables ─────────────────────────────────── */
:root {
  --bg:         #FFFFFF;
  --bg-2:       #F7F8FA;
  --bg-3:       #EFF1F5;
  --card:       #FFFFFF;
  --border:     #E4E7EE;
  --text:       #0F1117;
  --text-2:     #3D4354;
  --text-3:     #6B7280;
  --red:        #C8202F;
  --red-dark:   #A01825;
  --red-light:  rgba(200,32,47,.08);
  --cyan:       #0099CC;
  --cyan-dark:  #0077AA;
  --cyan-light: rgba(0,153,204,.08);
  --silver:     #A8A8A8;
  --amber:      #F5A623;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.10);
  --nav-h:      64px;
  --radius:     14px;
}

[data-theme="dark"] {
  --bg:         #080C14;
  --bg-2:       #0D1220;
  --bg-3:       #141C2E;
  --card:       #141C2E;
  --border:     rgba(255,255,255,.07);
  --text:       #EDF0F7;
  --text-2:     #A8B4CC;
  --text-3:     #596480;
  --red:        #F05060;
  --red-light:  rgba(240,80,96,.1);
  --cyan:       #00C4FF;
  --cyan-light: rgba(0,196,255,.1);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,.4);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.6);
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font-family: 'DM Sans', sans-serif; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ══ NAVIGATION ══════════════════════════════════ */
.ep-nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.ep-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 0;
}
.ep-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: var(--text);
  text-decoration: none; flex-shrink: 0;
}
.ep-logo:hover { text-decoration: none; }
.ep-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 13px;
  flex-shrink: 0;
}
.ep-logo span { color: var(--text); }

.ep-nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: 32px; flex: 1;
  list-style: none;
}
.ep-nav-links > li { position: relative; }
.ep-nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: .15s; text-decoration: none; white-space: nowrap;
}
.ep-nav-links > li > a:hover,
.ep-nav-links > li > a.active { color: var(--red); background: var(--red-light); }

/* Dropdown */
.ep-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .18s cubic-bezier(.4,0,.2,1); z-index: 600;
}
.ep-nav-links > li:hover .ep-dropdown { opacity: 1; visibility: visible; transform: none; }
.ep-dropdown a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: .12s;
}
.ep-dropdown a:hover { background: var(--bg-2); color: var(--text); }

.ep-nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ep-theme-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-2);
  transition: .15s; flex-shrink: 0;
}
.ep-theme-btn:hover { background: var(--bg-3); color: var(--text); }

/* Mobile menu toggle */
.ep-burger {
  display: none; width: 34px; height: 34px; border-radius: 8px;
  background: none; border: 1px solid var(--border);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; padding: 0;
}
.ep-burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* Mobile drawer */
.ep-drawer {
  display: none; position: fixed; inset: 0; z-index: 450;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
}
.ep-drawer.open { display: block; }
.ep-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--card); padding: 24px;
  overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .25s ease;
}
.ep-drawer.open .ep-drawer-panel { transform: none; }
.ep-drawer-links { list-style: none; margin-top: 16px; }
.ep-drawer-links li a { display: block; padding: 12px 10px; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; color: var(--text); }
.ep-drawer-links li a:hover { color: var(--red); text-decoration: none; }

/* ══ BUTTONS ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all .15s; line-height: 1; letter-spacing: -.01em;
}
.btn:hover { text-decoration: none; }
.btn-red     { background: var(--red);  color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-cyan    { background: var(--cyan); color: #fff; }
.btn-cyan:hover { background: var(--cyan-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--text-3); background: var(--bg-2); }
.btn-ghost   { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }

/* ══ LAYOUT HELPERS ══════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--red); }

.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.15; color: var(--text);
}
.section-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.7; margin-top: 12px; max-width: 560px;
}

/* ══ CARDS ════════════════════════════════════════ */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Product card */
.prod-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .2s;
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--cyan); }
.prod-card-img {
  width: 100%; aspect-ratio: 16/10;
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.prod-card:hover .prod-card-img img { transform: scale(1.04); }
.prod-card-body { padding: 18px 20px; }
.prod-card-cat {
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.prod-card-name { font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.prod-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.prod-price { font-size: 13px; font-weight: 700; color: var(--text-3); }
.prod-price.has-price { color: var(--red); font-size: 15px; }

/* Image placeholder */
.img-ph {
  background: var(--bg-2); border: 1.5px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 12px; gap: 8px; width: 100%; height: 100%;
}
.img-ph .ico { font-size: 32px; opacity: .5; }

/* ══ HERO ═════════════════════════════════════════ */
.ep-hero {
  padding: 100px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.ep-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ep-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); color: var(--red);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(200,32,47,.15);
  margin-bottom: 20px;
}
.ep-hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.07; color: var(--text);
  margin-bottom: 20px;
}
.ep-hero h1 em { font-style: normal; color: var(--red); }
.ep-hero-desc { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.ep-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ep-hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.ep-stat-num { font-size: 28px; font-weight: 900; letter-spacing: -.03em; color: var(--red); }
.ep-stat-lbl { font-size: 12px; color: var(--text-3); font-weight: 500; margin-top: 2px; }

.ep-hero-visual {
  position: relative; aspect-ratio: 4/3;
  background: var(--bg-2); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.ep-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.ep-hero-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.5);
}
[data-theme="dark"] .ep-hero-badge { background: rgba(20,28,46,.9); border-color: rgba(255,255,255,.1); }
.ep-hero-badge-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ep-hero-badge-text strong { display: block; font-size: 13px; font-weight: 700; }
.ep-hero-badge-text span { font-size: 11px; color: var(--text-3); }

/* ══ GRID LAYOUTS ════════════════════════════════ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ══ FEATURE SECTION ════════════════════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all .2s;
}
.feat-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); }
.feat-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feat-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feat-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ══ TABS ════════════════════════════════════════ */
.ep-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.ep-tab {
  padding: 9px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; border: 1.5px solid var(--border);
  background: var(--card); color: var(--text-2); cursor: pointer;
  transition: .15s; white-space: nowrap;
}
.ep-tab:hover { border-color: var(--text-3); color: var(--text); }
.ep-tab.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ══ SPEC TABLE ══════════════════════════════════ */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 0; font-size: 13px; vertical-align: top; }
.spec-table td:first-child { color: var(--text-3); font-weight: 500; width: 44%; padding-right: 16px; }
.spec-table td:last-child { font-weight: 600; color: var(--text); }

/* ══ CTA BANNER ══════════════════════════════════ */
.ep-cta {
  background: var(--red); color: #fff;
  border-radius: 20px; padding: 56px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.ep-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,.12) 0%, transparent 60%);
}
.ep-cta h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; position: relative; }
.ep-cta p { font-size: 16px; opacity: .85; margin-bottom: 28px; position: relative; }
.ep-cta .btn-white { background: #fff; color: var(--red); font-weight: 700; }
.ep-cta .btn-white:hover { background: #f0f0f0; }

/* ══ FOOTER ══════════════════════════════════════ */
.ep-footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.ep-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ep-footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.7; margin-top: 10px; max-width: 280px; }
.ep-footer h4 { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.ep-footer ul { list-style: none; }
.ep-footer ul li { margin-bottom: 8px; }
.ep-footer ul li a { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color .15s; }
.ep-footer ul li a:hover { color: var(--red); }
.ep-footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ep-footer-bottom p { font-size: 12px; color: var(--text-3); }

/* Certifications strip */
.cert-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.cert-badge { background: var(--bg-3); border: 1px solid var(--border); border-radius: 7px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: var(--text-3); }

/* ══ NEWSLETTER SUBSCRIBE BAR ════════════════════ */
.ep-subscribe { display: flex; gap: 8px; max-width: 440px; }
.ep-subscribe input {
  flex: 1; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 9px; padding: 10px 14px; font-family: 'DM Sans',sans-serif;
  font-size: 13px; color: var(--text); outline: none;
}
.ep-subscribe input:focus { border-color: var(--cyan); }

/* ══ BREADCRUMB ══════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-3); padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { opacity: .4; }

/* ══ PAGE HERO (inner pages) ══════════════════════ */
.page-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.page-hero h1 { font-size: clamp(28px,4vw,44px); font-weight: 900; letter-spacing: -.03em; }
.page-hero p { font-size: 16px; color: var(--text-2); margin-top: 10px; max-width: 560px; }

/* ══ FORMS ════════════════════════════════════════ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 7px; }
.form-control {
  width: 100%; background: var(--bg-2);
  border: 1.5px solid var(--border); border-radius: 9px;
  color: var(--text); font-family: 'DM Sans',sans-serif; font-size: 14px;
  padding: 10px 14px; outline: none; transition: border .15s, box-shadow .15s;
  appearance: none;
}
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,153,204,.12); }
.form-control::placeholder { color: var(--text-3); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══ CONTACT PAGE ════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-info-card { background: var(--red); border-radius: 18px; padding: 32px; color: #fff; }
.contact-info-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; margin-bottom: 3px; }
.contact-info-text span { font-size: 14px; }

/* ══ TOAST ════════════════════════════════════════ */
#toast { position: fixed; bottom: 20px; right: 20px; z-index: 9999; background: var(--card); border: 1px solid var(--border); color: var(--text); font-size: 13px; font-weight: 500; padding: 12px 18px; border-radius: 11px; box-shadow: var(--shadow-lg); transform: translateY(60px); opacity: 0; transition: all .3s cubic-bezier(.34,1.4,.64,1); display: flex; align-items: center; gap: 9px; max-width: 320px; }
#toast.show { transform: none; opacity: 1; }
#toast.toast-success { border-left: 3px solid var(--cyan); }
#toast.toast-error   { border-left: 3px solid var(--red); }

/* ══ DATASHEETS PAGE ════════════════════════════ */
.dl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.dl-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: all .2s; }
.dl-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.dl-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--red-light); border: 1px solid rgba(200,32,47,.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dl-info { flex: 1; overflow: hidden; }
.dl-name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-cat  { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.dl-btn  { background: var(--cyan-light); border: 1px solid rgba(0,153,204,.2); border-radius: 8px; color: var(--cyan); font-size: 11px; font-weight: 700; padding: 6px 10px; white-space: nowrap; text-decoration: none; transition: .15s; flex-shrink: 0; }
.dl-btn:hover { background: var(--cyan); color: #fff; text-decoration: none; }

/* ══ ABOUT ════════════════════════════════════════ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 28px; }
.tl-dot { position: absolute; left: -23px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); border: 2px solid var(--bg); }
.tl-year { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.tl-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ══ SOFTWARE PAGE ═══════════════════════════════ */
.sw-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.sw-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sw-header { padding: 24px; border-bottom: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start; }
.sw-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--cyan-light); border: 1px solid rgba(0,153,204,.2); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.sw-body { padding: 20px 24px; }
.sw-footer { padding: 14px 24px; background: var(--bg-2); border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }

/* ══ RESPONSIVE ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .ep-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 800px) {
  .ep-nav-links { display: none; }
  .ep-burger { display: flex; }
  .ep-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .ep-hero { padding: 60px 0 48px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 0; }
  .ep-hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .ep-cta { padding: 36px 24px; }
  .container { padding: 0 16px; }
  .ep-hero h1 { font-size: 32px; }
  .ep-hero-stats { gap: 14px; flex-wrap: wrap; }
}
