/* ================================================================
   exhost.co.uk — theme.css
   Adapted from Expressive Portal theme-v16
   Palette: Deep slate + Electric cyan + Soft white
   Font: Plus Jakarta Sans
================================================================ */

/* ── Tokens ── */
:root {
  /* Base — deep ocean blue */
  --bg:        #0a1628;
  --bg2:       #0f1e38;
  --bg3:       #142448;
  --bg4:       #1a2d58;

  /* Borders */
  --line:      rgba(255,255,255,0.08);
  --line2:     rgba(255,255,255,0.13);
  --line3:     rgba(255,255,255,0.20);

  /* Type */
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --faint:     #475569;

  /* Accent — electric cyan */
  --cyan:      #06b6d4;
  --cyan2:     #22d3ee;
  --cyan-dim:  rgba(6,182,212,0.12);
  --cyan-glow: rgba(6,182,212,0.22);

  /* Secondary accent — indigo */
  --indigo:    #6366f1;
  --indigo-dim:rgba(99,102,241,0.12);

  /* Status */
  --green:     #10b981;
  --amber:     #f59e0b;
  --red:       #ef4444;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Layout */
  --nav-h: 74px; /* fixed nav height — used for body padding-top clearance */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Subtle grid background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* ── Layout ── */
.ep-wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.ep-section { padding: 6rem 2rem; position: relative; z-index: 1; }
.ep-section--dark  { background: var(--bg2); }
.ep-section--darker{ background: var(--bg3); }

/* ── Typography helpers ── */
.ep-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.ep-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  flex-shrink: 0;
}

.ep-h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
.ep-h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.ep-h3 { font-size: 1.35rem; font-weight: 700; }

.ep-lead {
  font-size: 1.1rem; color: var(--muted);
  font-weight: 400; line-height: 1.75;
  max-width: 540px;
}

.ep-accent { color: var(--cyan); }
.ep-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.ep-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: var(--r-md);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.18s;
  letter-spacing: 0.01em; white-space: nowrap;
}
.ep-btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.ep-btn-primary:hover {
  background: var(--cyan2);
  box-shadow: 0 0 32px var(--cyan-glow);
  transform: translateY(-2px);
}
.ep-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line2);
}
.ep-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.ep-btn-ghost {
  background: var(--bg4);
  color: var(--text);
  border: 1px solid var(--line);
}
.ep-btn-ghost:hover { border-color: var(--line3); background: var(--bg3); }
.ep-btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--r-lg); }
.ep-btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.ep-btn-full { width: 100%; justify-content: center; }

/* ── Badges / tags ── */
.ep-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
}
.ep-badge-cyan  { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(6,182,212,0.2); }
.ep-badge-green { background: rgba(16,185,129,0.12); color: var(--green);  border: 1px solid rgba(16,185,129,0.2); }
.ep-badge-amber { background: rgba(245,158,11,0.12); color: var(--amber);  border: 1px solid rgba(245,158,11,0.2); }
.ep-badge-faint { background: var(--bg4); color: var(--muted); border: 1px solid var(--line); }
.ep-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Cards ── */
.ep-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.ep-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.ep-card--glow:hover {
  border-color: rgba(6,182,212,0.25);
  box-shadow: 0 0 32px var(--cyan-dim);
}

/* ── Divider ── */
.ep-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line2), transparent);
  margin: 0;
  border: none;
}

/* ── Nav ── */
.ep-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99990;
  height: var(--nav-h);
  padding: 0 3rem;
  display: flex; align-items: center; gap: 3rem;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.ep-nav.ep-nav--scrolled {
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--line2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* ── WordPress admin bar offset ── */
/* WP admin bar: 32px desktop, 46px mobile ≤782px */
.admin-bar .ep-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .ep-nav { top: 46px; }
}

/* All first-section content clears the fixed nav via margin-top on body */
body { padding-top: var(--nav-h); }
.admin-bar body { padding-top: calc(var(--nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar body { padding-top: calc(var(--nav-h) + 46px); }
}

.ep-nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.02em; white-space: nowrap;
}
.ep-nav-brand svg { flex-shrink: 0; }

/* exhost wordmark */
.eh-wordmark {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #06b6d4 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ep-nav-menu {
  display: flex; gap: 0.25rem; list-style: none; flex: 1;
}
.ep-nav-menu a {
  display: block; padding: 0.4rem 0.9rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r-sm);
  transition: all 0.15s;
}
.ep-nav-menu a:hover,
.ep-nav-menu a.active { color: var(--text); background: var(--bg4); }

.ep-nav-end {
  display: flex; align-items: center; gap: 0.75rem; margin-left: auto;
}

/* ── Uptime badge ── */
.eh-uptime-badge {
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 0.3rem 0.75rem 0.3rem 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.eh-uptime-badge:hover { background: rgba(255,255,255,0.08); border-color: var(--line3); color: var(--text); }
.eh-uptime-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #10b981;
  position: relative;
}
.eh-uptime-dot--pulse { background: #10b981; }
.eh-uptime-dot--pulse::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(16,185,129,0.35);
  animation: eh-pulse 2s ease-in-out infinite;
}
.eh-uptime-dot--alert { background: #ef4444; }
.eh-uptime-label { color: #10b981; font-weight: 700; }
.eh-uptime-dot--alert + .eh-uptime-label { color: #ef4444; }
.eh-uptime-ms {
  color: var(--faint);
  font-weight: 500;
  font-size: 0.7rem;
}
@keyframes eh-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.5); opacity: 0; }
}
/* Hide uptime ms on smaller screens to save space */
@media (max-width: 1100px) { .eh-uptime-ms { display: none; } }
@media (max-width: 900px)  { .eh-uptime-badge { display: none; } }
.ep-nav-login {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
  transition: color 0.15s;
}
.ep-nav-login:hover { color: var(--text); }

/* Mobile hamburger */
.ep-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.ep-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.ep-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: 4rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.ep-hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ep-hero-text { position: relative; z-index: 1; }
.ep-hero-actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap;
  align-items: center; margin-top: 2rem;
}
.ep-hero-meta {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.ep-meta-item strong { display: block; font-size: 1.1rem; font-weight: 800; }
.ep-meta-item span   { font-size: 0.8rem; color: var(--muted); }

/* Hero radial glow */
.ep-hero::before {
  content: '';
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero visual / mockup */
.ep-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ep-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  z-index: 2;
}
.ep-chip-1 { top: -12px; right: 20px; }
.ep-chip-2 { bottom: -12px; left: 20px; }
.ep-chip-cyan  { background: rgba(6,182,212,0.15); border: 1px solid rgba(6,182,212,0.3); color: var(--cyan); }
.ep-chip-green { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: var(--green); }

/* ── Stats row ── */
.ep-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.ep-stat-cell {
  padding: 1.75rem 1.5rem; text-align: center;
  border-right: 1px solid var(--line);
}
.ep-stat-cell:last-child { border-right: none; }
.ep-stat-val {
  display: block; font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--cyan);
}
.ep-stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

/* ── Feature grid ── */
.ep-feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.ep-feat-cell {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.ep-feat-cell:hover {
  border-color: rgba(6,182,212,0.25);
  transform: translateY(-3px);
  box-shadow: 0 0 32px var(--cyan-dim);
}
.ep-feat-ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--cyan-dim); border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.ep-feat-cell h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ep-feat-cell p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Pricing ── */
.ep-pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; align-items: start;
}
.ep-price-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.ep-price-card:hover { transform: translateY(-4px); }
.ep-price-card--featured {
  border-color: var(--cyan);
  background: linear-gradient(160deg, rgba(6,182,212,0.07) 0%, var(--bg2) 50%);
}
.ep-price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--bg);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.ep-price-name {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.ep-price-amount {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 0.25rem;
}
.ep-price-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; }
.ep-price-period { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.ep-price-desc { font-size: 0.85rem; color: var(--muted); margin: 0.75rem 0 1.5rem; }
.ep-price-divider { height: 1px; background: var(--line); margin-bottom: 1.5rem; }
.ep-price-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.ep-price-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.ep-price-features li:last-child { border-bottom: none; }
.ep-feat-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.ep-feat-x     { color: var(--faint); flex-shrink: 0; margin-top: 1px; }

/* ── Feature split rows ── */
.ep-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ep-split--rev .ep-split-visual { order: -1; }
.ep-split-text h2 { margin-bottom: 1rem; }
.ep-split-text p  { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.ep-split-list { list-style: none; }
.ep-split-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.ep-split-list li:last-child { border-bottom: none; }
.ep-split-list .ep-check { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.ep-split-visual {
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  min-height: 320px; display: flex; align-items: center; justify-content: center;
}

/* ── Steps ── */
.ep-steps { display: flex; flex-direction: column; gap: 0; }
.ep-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 1.5rem; align-items: start;
  padding: 2rem 0; border-bottom: 1px solid var(--line);
}
.ep-step:last-child { border-bottom: none; }
.ep-step-num {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; color: var(--bg4);
}
.ep-step h3 { margin-bottom: 0.4rem; }
.ep-step p  { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ── Compare table ── */
.ep-compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem;
}
.ep-compare-table th {
  padding: 1rem 1.25rem; text-align: left;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--line2);
}
.ep-compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.ep-compare-table tr:last-child td { border-bottom: none; }
.ep-compare-table tr:hover td { background: rgba(255,255,255,0.015); }
.ep-col-feature { font-weight: 500; }
.ep-col-yes { color: var(--green); font-weight: 600; }
.ep-col-no  { color: var(--faint); }

/* ── Testimonials ── */
.ep-testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.ep-testimonial {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
}
.ep-testi-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.75rem; }
.ep-testi-quote { font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.ep-testi-author { font-size: 0.8rem; font-weight: 700; }
.ep-testi-company { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── FAQ Accordion ── */
.ep-acc-item {
  border-bottom: 1px solid var(--line);
}
.ep-acc-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; text-align: left;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--text); transition: color 0.15s;
}
.ep-acc-trigger:hover { color: var(--cyan); }
.ep-acc-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-left: 1rem;
  color: var(--muted); transition: transform 0.25s;
}
.ep-acc-item.open .ep-acc-icon { transform: rotate(45deg); color: var(--cyan); }
.ep-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ep-acc-item.open .ep-acc-body { max-height: 400px; padding-bottom: 1.25rem; }
.ep-acc-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ── CTA Band ── */
.ep-cta-band {
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(99,102,241,0.1) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 2rem; text-align: center;
  position: relative; z-index: 1;
}
.ep-cta-band h2 { margin-bottom: 1rem; }
.ep-cta-band p  { color: var(--muted); max-width: 480px; margin: 0 auto 2rem; }

/* ── Footer ── */
.ep-footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 4rem 3rem 2rem;
  position: relative; z-index: 1;
}
.ep-footer-inner { max-width: 1160px; margin: 0 auto; }
.ep-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.ep-footer-brand h4 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem;
}
.ep-footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.ep-footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.ep-footer-col ul { list-style: none; }
.ep-footer-col ul li { margin-bottom: 0.6rem; }
.ep-footer-col ul a { font-size: 0.875rem; color: var(--muted); transition: color 0.15s; }
.ep-footer-col ul a:hover { color: var(--text); }
.ep-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.ep-footer-copy { font-size: 0.8rem; color: var(--faint); }
.ep-footer-legal { display: flex; gap: 1.5rem; }
.ep-footer-legal a { font-size: 0.8rem; color: var(--faint); transition: color 0.15s; }
.ep-footer-legal a:hover { color: var(--muted); }

/* ── Modal ── */
.ep-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.ep-modal-overlay.open { opacity: 1; pointer-events: auto; }
.ep-modal {
  background: var(--bg3); border: 1px solid var(--line2);
  border-radius: var(--r-xl); padding: 2.5rem;
  width: 100%; max-width: 460px;
  transform: translateY(16px); transition: transform 0.2s;
}
.ep-modal-overlay.open .ep-modal { transform: translateY(0); }
.ep-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.ep-modal-head h2 { font-size: 1.3rem; }
.ep-modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.5rem; line-height: 1;
  transition: color 0.15s;
}
.ep-modal-close:hover { color: var(--text); }
.ep-field { margin-bottom: 1.1rem; }
.ep-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; }
.ep-field input,
.ep-field select,
.ep-field textarea {
  width: 100%; background: var(--bg4);
  border: 1px solid var(--line2); border-radius: var(--r-md);
  padding: 0.7rem 0.9rem; font-family: inherit; font-size: 0.9rem;
  color: var(--text); transition: border-color 0.15s;
  -webkit-appearance: none;
}
.ep-field input:focus,
.ep-field select:focus,
.ep-field textarea:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.ep-field input::placeholder { color: var(--faint); }
.ep-field .req { color: var(--red); }
.ep-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ep-login-submit {
  width: 100%; padding: 0.85rem; border-radius: var(--r-md);
  background: var(--cyan); color: var(--bg);
  font-family: inherit; font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: background 0.18s, transform 0.15s;
  margin-top: 0.5rem;
}
.ep-login-submit:hover { background: var(--cyan2); transform: translateY(-1px); }
.ep-login-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ep-login-err { font-size: 0.8rem; color: var(--red); margin-top: 0.75rem; display: none; }
.ep-login-err.show { display: block; }
.ep-login-links { text-align: center; font-size: 0.8rem; color: var(--faint); margin-top: 1rem; }
.ep-login-links a { color: var(--cyan); }

/* ── Page hero (inner pages) ── */
.ep-page-hero {
  padding: 5rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.ep-page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ep-page-hero-inner {
  max-width: 1160px; margin: 0 auto;
}
.ep-page-hero h1 { max-width: 640px; margin-bottom: 1rem; }
.ep-page-hero .ep-lead { margin-bottom: 2rem; }

/* ── Hosting mockup visual ── */
.ep-hosting-mockup {
  background: var(--bg3); border: 1px solid var(--line2);
  border-radius: var(--r-xl); padding: 1.5rem;
  box-shadow: 0 32px 64px rgba(0,0,0,0.45);
  width: 100%;
}
.ep-hm-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.ep-hm-dots { display: flex; gap: 5px; }
.ep-hm-dot { width: 10px; height: 10px; border-radius: 50%; }
.ep-hm-dot-r { background: var(--red); }
.ep-hm-dot-y { background: var(--amber); }
.ep-hm-dot-g { background: var(--green); }
.ep-hm-url {
  flex: 1; background: var(--bg4); border-radius: 4px;
  padding: 4px 10px; font-size: 0.7rem; color: var(--faint);
  font-family: monospace;
}
.ep-hm-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ep-hm-metric {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 0.85rem 1rem;
}
.ep-hm-metric-val { font-size: 1.4rem; font-weight: 800; font-family: monospace; }
.ep-hm-metric-lbl { font-size: 0.65rem; color: var(--faint); margin-top: 2px; }
.ep-hm-status {
  grid-column: 1/-1; background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--r-md); padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--green); font-weight: 600;
}
.ep-hm-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Trust bar ── */
.ep-trust-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1.5rem; padding: 1.25rem 0;
}
.ep-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
}
.ep-trust-item svg { color: var(--cyan); }

/* ── Contact form full ── */
.ep-contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.ep-contact-info h3 { margin-bottom: 0.5rem; }
.ep-contact-info p  { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.ep-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-top: 1.5rem; font-size: 0.9rem;
}
.ep-contact-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.ep-contact-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.ep-contact-val { margin-top: 2px; }
.ep-contact-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2.5rem;
}

/* ── Hosting plan comparison (full table) ── */
.ep-plan-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 4px;
  width: fit-content; margin: 0 auto 3rem;
}
.ep-plan-toggle button {
  padding: 0.5rem 1.25rem; border-radius: var(--r-md);
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); transition: all 0.2s;
}
.ep-plan-toggle button.active {
  background: var(--bg4); color: var(--text);
}
.ep-plan-toggle .ep-save-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(16,185,129,0.15); color: var(--green);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 2px 6px; border-radius: 4px; text-transform: uppercase;
}

/* ── About page ── */
.ep-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ep-about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ep-about-values {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.ep-about-green {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}
.ep-value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.ep-value-card {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
}
.ep-value-ico { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ep-value-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.ep-value-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ep-nav { padding: 1rem 2rem; }
  .ep-nav.ep-nav--scrolled { padding: 0.8rem 2rem; }
  .ep-feat-grid { grid-template-columns: repeat(2,1fr); }
  .ep-pricing-grid { grid-template-columns: 1fr 1fr; }
  .ep-testi-grid { grid-template-columns: 1fr 1fr; }
  .ep-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ep-stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .ep-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ep-hero-visual { display: none; }
  .ep-split { grid-template-columns: 1fr; gap: 3rem; }
  .ep-split--rev .ep-split-visual { order: 0; }
  .ep-about-story { grid-template-columns: 1fr; gap: 3rem; }
  .ep-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ep-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ep-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .ep-nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.99); border-bottom: 1px solid var(--line); padding: 1rem; }
  .ep-nav-menu.ep-nav-menu--open { display: flex; }
  .ep-nav { position: fixed; }
  .ep-hamburger { display: block; }
  .ep-nav-end .ep-btn { display: none; }
  .ep-nav { padding: 0 1.5rem; }
  .ep-hero { padding: 3rem 1.5rem 4rem; min-height: calc(100vh - var(--nav-h)); }
  .ep-section { padding: 4rem 1.5rem; }
  .ep-page-hero { padding: 4rem 1.5rem 3.5rem; }
  .ep-feat-grid { grid-template-columns: 1fr; }
  .ep-testi-grid { grid-template-columns: 1fr; }
  .ep-footer { padding: 3rem 1.5rem 2rem; }
  .ep-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ep-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .ep-value-grid { grid-template-columns: 1fr; }
  .ep-about-values { grid-template-columns: 1fr; }
  .ep-about-green { grid-template-columns: 1fr 1fr; }
  .ep-stats-row { grid-template-columns: 1fr 1fr; }
  .ep-form-row { grid-template-columns: 1fr; }
  .ep-split-visual { display: none; }
  .ep-hm-body { grid-template-columns: 1fr; }
}
