
:root {
  --green-deep:   #13542D;
  --green-dark:   #1B241B;
  --gold:         #FCD34C;
  --gold-soft:    #FDE98A;
  --off-white:    #F8F6F0;
  --charcoal:     #2A2A2A;
  --muted:        #6B7280;
  --border:       rgba(19,84,45,0.15);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, .display-font {
  font-family: 'Playfair Display', serif;
}

/* ─── NAV ─── */
.site-nav {
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold) !important;
  letter-spacing: -0.5px;
}
.site-nav .navbar-brand span {
  color: #fff;
  font-size: 0.7rem;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
.site-nav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.5rem !important;
  transition: color 0.2s;
}
.site-nav .nav-link:hover { color: var(--gold) !important; }

.site-nav .nav-link-cta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.5rem !important;
  transition: color 0.2s;
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  border-radius: 4px;
  padding: 0.45rem 1.2rem !important;
  font-size: 0.85rem !important;
  text-decoration: none;
}
.btn-nav-cta:hover { background: var(--gold-soft); }



/* ─── HERO ─── */
.hero-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(19,84,45,0.5) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FCD34C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.btn-primary-gold {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  color: var(--green-dark);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}

/* ─── DASHBOARD MOCKUP ─── */
.dashboard-mockup {
  background: #1a2e1e;
  border: 1px solid rgba(252,211,76,0.25);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.mockup-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 0.75rem;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mockup-card {
  background: rgba(19,84,45,0.4);
  border: 1px solid rgba(252,211,76,0.15);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
}
.mockup-card-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'DM Mono', monospace;
}
.mockup-card-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.1rem;
}
.mockup-chart-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
}
.mockup-chart {
  background: rgba(19,84,45,0.4);
  border: 1px solid rgba(252,211,76,0.15);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}
.mockup-bar-item {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--gold);
  opacity: 0.7;
}
.mockup-bar-item:nth-child(even) { background: #13542D; opacity: 1; }
.mockup-list {
  background: rgba(19,84,45,0.4);
  border: 1px solid rgba(252,211,76,0.15);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
}
.mockup-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-list-item:last-child { border-bottom: none; }
.mockup-list-name { font-size: 0.55rem; color: rgba(255,255,255,0.6); }
.mockup-list-badge {
  font-size: 0.48rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 700;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--off-white);
  padding: 5rem 0;
}
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--green-deep);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.2;
}
.pain-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.pain-icon {
  width: 36px; height: 36px;
  background: rgba(252,211,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b07d00;
  font-size: 1rem;
}
.pain-text strong { color: var(--green-dark); font-weight: 600; }
.pain-text p { font-size: 0.9rem; color: var(--muted); margin: 0.1rem 0 0; }

/* ─── SOLUTION SECTION ─── */
.solution-section {
  background: var(--green-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.solution-section::after {
  content: '"';
  position: absolute;
  right: -30px;
  top: -60px;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(252,211,76,0.03);
  line-height: 1;
  pointer-events: none;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(252,211,76,0.15);
  border-radius: 10px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: var(--gold);
  background: rgba(252,211,76,0.05);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.feature-card h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ─── STAKEHOLDERS ─── */
.stakeholders-section {
  background: var(--off-white);
  padding: 5rem 0;
}

/* Accordion-style role blocks */
.role-block {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.role-block.open {
  border-color: var(--green-deep);
  box-shadow: 0 8px 32px rgba(19,84,45,0.10);
}
.role-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.role-trigger:hover { background: rgba(19,84,45,0.03); }
.role-block.open .role-trigger { background: rgba(19,84,45,0.04); }
.role-trigger-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(19,84,45,0.1);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.role-block.open .role-trigger-icon {
  background: var(--green-deep);
  color: var(--gold);
}
.role-trigger-text { flex: 1; }
.role-trigger-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0 0 0.15rem;
  line-height: 1.2;
}
.role-trigger-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.role-chevron {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
}
.role-block.open .role-chevron {
  transform: rotate(180deg);
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--gold);
}
.role-body {
  display: none;
  padding: 0 1.5rem 1.75rem;
  border-top: 1px solid rgba(19,84,45,0.08);
}
.role-body.visible { display: block; }

.stakeholder-content {
  padding-top: 1.5rem;
}
.stakeholder-benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.benefit-check {
  width: 22px; height: 22px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.stakeholder-content h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.stakeholder-quote {
  background: rgba(19,84,45,0.05);
  border-left: 3px solid var(--green-deep);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ─── CUSTOMISATION ─── */
.custom-section {
  background: #fff;
  padding: 5rem 0;
}
.custom-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d3b1e 100%);
  border-radius: 16px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.custom-banner::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 60px solid rgba(252,211,76,0.06);
}
.custom-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 40px solid rgba(252,211,76,0.04);
}
.custom-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.custom-steps {
  counter-reset: step;
}
.custom-step {
  counter-increment: step;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}
.custom-step::before {
  content: counter(step);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.custom-step-content h6 {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}
.custom-step-content p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* ─── PRICING ─── */
.pricing-section {
  background: var(--off-white);
  padding: 5rem 0;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(19,84,45,0.1);
}
.pricing-card.featured {
  background: var(--green-dark);
  border-color: var(--gold);
}
.pricing-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}
.pricing-card:not(.featured) .pricing-icon {
  background: rgba(19,84,45,0.08);
  color: var(--green-deep);
}
.pricing-card.featured .pricing-icon {
  background: var(--gold);
  color: var(--green-dark);
}
.pricing-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pricing-card:not(.featured) h4 { color: var(--green-dark); }
.pricing-card.featured h4 { color: #fff; }
.pricing-card p.desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-card:not(.featured) p.desc { color: var(--muted); }
.pricing-card.featured p.desc { color: rgba(255,255,255,0.6); }
.pricing-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
}
.pricing-card:not(.featured) .pricing-list li { color: var(--charcoal); }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.8); }
.pricing-list li i { color: var(--green-deep); margin-top: 2px; }
.pricing-card.featured .pricing-list li i { color: var(--gold); }
.price-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.pricing-card:not(.featured) .price-note {
  background: rgba(19,84,45,0.08);
  color: var(--green-deep);
}
.pricing-card.featured .price-note {
  background: var(--gold);
  color: var(--green-dark);
}

/* ─── OBJECTIONS ─── */
.objections-section {
  background: #fff;
  padding: 5rem 0;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--green-deep); }
.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i { transition: transform 0.2s; color: var(--green-deep); }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── METRICS ─── */
.metrics-section {
  background: var(--green-dark);
  padding: 4rem 0;
}
.metric-item {
  text-align: center;
}
.metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--off-white);
  padding: 5rem 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FCD34C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.cta-box h2 em {
  font-style: normal;
  color: var(--gold);
}
.cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #0f1a10;
  border-top: 2px solid var(--gold);
  padding: 3rem 0 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-brand span {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: -3px;
}
.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 2rem 0 1.5rem;
}

/* ─── UTILITIES ─── */
.gold-text { color: var(--gold); }
.green-text { color: var(--green-deep); }
.divider-gold {
  height: 3px;
  width: 48px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.badge-custom {
  background: rgba(19,84,45,0.1);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-animate { animation: fadeInUp 0.7s ease both; }
.hero-animate:nth-child(2) { animation-delay: 0.15s; }
.hero-animate:nth-child(3) { animation-delay: 0.3s; }
.hero-animate:nth-child(4) { animation-delay: 0.45s; }

@media (max-width: 767px) {
  .hero-section { padding: 4rem 0 3rem; }
  .custom-banner { padding: 2rem 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .stakeholder-content { padding: 1.5rem; }
}