/* =============================================
   ESS — Earthwise System Solutions
   Shared Stylesheet
   ============================================= */

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

/* ─── TOKENS ─────────────────────────────── */
:root {
  --green:      #1a8f5c;
  --green-mid:  #15a86a;
  --teal:       #0d8a85;
  --blue-deep:  #0d4f7c;
  --blue-mid:   #1469a0;
  --blue-light: #e8f4f8;
  --ink:        #0e1f2e;
  --ink-70:     rgba(14,31,46,.7);
  --ink-40:     rgba(14,31,46,.4);
  --ink-10:     rgba(14,31,46,.07);
  --white:      #ffffff;
  --off-white:  #f6faf8;
  --border:     rgba(14,31,46,.1);
  --accent:     #f0a500;

  --nav-h:      72px;
  --radius:     6px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 10px rgba(14,31,46,.08);
  --shadow-md:  0 8px 32px rgba(14,31,46,.12);
  --shadow-lg:  0 20px 60px rgba(14,31,46,.16);

  --font-head:  'Fraunces', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;

  --max-w: 1180px;
  --section-gap: 96px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul:not(.wp-singular ul) { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p  { color: var(--ink-70); line-height: 1.75; }

/* ─── UTILITIES ──────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto;}
.section    { padding: var(--section-gap) 0; }
.section--alt { background: var(--off-white); }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26,143,92,.1);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,143,92,.3);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,143,92,.38); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: rgba(26,143,92,.05); }
.btn-white {
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 2px;
  margin: 18px 0 24px;
}

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 44px; width: 44px; border-radius: 50%; }
.nav__logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.nav__logo-sub { font-family: var(--font-body); font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-40); display: block; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-70);
  border-radius: var(--radius);
  transition: all .18s;
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--green); background: rgba(26,143,92,.07); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown-toggle svg { transition: transform .2s; }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 180px;
  opacity: 0; visibility: hidden;
  transition: all .2s ease;
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; }
.nav__dropdown-menu a {
  display: block; padding: 9px 14px;
  font-size: .875rem; font-weight: 500; color: var(--ink-70);
  border-radius: var(--radius); transition: all .15s;
}
.nav__dropdown-menu a:hover { background: var(--off-white); color: var(--green); }

.nav__cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); z-index: 999;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .mobile-sub { padding-left: 16px; }
.mobile-menu .mobile-sub a { font-size: .9rem; color: var(--ink-70); }

/* ─── HERO ────────────────────────────────── */
.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: 20vh 0 15vh 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,79,124,.92) 0%, rgba(13,138,133,.75) 50%, rgba(26,143,92,.7) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80') center/cover no-repeat;
}
.hero__mesh {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(21,168,106,.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(13,138,133,.12) 0%, transparent 40%);
}
.hero__grid {
  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: 60px 60px;
}
.hero__content {
  position: relative; z-index: 2;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__tag .dot { width: 6px; height: 6px; background: var(--green-mid); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

.hero h1 { color: var(--white); margin-bottom: 24px; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,.75); }
.hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 600px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollline 2s ease infinite;
}
@keyframes scrollline { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ─── INTRO BAND ──────────────────────────── */
.intro-band {
  padding: 32px 0;
  background: var(--green);
}
.intro-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.intro-band p {
  font-size: 1.15rem; font-weight: 500; color: rgba(255,255,255,.9);
  font-family: var(--font-head); font-style: italic;
  max-width: 600px;
}
.intro-band a { flex-shrink: 0; }

/* ─── CARDS ───────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,143,92,.12), rgba(13,138,133,.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }

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

/* ─── WHY BAND ────────────────────────────── */
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all .2s;
}
.why-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.why-item__num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: rgba(26,143,92,.15); line-height: 1; flex-shrink: 0; min-width: 52px;
}

/* ─── STAT BAR ────────────────────────────── */
.stat-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-item__label { font-size: .82rem; font-weight: 500; color: var(--ink-40); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

/* ─── CAPABILITY LIST ────────────────────── */
.cap-list { display: grid; gap: 10px; }
.cap-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--ink-70);
  line-height: 1.5;
}
.cap-list li::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 7px;
}

/* ─── MISSION ALIGN ──────────────────────── */
.mission-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.mission-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: .83rem; font-weight: 500; color: var(--ink-70);
  background: var(--white);
  transition: all .18s;
}
.mission-tag:hover { border-color: var(--green); color: var(--green); background: rgba(26,143,92,.05); }
.mission-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ─── CTA SECTION ─────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,143,92,.15) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; }
.cta-section .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 60%, var(--teal) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }
.page-hero .tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }

/* ─── SECTION HEADER ─────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .divider { margin-left: auto; margin-right: auto; }

/* ─── IMAGE BLOCKS ───────────────────────── */
.img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-block img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FOOTER ──────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { }
.footer__logo { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.footer__logo img { height: 40px; width: 40px; border-radius: 50%; }
.footer__logo-text { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.footer__desc { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer__col h5 { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__col a { display: block; font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .18s; }
.footer__col a:hover { color: var(--green-mid); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: .8rem; gap: 16px; flex-wrap: wrap; }
.footer__bottom a { color: rgba(255,255,255,.4); transition: color .18s; }
.footer__bottom a:hover { color: var(--white); }

/* ─── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .18s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.8); }

/* ─── SERVE PAGE SPECIFIC ──────────────────── */
.serve-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.serve-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.serve-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  cursor: pointer; border: 2px solid var(--border);
  color: var(--ink-70);
  background: var(--white);
  transition: all .2s;
}
.serve-tab.active, .serve-tab:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ─── CONTACT PAGE ───────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,143,92,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── CAREER PAGE ────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: all .22s;
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(26,143,92,.3); }
.job-card__left h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.job-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: rgba(26,143,92,.1); color: var(--green);
}

/* ─── SCROLL ANIMATIONS ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .serve-intro { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stat-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  .intro-band__inner { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .page-hero { padding: 120px 0 60px; }
}

button:hover,
button:focus {
    background-color: transparent !important;
}
.services-float {
      position: relative;
      z-index: 10;
      /* The card sits -50% of its own height above the next section */
      margin-top: -60px;
      margin-bottom: 0;
      padding: 0 32px;
}

.services-card {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Tab navigation bar */
.tabs-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #eaecef;
    overflow-x: auto;
    scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    flex: 1; min-width: 160px;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    padding: 20px 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
    transition: background .2s;
    font-family: 'DM Sans', sans-serif;
}
/* .tab-btn::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transform: scaleX(0);
    transition: transform .25s ease;
} */
.tab-btn.active::after,
.tab-btn:hover::after { transform: scaleX(1); }
.tab-btn.active { background: rgba(26,143,92,.04); }

.tab-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #edf1f4;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s;
    flex-shrink: 0;
}
.tab-btn.active .tab-icon,
.tab-btn:hover .tab-icon {
    background: linear-gradient(135deg, var(--green), var(--teal));
    box-shadow: 0 6px 16px rgba(26,143,92,.3);
}
.tab-icon svg { width: 20px; height: 20px; stroke: #7a8fa0; transition: stroke .25s; }
.tab-btn.active .tab-icon svg,
.tab-btn:hover .tab-icon svg { stroke: #fff; }

.tab-label {
    font-size: .78rem; font-weight: 600;
    color: #8a9bb0;
    text-align: center; line-height: 1.3;
    transition: color .2s;
    letter-spacing: .01em;
}
.tab-btn.active .tab-label { color: var(--ink); }
