:root {
  --primary-green: #0a4d33;
  --primary-green-hover: #073a26;
  --gold-accent: #d4a347;
  --gold-accent-hover: #b88a38;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --border-color: #e2e8f0;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--bg-soft);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--gold-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--gold-accent-hover);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.header-ad {
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
}

.ad-placeholder {
  width: 100%;
  height: 90px;
  background-color: #f1f5f9;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 16px;
  gap: 20px;
}

.logo {
  font-size: 2.5rem;
  /* Bigger size */
  font-weight: 800;
  color: #000000;
  /* Black color */
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1;
}

.logo span {
  color: #e60000;
  /* New exact Red color */
}

.main-nav ul {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  /* Already defined but being explicit */
}

.main-nav>ul>li {
  position: relative;
}

.main-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  padding: 10px 0;
}

.main-nav a:hover {
  color: #e60000;
}

/* Submenu Styles */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-top: 3px solid #e60000;
  /* Premium Red Accent */
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 2px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  text-align: left;
  display: flex;
  /* Override parent flex */
  flex-direction: column;
  /* Stack items vertically */
  gap: 0 !important;
  /* Force removal of any inherited gaps */
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu li {
  display: block;
}

.submenu a {
  padding: 8px 24px !important;
  /* Reduced padding to fix excessive spacing */
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
  /* Keep in one column with no wrapping */
  line-height: 1.4;
}

.submenu a:hover {
  background-color: #f8fafc;
  color: #e60000;
  padding-left: 30px;
  /* Subtle slide effect */
}

.header-cta {
  display: none;
  /* Hide primary CTA in the new centered layout as it messes with alignment, or keep it floating if preferred */
}

/* Hero Section */
.hero {
  padding: 40px 0;
  background-color: var(--bg-soft);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-line {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-line::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-accent);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #000;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.hero-visual:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: white;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--primary-green);
  margin-left: 6px;
}

.hero-visual-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sample-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sample-link:hover {
  color: var(--primary-green-hover);
  text-decoration: underline;
}

.badges {
  display: flex;
  gap: 8px;
}

.badge {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Proof Strip */
.proof {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.proof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 600;
}

.logos {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logos:hover {
  opacity: 0.9;
  filter: grayscale(50%);
}

.logo-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* What We Do */
.what-we-do {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 64px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

/* Avoid empty space in aspiration section (4 cards) */
.aspiration .cards-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-soft);
  color: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

/* How It Works */
.how-it-works {
  padding: 40px 0;
  background-color: var(--bg-soft);
}

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

.step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Featured Outputs */
.featured-outputs {
  padding: 100px 0;
}

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.output-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.output-card:hover {
  box-shadow: var(--shadow-md);
}

.output-media {
  aspect-ratio: 16/10;
  background-color: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.output-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.output-card:hover .output-media img {
  transform: scale(1.05);
}

.output-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.output-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.output-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.output-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.output-link {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.output-link:hover {
  color: var(--primary-green-hover);
}

/* Use Cases */
.use-cases {
  padding: 80px 0;
  background-color: var(--primary-green);
  color: white;
}

.use-cases .section-header {
  margin-bottom: 48px;
}

.use-cases h2,
.use-cases p {
  color: white;
}

.use-cases p {
  opacity: 0.8;
}

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

.case-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.case-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.case-item h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.case-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.8;
}

/* Why Us Matrix */
.comparison {
  padding: 100px 0;
}

.matrix-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

th,
td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--bg-soft);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

th:first-child {
  width: 40%;
}

th.highlight {
  background-color: var(--primary-green);
  color: white;
}

td {
  font-size: 1rem;
  color: var(--text-muted);
}

td.highlight {
  background-color: rgba(10, 77, 51, 0.05);
  font-weight: 600;
  color: var(--text-dark);
}

/* Lead Capture Form */
.lead-capture {
  padding: 40px 0;
  background-color: var(--bg-soft);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: start;
  gap: 20px;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group.full label {
  margin-bottom: 0;
  text-align: left;
  padding-top: 14px;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(10, 77, 51, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  max-width: 300px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.checkbox-group input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-green);
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-wrapper .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: #9CA3AF;
  max-width: 320px;
}

.footer-nav h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.footer-nav ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-links a {
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9CA3AF;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .trust-line {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .cards-grid,
  .steps,
  .outputs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    /* In a real app, add a hamburger menu */
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cards-grid,
  .steps,
  .outputs-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* About page */
.about-hero {
  padding: 100px 0 60px;
  background-color: var(--bg-soft);
  text-align: center;
}

.about-content {
  padding: 100px 0;
}

.mission-box {
  background: var(--primary-green);
  color: white;
  padding: 60px;
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
  text-align: center;
}

.mission-box h2,
.mission-box p {
  color: white;
}

.team-member h3 {
  color: var(--primary-green);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
}

/* New theme sections */
.what-you-get {
  padding: 40px 0;
  background-color: var(--bg-white);
}

.wyg-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.wyg-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.wyg-table th,
.wyg-table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.wyg-table th {
  background-color: var(--bg-soft);
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.wyg-table tr:last-child td {
  border-bottom: none;
}

.wyg-area {
  font-weight: 600;
  color: var(--primary-green);
  width: 30%;
}

.problem-section {
  padding: 40px 0;
  background-color: #fcf1f1;
}

.problem-list {
  max-width: 700px;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.problem-icon {
  color: #e60000;
  font-size: 1.5rem;
  line-height: 1;
}

.infrastructure {
  padding: 40px 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.infra-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.infra-card h3 {
  color: var(--primary-green);
  margin-bottom: 24px;
}

.infra-list {
  margin-bottom: 24px;
}

.infra-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.infra-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.infra-result {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-dark);
}

.aspiration-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.early-advantage {
  padding: 40px 0;
  background-color: var(--text-dark);
  color: white;
}

.early-advantage h2,
.early-advantage p {
  color: white;
}

.ea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.ea-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
}

.ea-header {
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.ea-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ea-item {
  font-size: 0.95rem;
  opacity: 0.9;
}

.founder-credibility {
  padding: 40px 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.founder-card {
  background: var(--bg-soft);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.founder-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.founder-tagline {
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.founder-bio {
  list-style: none;
}

.founder-bio li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.founder-bio li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: 900;
}

.packages {
  padding: 40px 0;
  background-color: var(--bg-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  background: white;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--primary-green);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.featured-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--primary-green);
}

.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.package-features li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
}

.faq {
  padding: 40px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3 span {
  color: var(--primary-green);
}

.faq-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

.bottom-micro {
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-soft);
}

.timeline-section .steps {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .ea-grid,
  .pricing-grid,
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ea-grid,
  .pricing-grid,
  .infra-grid,
  .founders-grid,
  .aspiration-grid {
    grid-template-columns: 1fr;
  }
}