/* =========================================
   EINS Consulting — Shared Stylesheet
   Grey & Green Light Theme
   ========================================= */

:root {
  --green: #4CAF50;
  --green-dark: #3d9140;
  --green-light: #e8f5e9;
  --navy: #29465B;
  --navy-light: #3a5a70;
  --gray-bg: #f9f9f9;
  --gray-mid: #808080;
  --gray-light: #E2E2E2;
  --gray-border: #d5d5d5;
  --gray-card: #f4f4f4;
  --gray-dark: #525252;
  --white: #FFFFFF;
  --text: #29465B;
  --text-light: #555;
  --font: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--gray-bg);
  color: var(--text);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---- HEADER ---- */
header {
  background: var(--white);
  padding: 20px 40px;
  border-bottom: 1px solid var(--gray-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Lucida Console', monospace;
  font-size: clamp(12px, 3vw, 20px);
  color: var(--gray-mid);
  letter-spacing: 4px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ---- NAV ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 40px;
  text-align: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-grow: 1;
}

.nav-links a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta-link a {
  font-style: normal !important;
  font-weight: 600 !important;
  color: var(--green) !important;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 8px 18px !important;
  margin: 8px 20px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta-link a:hover {
  background: var(--green) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy);
  padding: 15px 0;
}

/* ---- MAIN ---- */
main { flex: 1; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--white);
  padding: 50px 40px;
  border-bottom: 3px solid var(--green);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 200;
  color: var(--gray-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 640px;
  font-weight: 300;
  line-height: 1.75;
}

/* ---- SECTIONS ---- */
.section-white { background: var(--white); padding: 60px 40px; }
.section-gray  { background: var(--gray-bg); padding: 60px 40px; }
.section-dark  { background: var(--navy); padding: 60px 40px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 200;
  color: var(--gray-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-dark .section-title { color: var(--white); font-weight: 300; }

.section-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ---- TWO COLUMN ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.two-col-center { align-items: center; }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray-light);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.card a:hover { text-decoration: underline; }

/* ---- STAT BOXES ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.stat-box {
  background: var(--gray-card);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-light);
}

.stat-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 400;
  line-height: 1.4;
}

/* ---- CHECK LIST ---- */
.check-list { display: flex; flex-direction: column; gap: 9px; }

.check-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
}

.check-mark { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ---- PAIN ITEMS ---- */
.pain-list { display: flex; flex-direction: column; gap: 10px; }

.pain-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.pain-item:hover { border-color: var(--green); }

.pain-x {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fdecea; color: #c0392b;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.pain-text { font-size: 13px; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* ---- GREEN PANEL ---- */
.green-panel {
  background: var(--green-light);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 32px;
}

.green-panel h3 {
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}

.green-panel p {
  font-size: 13px; color: var(--text-light);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 18px;
}

/* ---- DARK PANEL ---- */
.dark-panel {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
}

.dark-panel h3 {
  font-size: 17px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}

.dark-panel p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 18px;
}

.dark-panel .check-mark { color: var(--green); }
.dark-panel .check-item { color: rgba(255,255,255,0.75); }

/* ---- FEATURE LIST ---- */
.feature-list { display: flex; flex-direction: column; }

.feature-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-light);
}

.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }

.feature-num {
  font-size: 22px; font-weight: 600;
  color: var(--gray-light); line-height: 1;
  flex-shrink: 0; width: 36px;
}

.feature-item h4 {
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px; color: var(--text-light);
  line-height: 1.7; font-weight: 300;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pricing-card.featured {
  border: 2px solid var(--green);
  transform: scale(1.03);
}

.plan-badge {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 14px; width: fit-content;
}

.plan-badge.core { background: var(--gray-card); color: var(--gray-mid); }
.plan-badge.growth { background: var(--green-light); color: var(--green-dark); }
.plan-badge.biz { background: #e8f0f5; color: var(--navy); }

.plan-name {
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}

.plan-users { font-size: 12px; color: var(--gray-mid); margin-bottom: 16px; }

.plan-price {
  font-size: 28px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.3px;
}

.plan-currency { font-size: 13px; font-weight: 300; color: var(--gray-mid); }

.plan-divider {
  border: none; border-top: 1px solid var(--gray-light);
  margin: 18px 0;
}

.plan-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }

.plan-feature {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--text-light);
  line-height: 1.5; font-weight: 300;
}

.feat-check { color: var(--green); flex-shrink: 0; font-size: 13px; }

.plan-cta {
  margin-top: 22px;
  display: block; text-align: center;
  padding: 11px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.plan-cta.light { background: var(--gray-card); color: var(--navy); border: 1px solid var(--gray-border); }
.plan-cta.light:hover { background: var(--gray-light); }
.plan-cta.dark { background: var(--green); color: var(--white); }
.plan-cta.dark:hover { background: var(--green-dark); }

/* ---- STEP LIST ---- */
.step-list { display: flex; flex-direction: column; }

.step-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.step-item:last-child { border-bottom: none; }

.step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light); border: 1px solid #c8e6c9;
  color: var(--green-dark);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step-item h5 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.step-item p { font-size: 12px; color: var(--gray-mid); line-height: 1.6; font-weight: 300; }

/* ---- PILL TAGS ---- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px; color: var(--navy); font-weight: 300;
}

.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ---- CONTACT STRIP ---- */
.contact-strip {
  background: var(--gray-light);
  padding: 50px 40px;
  border-top: 1px solid var(--gray-border);
}

.contact-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

.contact-strip h2 {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 200; color: var(--gray-dark); margin-bottom: 6px;
}

.contact-strip p { font-size: 13px; color: var(--text-light); font-weight: 300; }

.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: var(--white);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 11px 20px; border-radius: 7px; text-decoration: none;
  transition: background 0.2s;
}

.btn-wa:hover { background: var(--green-dark); }

.btn-email {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); color: var(--navy);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 11px 20px; border-radius: 7px; text-decoration: none;
  border: 1px solid var(--gray-border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-email:hover { border-color: var(--navy); background: var(--gray-bg); }

/* ---- FOOTER ---- */
footer {
  background: var(--gray-light);
  text-align: center; padding: 20px 40px;
  color: var(--gray-mid); font-size: 13px; font-weight: 300;
  border-top: 1px solid var(--gray-border);
}

footer a { color: var(--green); text-decoration: none; font-weight: 600; }

/* ---- FADE ANIMATION ---- */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  header { padding: 16px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; width: 100%; padding-bottom: 10px; }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; }
  .nav-links a { padding: 10px 0; border-bottom: 1px solid var(--gray-light); }
  .nav-cta-link a { margin: 10px 0; display: inline-block; }
  .page-hero { padding: 36px 20px; }
  .section-white, .section-gray, .section-dark { padding: 44px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-strip { padding: 36px 20px; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 20px; }
}
