/* ============================================================
   Elite Growing Solutions — Main Stylesheet
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --dark: #0d1a0d;
  --dark2: #162216;
  --green-deep: #1a3a1a;
  --green-mid: #2e5d2e;
  --cream: #f7f4ed;
  --cream2: #ede8dc;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  z-index: 100;
  background: rgba(13, 26, 13, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
}
.nav-logo span { color: var(--gold); }
.nav-tagline {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  text-align: right;
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  background: var(--dark);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
  width: fit-content;
  animation: fadeUp 0.5s ease 0.1s both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  animation: fadeUp 0.5s ease 0.2s both;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 300;
  animation: fadeUp 0.5s ease 0.25s both;
}

.hero-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 48px;
  animation: fadeUp 0.5s ease 0.35s both;
}
.hero-body strong { color: rgba(255, 255, 255, 0.9); font-weight: 500; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.45s both;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 60px 20px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-visual { width: 100%; max-width: 440px; }

.hero-card-main {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-plant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.plant-item {
  background: var(--green-deep);
  border-radius: 3px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.plant-icon { font-size: 22px; margin-bottom: 8px; display: block; }
.plant-name { font-size: 12px; color: rgba(255, 255, 255, 0.85); font-weight: 500; margin-bottom: 2px; }
.plant-yield { font-size: 10px; color: var(--gold); }

.roi-strip {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.roi-label { font-size: 11px; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 1.5px; }
.roi-value { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); }
.roi-unit { font-size: 11px; color: rgba(255, 255, 255, 0.5); text-align: right; }
.roi-unit span { color: var(--gold-light); font-size: 10px; }

.stat-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.stat-cell {
  background: rgba(13, 26, 13, 0.95);
  padding: 14px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); display: block; }
.stat-lbl { font-size: 10px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1px; }

/* ── BUTTONS ─────────────────────────────────────────────── */

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; }

/* ── URGENCY BAR ─────────────────────────────────────────── */

.urgency-bar {
  background: var(--gold);
  padding: 10px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urgency-dot { width: 5px; height: 5px; background: var(--dark); border-radius: 50%; opacity: 0.4; }

/* ── SECTIONS ────────────────────────────────────────────── */

.section { padding: 100px 64px; }
.section-alt { background: var(--cream2); }
.section-dark { background: var(--dark); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.section-dark .section-eyebrow { color: var(--gold); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-dark .section-h2 { color: #fff; }

.section-intro {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 60px;
}
.section-dark .section-intro { color: rgba(255, 255, 255, 0.6); }

/* ── MARKET CARDS ────────────────────────────────────────── */

.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.market-card {
  background: var(--dark2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.market-card:hover { background: #1f341f; }
.market-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.market-card:hover::before { height: 100%; }
.market-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  font-style: italic;
}
.market-title { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 12px; }
.market-pitch { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.7; margin-bottom: 20px; }
.market-detail { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ── SYSTEM CARDS ────────────────────────────────────────── */

.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sys-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
}
.sys-card.featured { border-color: var(--gold); border-width: 2px; }
.sys-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.sys-tier { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 10px; }
.sys-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-dark); margin-bottom: 6px; }
.sys-price { font-size: 28px; font-weight: 300; color: var(--text-dark); margin-bottom: 4px; }
.sys-price sup { font-size: 16px; vertical-align: top; margin-top: 6px; display: inline-block; }
.sys-price-range { font-size: 14px; font-weight: 300; color: #888; }
.sys-price-note { font-size: 11px; color: var(--text-mid); margin-bottom: 24px; }
.sys-divider { height: 1px; background: rgba(0, 0, 0, 0.08); margin-bottom: 20px; }
.sys-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.sys-check {
  width: 14px; height: 14px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sys-check::after {
  content: '';
  width: 5px; height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.sys-btn {
  width: 100%;
  padding: 13px;
  margin-top: 24px;
  background: transparent;
  border: 1px solid var(--green-mid);
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.sys-card.featured .sys-btn { background: var(--green-mid); color: #fff; }
.sys-btn:hover { background: var(--green-mid); color: #fff; }

/* ── ROI CALCULATOR ──────────────────────────────────────── */

.roi-section { background: var(--dark); padding: 100px 64px; }
.roi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.roi-result-panel {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}
.roi-result-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.roi-slider-group { margin-bottom: 32px; }
.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.roi-slider-label .roi-slider-text { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.roi-slider-label .roi-slider-val { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.roi-metric { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.roi-metric:last-child { border-bottom: none; margin-bottom: 0; }
.roi-metric-label { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.roi-metric-value { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); }
.roi-note { font-size: 11px; color: rgba(255, 255, 255, 0.35); margin-top: 4px; }

/* ── PROCESS STEPS ───────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.process-step { padding: 0 24px; text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.step-title { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
.step-desc { font-size: 12px; color: var(--text-mid); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.trust-card {
  background: var(--cream2);
  padding: 36px 30px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.trust-card:hover { border-left-color: var(--gold); }
.trust-quote {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}
.trust-quote::before {
  content: '\201C';
  font-size: 40px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 2px;
}
.trust-author { font-size: 12px; font-weight: 500; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }
.trust-role { font-size: 11px; color: var(--text-mid); margin-top: 3px; }

/* ── CTA SECTION ─────────────────────────────────────────── */

.cta-section {
  background: var(--dark);
  padding: 120px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'EGS';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 320px;
  color: rgba(255, 255, 255, 0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}
.cta-h2 em { color: var(--gold); }

.cta-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
  position: relative;
}

/* Contact form */
.cta-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.cta-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.cta-form input:first-child { border-right: 1px solid rgba(255, 255, 255, 0.08); }
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.cta-form button {
  padding: 16px 28px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-form button:hover { background: var(--gold-light); }
.cta-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.cta-promise {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form feedback messages */
.form-feedback {
  max-width: 480px;
  margin: 16px auto 0;
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  display: none;
  position: relative;
}
.form-feedback.success {
  background: rgba(46, 93, 46, 0.3);
  border: 1px solid rgba(46, 93, 46, 0.6);
  color: #a8d5a8;
}
.form-feedback.error {
  background: rgba(180, 40, 40, 0.25);
  border: 1px solid rgba(180, 40, 40, 0.5);
  color: #f0a0a0;
}
.form-feedback.visible { display: block; }

/* Trust row below form */
.cta-trust-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-trust-item { text-align: center; }
.cta-trust-num { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); display: block; }
.cta-trust-lbl { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.cta-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

/* ── FOOTER ──────────────────────────────────────────────── */

footer {
  background: #0a150a;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; color: rgba(255, 255, 255, 0.7); }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 10px; color: rgba(255, 255, 255, 0.25); margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-info { font-size: 11px; color: rgba(255, 255, 255, 0.3); text-align: right; line-height: 1.6; }

/* ── ANIMATIONS ──────────────────────────────────────────── */

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

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 100px 32px 60px; }
  .urgency-bar { padding: 10px 24px; }
  .section { padding: 60px 32px; }
  .market-grid { grid-template-columns: 1fr; gap: 2px; }
  .systems-grid { grid-template-columns: 1fr; gap: 20px; }
  .roi-section { padding: 60px 32px; }
  .roi-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 32px; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid rgba(255, 255, 255, 0.15); border-bottom: none; }
  .cta-form input:first-child { border-right: 1px solid rgba(255, 255, 255, 0.15); }
  footer { flex-direction: column; gap: 16px; padding: 32px 24px; text-align: center; }
  .footer-info { text-align: center; }
}
