@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400&display=swap');

/* ══════════════════════════════════════════
   ECOVASUDHA v5.1 — main.css
   Premium environmental intelligence theme
   Modes: Light (default) · Dark · Reading
   ══════════════════════════════════════════ */

/* ── DESIGN TOKENS — LIGHT MODE ── */
:root {
  --ev-primary:    #2B5740;
  --ev-primary-dk: #1A3A2A;
  --ev-primary-lt: #8BB59A;
  --ev-accent:     #5C8A6E;
  --ev-accent2:    #D4DDD7;
  --ev-bg:         #FAFAF8;
  --ev-bg2:        #FFFFFF;
  --ev-bg3:        #F4F3EF;
  --ev-surface:    #FFFFFF;
  --ev-border:     rgba(43, 87, 64, 0.10);
  --ev-border-strong: rgba(43, 87, 64, 0.18);
  --ev-text:       #1F2D25;
  --ev-text2:      #3D5347;
  --ev-text3:      #8A9A91;

  /* System */
  --ev-radius:     12px;
  --ev-radius-lg:  20px;
  --ev-radius-xl:  28px;
  --ev-shadow:     0 2px 8px rgba(0,0,0,0.03);
  --ev-shadow-md:  0 4px 12px rgba(0,0,0,0.04);
  --ev-shadow-lg:  0 8px 24px rgba(0,0,0,0.05);
  --ev-serif:      'Playfair Display', Georgia, serif;
  --ev-sans:       'Outfit', system-ui, -apple-system, sans-serif;
  --ev-mono:       'JetBrains Mono', ui-monospace, monospace;
  --ev-tr:         all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Hero */
  --ev-hero-bg:    #0F2E1F;
  --ev-hero-img:   none;
  --ev-pghdr-bg:   #0F2E1F;
  --ev-pghdr-img:  none;
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --ev-primary:    #8BB59A;
  --ev-primary-dk: #5C8A6E;
  --ev-primary-lt: #A8C9B4;
  --ev-accent:     #6D9B82;
  --ev-accent2:    #3D5347;
  --ev-bg:         #121A16;
  --ev-bg2:        #1A2620;
  --ev-bg3:        #22332A;
  --ev-surface:    #1E2D26;
  --ev-border:     rgba(139, 181, 154, 0.15);
  --ev-border-strong: rgba(139, 181, 154, 0.25);
  --ev-text:       #E8F0EA;
  --ev-text2:      #B3C6BC;
  --ev-text3:      #789284;
  --ev-shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --ev-shadow-md:  0 8px 24px rgba(0,0,0,0.5);
  --ev-shadow-lg:  0 16px 40px rgba(0,0,0,0.6);
  --ev-hero-bg:    linear-gradient(135deg, #0D1411 0%, #15221B 100%);
  --ev-pghdr-bg:   linear-gradient(135deg, #121A16 0%, #1A2620 100%);
}

/* ── READING MODE (sepia) ── */
[data-theme="reading"] {
  --ev-primary:    #5A4328;
  --ev-primary-dk: #3D2D1B;
  --ev-primary-lt: #8A6D4B;
  --ev-accent:     #7A5C38;
  --ev-accent2:    #D8CBAE;
  --ev-bg:         #F4ECD8;
  --ev-bg2:        #FCF5E3;
  --ev-bg3:        #EAE0C8;
  --ev-surface:    #FDF8EC;
  --ev-border:     rgba(90, 67, 40, 0.15);
  --ev-border-strong: rgba(90, 67, 40, 0.25);
  --ev-text:       #3D3121;
  --ev-text2:      #5C4A33;
  --ev-text3:      #8A7B66;
  --ev-shadow-sm:  0 2px 8px rgba(90,67,40,0.08);
  --ev-shadow-md:  0 8px 24px rgba(90,67,40,0.12);
  --ev-shadow-lg:  0 16px 40px rgba(90,67,40,0.15);
  --ev-hero-bg:    linear-gradient(135deg, #E6D5B8 0%, #D8C39F 100%);
  --ev-pghdr-bg:   linear-gradient(135deg, #F4ECD8 0%, #EAE0C8 100%);
}

/* ── BASE ── */
* { box-sizing: border-box; }
body {
  font-family: var(--ev-sans);
  color: var(--ev-text);
  background: var(--ev-bg);
  margin: 0;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
a { color: var(--ev-primary); text-decoration: none; transition: var(--ev-tr); }
a:hover { color: var(--ev-primary-dk); }
[data-theme="dark"] a:hover { color: var(--ev-primary-lt); }
h1, h2, h3, h4, h5 { font-family: var(--ev-serif); color: var(--ev-text); line-height: 1.18; margin: 0 0 1rem; font-weight: 600; letter-spacing: -0.02em; }
p  { margin: 0 0 1.2rem; color: var(--ev-text2); }
img { max-width: 100%; height: auto; }
ul { padding-left: 1.2rem; }
::selection { background: var(--ev-primary); color: #fff; }

/* ── LAYOUT ── */
.ev-wrap         { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.ev-wrap-wide    { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.ev-wrap-narrow  { max-width: 820px;  margin: 0 auto; padding: 0 5%; }

.ev-sec        { padding: 120px 0; background: var(--ev-bg); }
.ev-sec-sm     { padding: 80px 0; }
.ev-sec-dk     { background: var(--ev-primary-dk) !important; color: #fff; }
[data-theme="dark"] .ev-sec-dk { background: #050e08 !important; }

.ev-g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.ev-g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ev-g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.ev-tc { text-align: center; }
.ev-tc > * { margin-left: auto; margin-right: auto; }

.ev-sec-tag   { font-family: var(--ev-mono); font-size: .7rem; color: var(--ev-primary); text-transform: uppercase; letter-spacing: .18em; display: block; margin-bottom: .8rem; }
.ev-sec-title { font-family: var(--ev-serif); margin-bottom: 1rem; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.15; }
.ev-sec-title em { color: var(--ev-primary); font-style: italic; }
[data-theme="dark"] .ev-sec-title em { color: var(--ev-primary-lt); }
.ev-sec-sub   { color: var(--ev-text3); font-size: 1.02rem; max-width: 600px; line-height: 1.65; }

/* ── BUTTONS ── */
.ev-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  font-family: var(--ev-sans); font-size: .9rem; font-weight: 600;
  border: none; cursor: pointer; transition: var(--ev-tr);
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.01em;
}
.ev-btn-p    { background: var(--ev-primary); color: #fff; }
.ev-btn-p:hover { background: var(--ev-primary-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(45,90,64,.30); }
[data-theme="dark"] .ev-btn-p:hover { background: var(--ev-primary-lt); color: var(--ev-primary-dk); }
.ev-btn-o    { background: transparent; color: var(--ev-primary); border: 1.5px solid var(--ev-primary); }
.ev-btn-o:hover { background: var(--ev-primary); color: #fff; transform: translateY(-2px); }
.ev-btn-g    { background: var(--ev-bg3); color: var(--ev-primary); border: 1px solid var(--ev-border); }
.ev-btn-g:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); }
.ev-btn-gold { background: var(--ev-accent); color: var(--ev-primary-dk); }
.ev-btn-gold:hover { background: var(--ev-primary-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(15,46,31,.25); }
[data-theme="dark"] .ev-btn-gold { color: #0F2E1F; }
[data-theme="dark"] .ev-btn-gold:hover { color: #fff; }
.ev-btn-dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); }
.ev-btn-dark:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-2px); }
.ev-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.ev-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }
.ev-btn-sm   { padding: 8px 18px; font-size: .82rem; }
.ev-btn-lg   { padding: 15px 34px; font-size: .98rem; }
.ev-btn-block { width: 100%; justify-content: center; }
.ev-btn-arrow { transition: transform .25s ease; }
.ev-btn:hover .ev-btn-arrow { transform: translateX(4px); }

/* ── TOP BAR ── */
#ev-topbar { background: var(--ev-primary-dk); color: rgba(255,255,255,.72); font-size: .8rem; padding: 9px 0; }
[data-theme="dark"] #ev-topbar { background: #050e08; border-bottom: 1px solid var(--ev-border); }
.ev-topbar-in { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ev-topbar-r { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.ev-topbar-r a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 500; }
.ev-topbar-r a:hover { color: #fff; }

/* ── HEADER ── */
#site-header {
  background: rgba(250, 250, 248, 0.85);
  border-bottom: 1px solid var(--ev-border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
[data-theme="dark"] #site-header {
  background: rgba(18, 26, 22, 0.85);
}
[data-theme="reading"] #site-header {
  background: rgba(244, 236, 216, 0.85);
}
.ev-hdr-in { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1400px; margin: 0 auto; padding: 0 5%; gap: 1.5rem; }
.ev-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--ev-serif); font-size: 1.45rem; font-weight: 700; color: var(--ev-text); letter-spacing: -0.01em; }
.ev-logo:hover { color: var(--ev-text); }
.ev-logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg, var(--ev-primary), var(--ev-primary-lt)); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 12px rgba(45,90,64,.20); }
.ev-logo-txt span { color: var(--ev-primary); }
[data-theme="dark"] .ev-logo-txt span { color: var(--ev-primary-lt); }
.ev-logo img { max-height: 50px; width: auto; }

#ev-nav ul { list-style: none; display: flex; gap: .3rem; margin: 0; padding: 0; align-items: center; }
#ev-nav li > a { display: block; padding: 9px 15px; font-size: .9rem; font-weight: 500; color: var(--ev-text2); border-radius: 8px; transition: var(--ev-tr); }
#ev-nav li > a:hover { color: var(--ev-primary); background: var(--ev-bg3); }
[data-theme="dark"] #ev-nav li > a:hover { color: var(--ev-primary-lt); }
#ev-nav li.nav-cta > a { background: var(--ev-primary); color: #fff; padding: 9px 22px; border-radius: 100px; font-weight: 600; }
#ev-nav li.nav-cta > a:hover { background: var(--ev-primary-dk); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(45,90,64,.28); }

.ev-hdr-ctrl { display: flex; align-items: center; gap: .6rem; }
.ev-ctrl-btn { background: var(--ev-bg3); border: 1px solid var(--ev-border); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; transition: var(--ev-tr); }
.ev-ctrl-btn:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); }
.ev-search-btn { width: auto; padding: 0 16px; border-radius: 100px; font-weight: 600; font-size: 0.9rem; color: var(--ev-text); }

.ev-nav-cta-btn { display: inline-flex; }
@media (max-width: 920px) { .ev-nav-cta-btn { display: none; } }

.ev-mob-tog { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ev-text); padding: 4px 8px; }

@media (max-width: 920px) {
  .ev-mob-tog { display: block; }
  #ev-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--ev-bg2); padding: 1.5rem 5%;
    transform: translateX(100%); transition: transform .3s; overflow-y: auto;
    box-shadow: var(--ev-shadow-lg); z-index: 9999;
  }
  #ev-nav.open { transform: translateX(0); }
  #ev-nav ul { flex-direction: column; align-items: stretch; gap: .5rem; }
  #ev-nav li > a { padding: 14px 16px; font-size: 1rem; }
}

/* ══════════════════════════════════════════
   HERO — premium split layout
   ══════════════════════════════════════════ */
.ev-hero {
  position: relative; padding: 100px 0 88px;
  background: var(--ev-hero-bg); color: #fff; overflow: hidden;
}
.ev-hero.has-img { background-image: var(--ev-hero-img); background-size: cover; background-position: center; }
.ev-hero.has-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,46,31,.88) 0%, rgba(15,46,31,.72) 100%); }

.ev-hero-glow {
  position: absolute; top: -30%; right: -10%; width: 70%; height: 130%;
  background: radial-gradient(circle, rgba(127,169,142,.18) 0%, transparent 60%);
  pointer-events: none;
}
.ev-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,169,142,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,169,142,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

@keyframes evHeroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.ev-hero-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
/* Stacking at 1024px handled in the responsive section below */

.ev-hero-body { animation: evHeroIn .9s ease-out both; }

.ev-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(127,169,142,.13); border: 1px solid rgba(127,169,142,.30);
  color: #C5DCCB; font-family: var(--ev-mono); font-size: .68rem;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 1.8rem; letter-spacing: .12em; text-transform: uppercase;
}
.ev-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ev-primary-lt); animation: evDot 1.8s ease-in-out infinite; }
@keyframes evDot { 0%, 100% { opacity: .4; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

.ev-hero h1 {
  color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 1.4rem; line-height: 1.12; font-weight: 700; letter-spacing: -0.02em;
}
.ev-hero-sub {
  color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 2.2rem; max-width: 540px; font-weight: 300;
}
.ev-hero-sub strong { color: rgba(255,255,255,.95); font-weight: 500; }

.ev-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.ev-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.ev-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--ev-radius-lg); padding: 1.5rem; text-align: center; }
.ev-hero-stat { min-width: 130px; }
.ev-stat-n {
  font-family: var(--ev-mono); font-size: 1.5rem; color: var(--ev-primary-lt);
  font-weight: 600; display: block; line-height: 1.1; letter-spacing: -0.01em;
}
.ev-stat-l {
  font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: .1em; margin-top: 6px; display: block; line-height: 1.4;
}

/* ── HERO VISUAL CARD ── */
.ev-hero-visual {
  position: relative;
  animation: evHeroIn 1s ease-out .15s both;
}
.ev-hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--ev-radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
}
.ev-hero-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}
.ev-hero-card-dots { display: flex; gap: 6px; }
.ev-hero-card-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.ev-hero-card-dots span:nth-child(1) { background: rgba(201,123,91,.55); }
.ev-hero-card-dots span:nth-child(2) { background: rgba(184,149,106,.55); }
.ev-hero-card-dots span:nth-child(3) { background: rgba(127,169,142,.55); }
.ev-hero-card-title { font-family: var(--ev-mono); font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-left: 6px; }

.ev-hero-card-body { padding: 18px; }

/* Mini map */
.ev-mini-map {
  position: relative; height: 180px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,46,31,.7), rgba(45,90,64,.4));
  overflow: hidden; margin-bottom: 14px;
  border: 1px solid rgba(127,169,142,.15);
}
.ev-mini-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,169,142,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,169,142,.10) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ev-mini-map-cell {
  position: absolute; width: 22px; height: 22px; border-radius: 4px;
  opacity: .85;
}
.ev-mini-map-cell.c1 { background: #7FA98E; box-shadow: 0 0 12px rgba(127,169,142,.5); }
.ev-mini-map-cell.c2 { background: #B8956A; box-shadow: 0 0 12px rgba(184,149,106,.5); }
.ev-mini-map-cell.c3 { background: #C97B5B; box-shadow: 0 0 12px rgba(201,123,91,.5); }
.ev-mini-map-pin {
  position: absolute; width: 12px; height: 12px;
  transform: translate(-50%, -50%);
}
.ev-mini-pin-dot {
  position: absolute; inset: 0; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25), 0 0 0 10px rgba(255,255,255,.10);
  animation: evPulse 2s ease-in-out infinite;
}
@keyframes evPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,.25), 0 0 0 10px rgba(255,255,255,.10); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,.30), 0 0 0 16px rgba(255,255,255,.05); }
}

/* Hero card stats */
.ev-hero-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.ev-hero-card-stats > div {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.ev-hcs-l { font-family: var(--ev-mono); font-size: .62rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.ev-hcs-v { font-family: var(--ev-mono); font-size: 1rem; color: #fff; font-weight: 600; }

/* Hero card progress */
.ev-hero-card-prog { display: flex; flex-direction: column; gap: 6px; }
.ev-hcp-row { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.72); font-weight: 500; }
.ev-hcp-row span:last-child { font-family: var(--ev-mono); color: var(--ev-primary-lt); }
.ev-hcp-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; margin-bottom: 6px; }
.ev-hcp-fill { height: 100%; background: linear-gradient(90deg, var(--ev-primary-lt), #C5DCCB); border-radius: 100px; transition: width 1s ease-out; }
.ev-hcp-fill.alt { background: linear-gradient(90deg, var(--ev-accent2), var(--ev-accent)); }

/* Floating accent */
.ev-hero-card-float {
  position: absolute; top: -16px; right: 10px;
  background: #fff; color: var(--ev-text);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  animation: evFloat 4s ease-in-out infinite;
}
@keyframes evFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.ev-hcf-ico { font-size: 1.4rem; }
.ev-hero-card-float strong { display: block; font-size: .82rem; font-weight: 700; color: var(--ev-text); }
.ev-hero-card-float small { display: block; font-size: .68rem; color: var(--ev-text3); font-family: var(--ev-mono); }

/* All hero responsive rules handled in the MOBILE-FIRST FIXES section below */

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.ev-trust-bar { background: var(--ev-bg2); padding: 40px 0; border-bottom: 1px solid var(--ev-border); }
.ev-trust-label { font-family: var(--ev-mono); font-size: .68rem; color: var(--ev-text3); text-transform: uppercase; letter-spacing: .18em; text-align: center; margin-bottom: 1.4rem; }
.ev-trust-row { display: flex; flex-wrap: wrap; gap: .8rem 1rem; justify-content: center; align-items: center; }
.ev-trust-item {
  font-family: var(--ev-sans); font-size: .88rem; font-weight: 500; color: var(--ev-text2);
  padding: 7px 16px; background: var(--ev-bg3); border-radius: 100px;
  border: 1px solid var(--ev-border);
  transition: var(--ev-tr);
}
.ev-trust-item:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   SERVICE PACKAGES
   ══════════════════════════════════════════ */
.ev-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 880px) { .ev-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ev-svc-grid { grid-template-columns: 1fr; } }

.ev-svc-pkg {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(127,169,142,.18);
  border-radius: var(--ev-radius-lg);
  padding: 1.8rem;
  transition: var(--ev-tr);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.ev-svc-pkg::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ev-primary-lt), var(--ev-accent));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.ev-svc-pkg:hover { background: rgba(127,169,142,.10); border-color: rgba(127,169,142,.42); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.20); }
.ev-svc-pkg:hover::before { transform: scaleX(1); }

.ev-svc-pkg-light {
  background: var(--ev-surface);
  border: 1px solid var(--ev-border);
}
.ev-svc-pkg-light:hover { background: var(--ev-bg2); border-color: var(--ev-primary); box-shadow: var(--ev-shadow-lg); }

.ev-svc-pkg-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ev-svc-num { font-family: var(--ev-mono); font-size: .75rem; color: var(--ev-primary-lt); font-weight: 600; letter-spacing: .1em; }
.ev-svc-pkg-light .ev-svc-num { color: var(--ev-primary); }
.ev-svc-price { font-family: var(--ev-mono); font-size: .78rem; color: var(--ev-accent); font-weight: 600; padding: 5px 12px; background: rgba(184,149,106,.14); border-radius: 100px; }
.ev-svc-pkg-light .ev-svc-price { color: var(--ev-primary-dk); background: rgba(45,90,64,.10); }

.ev-svc-pkg h3 { color: #fff; font-size: 1.18rem; margin-bottom: .6rem; }
.ev-svc-pkg-light h3 { color: var(--ev-text); }
.ev-svc-pkg p { color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.65; margin: 0; }
.ev-svc-pkg-light p { color: var(--ev-text2); }
.ev-svc-link { color: var(--ev-primary-lt); font-weight: 600; font-size: .85rem; margin-top: 1rem; align-self: flex-start; }
.ev-svc-pkg-light .ev-svc-link { color: var(--ev-primary); }
.ev-svc-link:hover { color: #fff; }
.ev-svc-pkg-light .ev-svc-link:hover { color: var(--ev-primary-dk); }

/* ══════════════════════════════════════════
   PROOF / SAMPLE WORK
   ══════════════════════════════════════════ */
.ev-proof-card {
  background: var(--ev-surface);
  border-radius: var(--ev-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ev-border);
  transition: var(--ev-tr);
  display: flex; flex-direction: column;
}
.ev-proof-card:hover { transform: translateY(-6px); box-shadow: var(--ev-shadow-lg); border-color: var(--ev-primary); }
.ev-proof-thumb {
  height: 160px; background: linear-gradient(135deg, var(--ev-primary-dk), var(--ev-primary));
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.ev-proof-thumb::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ev-proof-card:nth-child(2) .ev-proof-thumb { background: linear-gradient(135deg, #3a2200, #8b5e3c); }
.ev-proof-card:nth-child(3) .ev-proof-thumb { background: linear-gradient(135deg, #1a2d5a, #2d4a8b); }
.ev-proof-ico { font-size: 3.2rem; filter: drop-shadow(0 2px 10px rgba(0,0,0,.3)); position: relative; z-index: 1; }
.ev-proof-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.ev-proof-body h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.ev-proof-meta { font-family: var(--ev-mono); font-size: .72rem; color: var(--ev-primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
[data-theme="dark"] .ev-proof-meta { color: var(--ev-primary-lt); }
.ev-proof-desc { font-size: .88rem; color: var(--ev-text3); line-height: 1.65; margin: 0 0 1rem; flex: 1; }
.ev-proof-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ══════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════ */
.ev-step {
  text-align: left; padding: 1.6rem;
  background: var(--ev-surface); border-radius: var(--ev-radius);
  border: 1px solid var(--ev-border); transition: var(--ev-tr);
  position: relative;
}
.ev-step:hover { transform: translateY(-4px); box-shadow: var(--ev-shadow-md); border-color: var(--ev-primary); }
.ev-step-num { font-family: var(--ev-mono); font-size: 1.5rem; color: var(--ev-primary-lt); font-weight: 700; display: block; margin-bottom: .6rem; letter-spacing: -0.02em; }
[data-theme="dark"] .ev-step-num { color: var(--ev-primary); }
.ev-step h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.ev-step p { font-size: .85rem; color: var(--ev-text3); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.ev-testimonial {
  background: var(--ev-surface);
  border-radius: var(--ev-radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--ev-border);
  margin: 0;
  position: relative;
  transition: var(--ev-tr);
}
.ev-testimonial:hover { transform: translateY(-4px); box-shadow: var(--ev-shadow-md); }
.ev-testi-quote { font-family: var(--ev-serif); font-size: 4.5rem; line-height: 1; color: var(--ev-primary-lt); opacity: .35; margin-bottom: -1.8rem; }
[data-theme="dark"] .ev-testi-quote { color: var(--ev-primary); }
.ev-testimonial blockquote { font-family: var(--ev-serif); font-size: 1.04rem; line-height: 1.65; color: var(--ev-text); margin: 0 0 1.5rem; font-style: italic; }
.ev-testimonial figcaption { display: flex; align-items: center; gap: 12px; padding-top: 1rem; border-top: 1px solid var(--ev-border); }
.ev-testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ev-primary), var(--ev-primary-lt));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; flex-shrink: 0; font-family: var(--ev-sans);
  letter-spacing: .04em;
}
.ev-testi-role { font-size: .82rem; color: var(--ev-text2); font-weight: 500; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.ev-faq-list { display: flex; flex-direction: column; gap: .8rem; }
.ev-faq-item {
  background: var(--ev-bg2);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius);
  padding: 1.1rem 1.4rem;
  transition: var(--ev-tr);
}
.ev-faq-item[open] { border-color: var(--ev-primary); box-shadow: var(--ev-shadow); }
.ev-faq-item summary {
  font-weight: 600; font-size: 1rem; color: var(--ev-text);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .2rem 0;
}
.ev-faq-item summary::-webkit-details-marker { display: none; }
.ev-faq-ico { color: var(--ev-primary); font-size: 1.4rem; line-height: 1; transition: transform .25s; flex-shrink: 0; }
[data-theme="dark"] .ev-faq-ico { color: var(--ev-primary-lt); }
.ev-faq-item[open] .ev-faq-ico { transform: rotate(45deg); }
.ev-faq-a { padding: .9rem 0 0; color: var(--ev-text2); font-size: .92rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════ */
.ev-cta-band {
  background: linear-gradient(135deg, var(--ev-primary-dk) 0%, #1a3a28 100%);
  color: #fff; padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .ev-cta-band { background: linear-gradient(135deg, #050e08 0%, #142519 100%); }
.ev-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,169,142,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,169,142,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}
.ev-cta-band > .ev-wrap { position: relative; z-index: 1; }
.ev-cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.ev-cta-band p { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 2rem; font-size: 1.02rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   PILLARS (subpages)
   ══════════════════════════════════════════ */
.ev-pillar { background: var(--ev-surface); border-radius: var(--ev-radius-lg); padding: 2.2rem; border: 1px solid var(--ev-border); border-top: 3px solid transparent; transition: var(--ev-tr); }
.ev-pillar.c-g { border-top-color: var(--ev-primary); }
.ev-pillar.c-e { border-top-color: var(--ev-accent2); }
.ev-pillar.c-a { border-top-color: var(--ev-accent); }
.ev-pillar:hover { transform: translateY(-5px); box-shadow: var(--ev-shadow-lg); }
.ev-pillar-ico { font-size: 2.2rem; margin-bottom: 1rem; }
.ev-pillar h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.ev-pillar p { font-size: .9rem; color: var(--ev-text3); line-height: 1.65; margin: 0; }

/* ── SKILL TAGS ── */
.ev-skill-tag { display: inline-block; font-family: var(--ev-mono); font-size: .72rem; color: var(--ev-primary); background: rgba(45,90,64,.08); border: 1px solid rgba(45,90,64,.18); padding: 4px 12px; border-radius: 100px; }
[data-theme="dark"] .ev-skill-tag { color: var(--ev-primary-lt); background: rgba(127,169,142,.10); border-color: rgba(127,169,142,.22); }
[data-theme="reading"] .ev-skill-tag { color: var(--ev-primary-dk); background: rgba(107,68,35,.08); border-color: rgba(107,68,35,.22); }

/* ── FOUNDER ── */
.ev-founder-card { background: var(--ev-surface); border-radius: var(--ev-radius-lg); padding: 2.5rem; border: 1px solid var(--ev-border); border-left: 4px solid var(--ev-primary); box-shadow: var(--ev-shadow); }
.ev-founder-av { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--ev-primary), var(--ev-primary-lt)); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; border: 4px solid rgba(45,90,64,.15); }
.ev-founder-role { display: inline-block; background: rgba(45,90,64,.10); border: 1px solid rgba(45,90,64,.20); color: var(--ev-primary); font-family: var(--ev-mono); font-size: .7rem; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
[data-theme="dark"] .ev-founder-role { background: rgba(127,169,142,.12); border-color: rgba(127,169,142,.25); color: var(--ev-primary-lt); }
.ev-founder-cred { font-family: var(--ev-mono); font-size: .72rem; color: var(--ev-primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
[data-theme="dark"] .ev-founder-cred { color: var(--ev-primary-lt); }

/* ── ABOUT ── */
.ev-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 880px) { .ev-about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.ev-about-vision { background: var(--ev-primary-dk); border-radius: var(--ev-radius-lg); padding: 2.5rem; position: relative; overflow: hidden; }
.ev-about-vision::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(127,169,142,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(127,169,142,.06) 1px, transparent 1px); background-size: 40px 40px; }
.ev-about-vision-ico { font-size: 4rem; margin-bottom: 1.5rem; position: relative; }
.ev-about-vision h3 { color: #fff; margin-bottom: 1rem; position: relative; }
.ev-about-vision p { color: rgba(255,255,255,.72); font-size: .96rem; line-height: 1.75; font-style: italic; position: relative; margin: 0; }

.ev-approach-list { display: flex; flex-direction: column; gap: 1.6rem; }
.ev-approach-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.ev-approach-num { font-family: var(--ev-mono); font-size: 1.15rem; color: var(--ev-primary); font-weight: 700; min-width: 2.5rem; padding-top: .2rem; }
[data-theme="dark"] .ev-approach-num { color: var(--ev-primary-lt); }
.ev-approach-item h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.ev-approach-item p { font-size: .92rem; color: var(--ev-text2); line-height: 1.7; margin: 0; }

/* ── CONTACT ── */
.ev-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
@media (max-width: 880px) { .ev-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.ev-c-link { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ev-border); color: var(--ev-text2); text-decoration: none; transition: var(--ev-tr); }
.ev-c-link:hover { color: var(--ev-primary); }
[data-theme="dark"] .ev-c-link:hover { color: var(--ev-primary-lt); }
.ev-c-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--ev-bg3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ev-c-label { font-size: .72rem; color: var(--ev-text3); text-transform: uppercase; letter-spacing: .08em; font-family: var(--ev-mono); }
.ev-c-value { font-weight: 500; color: var(--ev-text); }
.ev-contact-resp { margin-top: 2rem; padding: 1.3rem; background: var(--ev-bg3); border-radius: var(--ev-radius); border: 1px solid var(--ev-border); }
.ev-contact-resp h4 { font-size: .9rem; margin-bottom: .4rem; }
.ev-contact-resp p { font-size: .85rem; color: var(--ev-text3); margin: 0; font-family: var(--ev-mono); }

/* ── FORMS ── */
.ev-form-wrap { background: var(--ev-surface); border-radius: var(--ev-radius-lg); padding: 2.3rem; box-shadow: var(--ev-shadow); border: 1px solid var(--ev-border); }
.ev-fg { margin-bottom: 1rem; }
.ev-fg label { display: block; font-size: .73rem; font-weight: 600; color: var(--ev-text3); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.ev-fg input, .ev-fg select, .ev-fg textarea {
  width: 100%; background: var(--ev-bg); border: 1.5px solid var(--ev-border); border-radius: 10px;
  padding: 12px 14px; font-family: var(--ev-sans); font-size: .92rem; color: var(--ev-text); transition: border-color .2s, box-shadow .2s; outline: none;
}
.ev-fg input:focus, .ev-fg select:focus, .ev-fg textarea:focus { border-color: var(--ev-primary); box-shadow: 0 0 0 3px rgba(45,90,64,.10); }
[data-theme="dark"] .ev-fg input:focus, [data-theme="dark"] .ev-fg select:focus, [data-theme="dark"] .ev-fg textarea:focus { box-shadow: 0 0 0 3px rgba(127,169,142,.15); }
.ev-fg textarea { height: 130px; resize: vertical; }
.ev-fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .ev-fg2 { grid-template-columns: 1fr; } }
.ev-form-submit { width: 100%; background: var(--ev-primary); color: #fff; border: none; padding: 14px; border-radius: 10px; font-family: var(--ev-sans); font-size: .95rem; font-weight: 600; cursor: pointer; transition: var(--ev-tr); }
.ev-form-submit:hover { background: var(--ev-primary-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(45,90,64,.30); }
[data-theme="dark"] .ev-form-submit:hover { background: var(--ev-primary-lt); color: var(--ev-primary-dk); }
.ev-form-note { font-size: .75rem; color: var(--ev-text3); text-align: center; margin-top: .8rem; margin-bottom: 0; }

/* ── TOAST ── */
.ev-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ev-primary); color: #fff; padding: 14px 26px; border-radius: 100px; box-shadow: var(--ev-shadow-lg); font-size: .9rem; font-weight: 500; z-index: 9999; animation: evToastIn .4s ease-out; }
@keyframes evToastIn { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ── POST CARDS / LIST ── */
.ev-post-card { background: var(--ev-surface); border-radius: var(--ev-radius-lg); overflow: hidden; transition: var(--ev-tr); border: 1px solid var(--ev-border); display: flex; flex-direction: column; }
.ev-post-card:hover { transform: translateY(-5px); box-shadow: var(--ev-shadow-lg); }
.ev-card-thumb { height: 185px; overflow: hidden; }
.ev-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ev-post-card:hover .ev-card-thumb img { transform: scale(1.06); }
.ev-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.ev-card-cat { font-family: var(--ev-mono); font-size: .65rem; color: var(--ev-primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
[data-theme="dark"] .ev-card-cat { color: var(--ev-primary-lt); }
.ev-card-body h3 { font-size: 1.06rem; margin-bottom: .5rem; line-height: 1.3; flex: 1; }
.ev-card-body h3 a { color: var(--ev-text); }
.ev-card-body h3 a:hover { color: var(--ev-primary); }
.ev-card-exc { font-size: .85rem; color: var(--ev-text3); line-height: 1.6; margin-bottom: .8rem; }
.ev-card-meta { font-family: var(--ev-mono); font-size: .64rem; color: var(--ev-text3); margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--ev-border); }

.ev-post-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ev-post-row { display: grid; grid-template-columns: 240px 1fr; background: var(--ev-surface); border-radius: var(--ev-radius-lg); overflow: hidden; border: 1px solid var(--ev-border); transition: var(--ev-tr); }
.ev-post-row:hover { transform: translateY(-3px); box-shadow: var(--ev-shadow-lg); }
.ev-row-thumb { overflow: hidden; }
.ev-row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.ev-post-row:hover .ev-row-thumb img { transform: scale(1.04); }
.ev-row-body { padding: 1.6rem; display: flex; flex-direction: column; }
.ev-row-body h2 { font-size: 1.22rem; margin-bottom: .5rem; line-height: 1.3; }
.ev-row-body h2 a { color: var(--ev-text); }
.ev-row-body h2 a:hover { color: var(--ev-primary); }
.ev-row-exc { font-size: .89rem; color: var(--ev-text3); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.ev-row-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.ev-row-meta { font-family: var(--ev-mono); font-size: .65rem; color: var(--ev-text3); }
@media (max-width: 720px) {
  .ev-post-row { grid-template-columns: 1fr; }
  .ev-row-thumb { height: 180px; }
}

.ev-cat-row { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.ev-g-sb { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
@media (max-width: 980px) { .ev-g-sb { grid-template-columns: 1fr; } }

/* ── SIDEBAR ── */
.ev-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.ev-sw { background: var(--ev-surface); border: 1px solid var(--ev-border); border-radius: var(--ev-radius); padding: 1.3rem; }
.ev-sw h4 { font-size: .9rem; margin-bottom: .8rem; }
.ev-sw ul { list-style: none; padding: 0; margin: 0; }
.ev-sw ul li { padding: 7px 0; border-bottom: 1px solid var(--ev-border); }
.ev-sw ul li:last-child { border: none; }
.ev-sw ul li a { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--ev-text2); }
.ev-sw ul li a:hover { color: var(--ev-primary); }
.ev-cat-count { font-family: var(--ev-mono); font-size: .7rem; color: var(--ev-text3); }
.ev-recent-post a { display: block; font-size: .85rem; line-height: 1.4; color: var(--ev-text2); }
.ev-recent-post a:hover { color: var(--ev-primary); }
.ev-recent-post small { font-family: var(--ev-mono); font-size: .65rem; color: var(--ev-text3); }
.ev-s-form2 { display: flex; border: 1.5px solid var(--ev-border); border-radius: 10px; overflow: hidden; background: var(--ev-bg); }
.ev-s-form2 input { flex: 1; background: none; border: none; padding: 9px 12px; font-size: .85rem; outline: none; color: var(--ev-text); }
.ev-s-form2 button { background: var(--ev-primary); color: #fff; border: none; padding: 0 14px; cursor: pointer; font-weight: 600; }
.ev-sw-cta { background: var(--ev-primary-dk); border-color: var(--ev-primary-dk); color: #fff; }
.ev-sw-cta h4 { color: var(--ev-primary-lt); }
.ev-sw-cta p { color: rgba(255,255,255,.68); font-size: .85rem; margin-bottom: 1rem; }

/* ── PAGE HEADER ── */
.ev-pg-hdr { background: var(--ev-pghdr-bg); color: #fff; padding: 88px 0 56px; position: relative; }
.ev-pg-hdr.has-img { background-image: var(--ev-pghdr-img); background-size: cover; background-position: center; }
.ev-pg-hdr.has-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,46,31,.85) 0%, rgba(15,46,31,.65) 100%); }
.ev-pg-hdr .ev-wrap { position: relative; z-index: 1; }
.ev-pg-hdr-inner { max-width: 760px; }
.ev-pg-tag { display: inline-block; font-family: var(--ev-mono); font-size: .7rem; color: var(--ev-primary-lt); text-transform: uppercase; letter-spacing: .18em; margin-bottom: .8rem; padding: 6px 16px; border: 1px solid rgba(127,169,142,.3); border-radius: 100px; }
.ev-pg-hdr h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.ev-pg-hdr-inner > p { color: rgba(255,255,255,.75); font-size: 1.02rem; max-width: 580px; line-height: 1.65; }
.ev-pg-meta { display: flex; align-items: center; gap: 1rem; margin-top: .8rem; flex-wrap: wrap; font-family: var(--ev-mono); font-size: .7rem; color: rgba(255,255,255,.55); }
.ev-breadcrumb { font-family: var(--ev-mono); font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 1rem !important; }
.ev-breadcrumb a { color: rgba(255,255,255,.78); }
.ev-breadcrumb span { margin: 0 8px; }

/* ── SINGLE POST ── */
.ev-post-wrap { max-width: 820px; margin: 0 auto; }
.ev-post-tools { display: flex; gap: .8rem; margin-bottom: 2rem; flex-wrap: wrap; align-items: center; }
.ev-meta-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ev-cat-badge { font-family: var(--ev-mono); font-size: .68rem; color: var(--ev-primary); text-transform: uppercase; letter-spacing: .1em; background: rgba(45,90,64,.08); padding: 4px 12px; border-radius: 100px; }
[data-theme="dark"] .ev-cat-badge { color: var(--ev-primary-lt); background: rgba(127,169,142,.12); }
.ev-post-date { font-family: var(--ev-mono); font-size: .7rem; color: var(--ev-text3); }
.ev-feat-img { width: 100%; border-radius: var(--ev-radius-lg); margin-bottom: 2rem; }
.ev-feat-ph { height: 320px; border-radius: var(--ev-radius-lg); margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.ev-post-cnt { line-height: 1.9; font-size: 1.06rem; }
.ev-post-cnt h2 { margin: 2.5rem 0 .9rem; border-left: 3px solid var(--ev-primary); padding-left: 1rem; }
.ev-post-cnt h3 { margin: 2rem 0 .7rem; }
.ev-post-cnt p { margin-bottom: 1.4rem; color: var(--ev-text2); }
.ev-post-cnt ul, .ev-post-cnt ol { padding-left: 1.8rem; margin-bottom: 1.4rem; color: var(--ev-text2); }
.ev-post-cnt li { margin-bottom: .5rem; line-height: 1.7; }
.ev-post-cnt blockquote { border-left: 3px solid var(--ev-primary); padding: 1rem 1.5rem; background: rgba(45,90,64,.06); border-radius: 0 var(--ev-radius) var(--ev-radius) 0; margin: 1.5rem 0; font-style: italic; }
[data-theme="dark"] .ev-post-cnt blockquote { background: rgba(127,169,142,.08); }
.ev-post-cnt table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.ev-post-cnt th { background: var(--ev-primary-dk); color: #fff; padding: 10px 14px; text-align: left; }
.ev-post-cnt td { padding: 10px 14px; border-bottom: 1px solid var(--ev-border); color: var(--ev-text2); }
.ev-post-cnt tr:nth-child(even) td { background: var(--ev-bg3); }
.ev-post-cnt img { border-radius: var(--ev-radius); margin: 1.5rem 0; }
.ev-post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.ev-post-tag { background: var(--ev-bg3); color: var(--ev-text3); font-family: var(--ev-mono); font-size: .67rem; padding: 4px 12px; border-radius: 100px; transition: var(--ev-tr); text-decoration: none; }
.ev-post-tag:hover { background: var(--ev-primary); color: #fff; }
.ev-share { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--ev-border); flex-wrap: wrap; }
.ev-share-label { font-size: .82rem; font-weight: 600; color: var(--ev-text3); margin-right: .5rem; }
.ev-author-box { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; padding: 1.5rem; background: var(--ev-bg3); border-radius: var(--ev-radius); border: 1px solid var(--ev-border); }
.ev-auth-av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--ev-primary), var(--ev-primary-lt)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.ev-auth-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.ev-auth-info p { font-size: .85rem; color: var(--ev-text3); margin: 0; }
.ev-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ev-border); }
.ev-related h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.ev-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ev-border); }

.ev-print-btn, .ev-pdf-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 100px;
  font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s;
  border: 1.5px solid var(--ev-border); background: var(--ev-bg3); color: var(--ev-text2);
  font-family: var(--ev-sans);
}
.ev-print-btn:hover, .ev-pdf-btn:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); }

/* ── PAGINATION ── */
.ev-pages { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.ev-pages a, .ev-pages span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--ev-border); border-radius: 9px;
  background: var(--ev-surface); color: var(--ev-text2);
  font-size: .85rem; font-weight: 500;
}
.ev-pages a:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); }
.ev-pages .current { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
#site-footer { background: var(--ev-primary-dk); color: rgba(255,255,255,.72); padding: 72px 0 28px; }
[data-theme="dark"] #site-footer { background: #050e08; border-top: 1px solid var(--ev-border); }
.ev-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 880px) { .ev-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ev-footer-grid { grid-template-columns: 1fr; } }

.ev-f-brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; max-width: 320px; }
.ev-f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; color: #fff; font-family: var(--ev-serif); font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.ev-f-logo:hover { color: #fff; }
.ev-f-logo-txt span { color: var(--ev-primary-lt); }
.ev-f-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.ev-f-soc { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; border: 1px solid rgba(255,255,255,.1); transition: var(--ev-tr); }
.ev-f-soc:hover { background: var(--ev-primary); color: #fff; border-color: var(--ev-primary); transform: translateY(-2px); }

.ev-f-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; font-family: var(--ev-mono); font-weight: 600; }
.ev-f-col ul { list-style: none; padding: 0; margin: 0; }
.ev-f-col ul li { padding: 5px 0; }
.ev-f-col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none; }
.ev-f-col ul li a:hover { color: var(--ev-primary-lt); }
.ev-f-contact li { color: rgba(255,255,255,.65); font-size: .9rem; padding: 5px 0; list-style: none; }
.ev-f-contact li a { color: rgba(255,255,255,.65); }
.ev-f-contact li a:hover { color: var(--ev-primary-lt); }
.ev-f-resp { font-family: var(--ev-mono); font-size: .8rem; color: rgba(255,255,255,.5); }

.ev-f-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ev-f-bottom p { color: rgba(255,255,255,.5); font-size: .8rem; margin: 0; }
.ev-f-credit { font-family: var(--ev-mono); font-size: .72rem; }

/* ── 404 ── */
.ev-404 { text-align: center; padding: 6rem 0; }
.ev-404-num { font-family: var(--ev-serif); font-size: clamp(5rem, 12vw, 9rem); color: var(--ev-primary); line-height: 1; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.03em; }
[data-theme="dark"] .ev-404-num { color: var(--ev-primary-lt); }
.ev-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.ev-404-form { display: flex; border: 1.5px solid var(--ev-border); border-radius: 100px; overflow: hidden; background: var(--ev-surface); max-width: 460px; margin: 0 auto 1.5rem; }
.ev-404-form input { flex: 1; background: none; border: none; padding: 12px 18px; font-size: .9rem; color: var(--ev-text); outline: none; }
.ev-404-form button { background: var(--ev-primary); color: #fff; border: none; padding: 12px 20px; cursor: pointer; font-weight: 600; }
.ev-404-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FLOATING CONTROLS — Mode Toggle + Back to Top
   ══════════════════════════════════════════ */
#ev-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--ev-primary-lt); z-index: 9999; width: 0; transition: width .1s; }

/* Mode toggle — 3 buttons in a pill */
#ev-mode-toggle {
  position: fixed; bottom: 24px; left: 24px;
  display: flex; gap: 2px; padding: 4px;
  background: var(--ev-surface); border: 1px solid var(--ev-border);
  border-radius: 100px; box-shadow: var(--ev-shadow-lg);
  z-index: 9998; backdrop-filter: blur(12px);
}
.ev-mode-btn {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: transparent; cursor: pointer; font-size: 1rem;
  color: var(--ev-text3); transition: var(--ev-tr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ev-sans);
}
.ev-mode-btn:hover { background: var(--ev-bg3); color: var(--ev-text); }
.ev-mode-btn.active {
  background: var(--ev-primary); color: #fff;
  box-shadow: 0 2px 8px rgba(45,90,64,.30);
}
[data-theme="dark"] .ev-mode-btn.active { background: var(--ev-primary-lt); color: var(--ev-primary-dk); }
[data-theme="reading"] .ev-mode-btn.active { background: var(--ev-primary-dk); color: var(--ev-bg2); }

#ev-back-top {
  position: fixed; bottom: 24px; right: 152px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ev-primary); color: #fff; border: none; cursor: pointer;
  font-size: 1.1rem; box-shadow: var(--ev-shadow-lg); z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s, background .3s;
}
#ev-back-top.show { opacity: 1; pointer-events: auto; }
#ev-back-top:hover { background: var(--ev-primary-dk); transform: translateY(-3px); }
[data-theme="dark"] #ev-back-top { background: var(--ev-primary-lt); color: var(--ev-primary-dk); }
[data-theme="dark"] #ev-back-top:hover { background: var(--ev-primary); color: #fff; }
[data-theme="reading"] #ev-back-top { background: var(--ev-primary-dk); }
[data-theme="reading"] #ev-back-top:hover { background: var(--ev-primary); }

@media (max-width: 1024px) {
  #ev-mode-toggle { bottom: 16px; left: 16px; }
  #ev-back-top { bottom: 16px; right: 16px; }
}

/* ── SEARCH OVERLAY ── */
#ev-search-overlay { position: fixed; inset: 0; background: rgba(10,20,12,.85); z-index: 10000; display: none; align-items: flex-start; justify-content: center; padding-top: 15vh; backdrop-filter: blur(8px); }
#ev-search-overlay.open { display: flex; }
.ev-search-box { background: var(--ev-surface); border-radius: var(--ev-radius-lg); padding: 2rem; width: 90%; max-width: 580px; box-shadow: var(--ev-shadow-lg); }
.ev-search-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.ev-search-head h3 { font-size: 1.1rem; margin: 0; }
#ev-search-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--ev-text3); }
.ev-s-form { display: flex; border: 1.5px solid var(--ev-border); border-radius: 10px; overflow: hidden; background: var(--ev-bg); }
.ev-s-form input { flex: 1; background: none; border: none; padding: 12px 16px; font-size: 1rem; color: var(--ev-text); outline: none; }
.ev-s-form button { background: var(--ev-primary); color: #fff; border: none; padding: 0 18px; cursor: pointer; font-weight: 600; }

/* ── SCROLL ANIMATIONS ── */
.ev-fade { opacity: 0; transform: translateY(20px); transition: opacity .7s ease-out, transform .7s ease-out; }
.ev-fade.ev-vis { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .ev-fade { opacity: 1; transform: none; transition: none; }
  .ev-mini-pin-dot, .ev-hero-card-float, .ev-badge-dot { animation: none; }
}

/* ── SUBSCRIPTION SECTION ── */
.ev-subscribe-sec { background: var(--ev-bg3); }
.ev-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ev-sub-form-wrap { background: var(--ev-surface); border: 1px solid var(--ev-border); border-radius: var(--ev-radius-lg); padding: 2.5rem; box-shadow: var(--ev-shadow-lg); position: relative; overflow: hidden; }
.ev-sub-form-wrap::before { content: ''; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle, rgba(139,181,154,0.1) 0%, transparent 70%); pointer-events: none; }
.ev-sub-form { display: flex; flex-direction: column; gap: 1rem; }
.ev-sub-form input, .ev-sub-form select { width: 100%; background: var(--ev-bg); border: 1.5px solid var(--ev-border); border-radius: 10px; padding: 11px 14px; font-family: var(--ev-sans); font-size: .92rem; color: var(--ev-text); transition: border-color .2s; outline: none; }
.ev-sub-form input:focus, .ev-sub-form select:focus { border-color: var(--ev-primary); }
.ev-sub-form .ev-sub-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ev-sub-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--ev-text3); line-height: 1.5; }
.ev-sub-consent input[type=checkbox] { margin-top: 3px; accent-color: var(--ev-primary); flex-shrink: 0; }
.ev-sub-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: var(--ev-primary); color: #fff; padding: 12px 28px; border-radius: 100px; font-family: var(--ev-sans); font-size: .9rem; font-weight: 600; border: none; cursor: pointer; transition: var(--ev-tr); width: 100%; }
.ev-sub-btn:hover { background: var(--ev-primary-dk); }
.ev-sub-btn:disabled { opacity: .6; cursor: not-allowed; }
.ev-sub-msg { text-align: center; padding: .8rem; border-radius: 8px; font-size: .88rem; display: none; }
.ev-sub-msg.ev-sub-ok { display: block; background: rgba(43,87,64,.08); color: var(--ev-primary); border: 1px solid rgba(43,87,64,.15); }
.ev-sub-msg.ev-sub-err { display: block; background: rgba(180,60,60,.08); color: #8B3A3A; border: 1px solid rgba(180,60,60,.15); }
.ev-sub-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
[data-theme="dark"] .ev-sub-form-wrap { background: var(--ev-surface); border-color: var(--ev-border); }
[data-theme="dark"] .ev-sub-form input, [data-theme="dark"] .ev-sub-form select { background: var(--ev-bg); border-color: var(--ev-border); color: var(--ev-text); }
[data-theme="dark"] .ev-sub-msg.ev-sub-ok { background: rgba(127,169,142,.1); color: var(--ev-primary); }

/* ── WHY ECOVASUDHA ── */
.ev-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.ev-why-card { background: var(--ev-surface); border: 1px solid var(--ev-border); border-radius: var(--ev-radius-lg); padding: 2.2rem; transition: var(--ev-tr); }
.ev-why-card:hover { border-color: var(--ev-primary); }
.ev-why-ico { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.ev-why-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.ev-why-card p { font-size: .9rem; color: var(--ev-text2); margin: 0; }
[data-theme="dark"] .ev-why-card { background: var(--ev-surface); border-color: var(--ev-border); }

/* ── EMAIL POPUP ── */
#ev-sub-popup { position: fixed; inset: 0; background: rgba(10,20,12,.6); z-index: 10001; display: none; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(4px); }
#ev-sub-popup.open { display: flex; }
.ev-popup-card { background: var(--ev-surface); border-radius: var(--ev-radius-lg); padding: 3rem; width: 100%; max-width: 440px; position: relative; border: 1px solid var(--ev-border); box-shadow: 0 24px 60px rgba(0,0,0,0.15); overflow: hidden; }
.ev-popup-card::before { content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(139,181,154,0.15) 0%, transparent 70%); pointer-events: none; }
.ev-popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--ev-text3); padding: .25rem; line-height: 1; transition: color .2s; }
.ev-popup-close:hover { color: var(--ev-text); }
.ev-popup-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.ev-popup-card > p { font-size: .9rem; color: var(--ev-text2); margin-bottom: 1.5rem; line-height: 1.6; }
.ev-popup-card .ev-sub-form input { margin-bottom: .5rem; }
.ev-popup-card .ev-sub-btn { margin-top: .5rem; }
.ev-popup-dismiss { display: block; text-align: center; margin-top: 1rem; font-size: .82rem; color: var(--ev-text3); cursor: pointer; background: none; border: none; font-family: var(--ev-sans); transition: color .2s; }
.ev-popup-dismiss:hover { color: var(--ev-text); }
[data-theme="dark"] #ev-sub-popup { background: rgba(0,0,0,.7); }
[data-theme="dark"] .ev-popup-card { background: var(--ev-surface); border-color: var(--ev-border); }

/* ── FOOTER SUBSCRIBE ── */
.ev-f-sub h4 { margin-bottom: .5rem; }
.ev-f-sub p { font-size: .85rem; color: var(--ev-text3); margin-bottom: 1rem; }
.ev-f-sub-row { display: flex; gap: .5rem; }
.ev-f-sub-row input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 9px 12px; font-size: .88rem; color: #fff; font-family: var(--ev-sans); outline: none; transition: border-color .2s; }
.ev-f-sub-row input:focus { border-color: var(--ev-primary-lt); }
.ev-f-sub-row input::placeholder { color: rgba(255,255,255,.4); }
.ev-f-sub-row button { background: var(--ev-primary); color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: .85rem; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: var(--ev-sans); transition: var(--ev-tr); }
.ev-f-sub-row button:hover { background: var(--ev-primary-lt); color: var(--ev-primary-dk); }
.ev-f-sub .ev-sub-msg { font-size: .82rem; margin-top: .5rem; padding: .5rem; text-align: left; }
.ev-f-sub-note { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: .5rem; margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST FIXES
   1) Kill horizontal overflow at the root
   2) Stack hero split earlier (1024px covers tablets + landscape phones)
   3) Hide floating accent badge earlier
   4) Stack top bar, footer, contact, services on narrow screens
   5) Aggressive font-size + padding reduction on small screens
   ════════════════════════════════════════════════════════════════ */

/* ── ROOT: NO HORIZONTAL SCROLL EVER ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}
* { box-sizing: border-box; }
img, svg, video, iframe { max-width: 100%; height: auto; }
.ev-wrap, .ev-wrap-wide, .ev-wrap-narrow { width: 100%; max-width: 100%; }

/* ── 1024px and below (tablets + landscape phones) — stack hero ── */
@media (max-width: 1024px) {
  .ev-hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ev-hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .ev-hero-body { max-width: 640px; margin: 0 auto; text-align: left; }
  .ev-hero-badge { margin-left: 0; }
}

/* ── 880px and below — section padding + grid columns ── */
@media (max-width: 880px) {
  .ev-sub-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ev-why-grid { grid-template-columns: 1fr 1fr; }
  .ev-g2, .ev-g3, .ev-g4 { grid-template-columns: 1fr 1fr; }
  .ev-sec { padding: 64px 0; }
  .ev-hero { padding: 72px 0 56px; }
  .ev-cta-band { padding: 56px 0; }
  .ev-cta-band h2 { font-size: 1.7rem; }

  /* Footer: 2 cols at this width, will collapse further at 700px */
  .ev-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ev-f-brand { grid-column: 1 / -1; }

  /* About + contact grids already stack via their own rules */
  .ev-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ev-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ev-g-sb { grid-template-columns: 1fr; }

  /* Hero stats: tighter */
  .ev-hero-stats { gap: 1.6rem; }
  .ev-stat-n { font-size: 1.3rem; }

  /* Page header */
  .ev-pg-hdr { padding: 64px 0 40px; }
  .ev-pg-hdr h1 { font-size: 1.8rem; }

  /* Founder card padding */
  .ev-founder-card { padding: 1.8rem; }
  .ev-founder-av { width: 80px; height: 80px; font-size: 2.4rem; }

  /* Mode toggle: shift up to avoid being hidden by mobile browser chrome */
  #ev-mode-toggle { bottom: 20px; left: 16px; }
  #ev-back-top { bottom: 20px; right: 16px; }
}

/* ── INTERACTIVE TOOLS GRID ── */
.ev-tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.ev-tool-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--ev-surface); border: 1px solid var(--ev-border); border-radius: var(--ev-radius-lg); padding: 2rem 1rem; text-align: center; transition: var(--ev-tr); color: var(--ev-text); text-decoration: none; font-weight: 600; box-shadow: var(--ev-shadow-sm); }
.ev-tool-card:hover { border-color: var(--ev-primary); transform: translateY(-3px); box-shadow: var(--ev-shadow-md); color: var(--ev-primary); }
.ev-tool-card span { font-size: 2rem; margin-bottom: 0.5rem; }
@media (max-width: 880px) { .ev-tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ev-tools-grid { grid-template-columns: 1fr; } }

/* ── 700px and below — single column everywhere ── */
@media (max-width: 700px) {
  .ev-why-grid { grid-template-columns: 1fr; }
  .ev-sub-form .ev-sub-row { grid-template-columns: 1fr; }
  .ev-popup-card { padding: 1.8rem; margin: 1rem; }
  .ev-f-sub-row { flex-direction: column; }
  .ev-g2, .ev-g3, .ev-g4 { grid-template-columns: 1fr; }
  .ev-svc-grid { grid-template-columns: 1fr; }
  .ev-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ev-f-brand { grid-column: auto; }

  /* Top bar: stack contact info or hide tagline */
  #ev-topbar { padding: 7px 0; }
  .ev-topbar-in { flex-direction: column; gap: .35rem; align-items: center; text-align: center; }
  .ev-topbar-r { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .ev-topbar-r a { font-size: .75rem; }

  /* Section padding tighter */
  .ev-sec { padding: 52px 0; }
  .ev-sec-sm { padding: 36px 0; }

  /* Hero: smaller text, tighter spacing */
  .ev-hero { padding: 60px 0 48px; }
  .ev-hero h1 { font-size: 1.85rem; line-height: 1.18; }
  .ev-hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 1.8rem; }
  .ev-hero-badge { font-size: .62rem; padding: 6px 14px; margin-bottom: 1.4rem; }
  .ev-hero-btns { flex-direction: column; align-items: stretch; gap: .7rem; }
  .ev-hero-btns .ev-btn { width: 100%; justify-content: center; padding: 13px 22px; }
  .ev-hero-stats { gap: 1.4rem 1.6rem; }
  .ev-hero-stat { min-width: 100px; flex: 1 1 100px; }
  .ev-stat-n { font-size: 1.2rem; }
  .ev-stat-l { font-size: .68rem; }

  /* Hero visual card: shrink everything */
  .ev-hero-visual { max-width: 100%; }
  .ev-hero-card-body { padding: 14px; }
  .ev-mini-map { height: 150px; }
  .ev-hero-card-stats { gap: 8px; }
  .ev-hero-card-stats > div { padding: 8px 10px; }
  .ev-hcs-v { font-size: .92rem; }
  .ev-hcs-l { font-size: .58rem; }

  /* Hide the floating accent badge entirely to avoid overflow */
  .ev-hero-card-float { display: none; }

  /* CTA band */
  .ev-cta-band { padding: 52px 0; }
  .ev-cta-band h2 { font-size: 1.5rem; }
  .ev-cta-band p { font-size: .95rem; }
  .ev-cta-band .ev-btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .ev-trust-bar { padding: 32px 0; }
  .ev-trust-label { font-size: .62rem; margin-bottom: 1rem; }
  .ev-trust-item { font-size: .78rem; padding: 6px 13px; }

  /* Service cards: lighter padding */
  .ev-svc-pkg { padding: 1.4rem; }
  .ev-svc-pkg h3 { font-size: 1.1rem; }
  .ev-svc-pkg p { font-size: .87rem; }

  /* Testimonials: smaller padding */
  .ev-testimonial { padding: 1.6rem; }
  .ev-testimonial blockquote { font-size: .95rem; }

  /* FAQ: tighter */
  .ev-faq-item { padding: 1rem 1.2rem; }
  .ev-faq-item summary { font-size: .95rem; }

  /* Steps */
  .ev-step { padding: 1.3rem; }

  /* Form: stack 2-col fields */
  .ev-fg2 { grid-template-columns: 1fr; }
  .ev-form-wrap { padding: 1.6rem; }

  /* Single post: thumbnail + body stack */
  .ev-post-row { grid-template-columns: 1fr; }
  .ev-row-thumb { height: 200px; }
  .ev-row-body { padding: 1.2rem; }
  .ev-row-body h2 { font-size: 1.1rem; }

  /* Founder card layout */
  .ev-founder-card > div { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .ev-founder-av { width: 70px; height: 70px; font-size: 2rem; }

  /* Approach item: stack number above content */
  .ev-approach-item { flex-direction: column; gap: .3rem; }
  .ev-approach-num { min-width: 0; }

  /* 404 actions: stack */
  .ev-404-actions { flex-direction: column; }
  .ev-404-actions .ev-btn { width: 100%; justify-content: center; }
}

/* ── 480px and below — small phones ── */
@media (max-width: 480px) {
  .ev-wrap, .ev-wrap-wide, .ev-wrap-narrow { padding: 0 4%; }
  .ev-hero { padding: 48px 0 40px; }
  .ev-hero h1 { font-size: 1.65rem; }
  .ev-hero-sub { font-size: .95rem; }
  .ev-sec-title { font-size: 1.5rem; }
  .ev-sec-tag { font-size: .65rem; }

  /* Top bar: very compact */
  .ev-topbar-in { font-size: .72rem; }
  .ev-topbar-r a { font-size: .7rem; }

  /* Hero card mini-map: shrink */
  .ev-mini-map { height: 130px; }
  .ev-mini-map-cell { width: 18px; height: 18px; }
  .ev-hero-card-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .ev-hero-card-stats > div { padding: 7px 8px; }
  .ev-hcs-v { font-size: .82rem; }
  .ev-hcs-l { font-size: .55rem; }

  /* Hero stats: full width each */
  .ev-hero-stats { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
  .ev-hero-stat { width: 100%; }

  /* Header: smaller logo */
  .ev-logo { font-size: 1.2rem; }
  .ev-logo-mark { width: 34px; height: 34px; font-size: 16px; }
  .ev-hdr-in { height: 60px; }
  #ev-nav { top: 60px; }

  /* Mode toggle: smaller, more compact */
  .ev-mode-btn { width: 34px; height: 34px; font-size: .9rem; }
  #ev-mode-toggle { padding: 3px; bottom: 16px; left: 12px; }
  #ev-back-top { width: 38px; height: 38px; bottom: 16px; right: 130px; font-size: 1rem; }

  /* Footer */
  .ev-f-bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* CTA band */
  .ev-cta-band h2 { font-size: 1.35rem; }

  /* Pagination */
  .ev-pages a, .ev-pages span { min-width: 34px; height: 34px; padding: 0 10px; font-size: .8rem; }
}

/* ── 380px and below — very small phones (iPhone SE 1st gen, older Androids) ── */
@media (max-width: 380px) {
  .ev-wrap, .ev-wrap-wide, .ev-wrap-narrow { padding: 0 3.5%; }
  .ev-hero h1 { font-size: 1.5rem; }
  .ev-hero-sub { font-size: .9rem; }
  .ev-hero-btns .ev-btn { padding: 12px 18px; font-size: .85rem; }
  .ev-sec-title { font-size: 1.35rem; }
  .ev-logo { font-size: 1.1rem; }
  .ev-logo-mark { width: 32px; height: 32px; }
}

/* ── Landscape phones (short height) — optimize for horizontal view ── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .ev-hero { padding: 40px 0 32px; }
  .ev-hero h1 { font-size: 1.8rem; }
  .ev-hero-visual { display: none; } /* Hide the visual card in landscape to give text full width */
  .ev-hero-split { gap: 1.5rem; }
  .ev-hero-stats { margin-top: 1.5rem; padding-top: 1.2rem; }
}

/* ── Print: keep watermark, hide chrome ── */
@media print {
  #ev-mode-toggle, #ev-back-top, #ev-progress, #ev-search-overlay,
  #wpadminbar, #site-header, #site-footer, nav, .navigation,
  .widget-area, #secondary, .ev-print-btn, .ev-pdf-btn, .ev-share,
  .ev-no-print, #ev-topbar { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 12pt; }
}

