:root {
  --primary: #111111;
  --primary-light: #313131;
  --accent: #d8613c;
  --accent-muted: #cfcabe;
  --text: #111111;
  --text-muted: #636363;
  --bg: #ffffff;
  --bg-section: #f9f9f9;
  --border: #e2e2e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(17, 17, 17, 0.08);
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ge-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ge-logo__img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.ge-logo:hover {
  opacity: 0.8;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg) 100%);
}

.hero__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.hero__headline {
  font-family: 'Cardo', Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.hero__subhead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0;
}

/* Section titles */
.section-title {
  font-family: 'Cardo', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Proof Points */
.proof-points {
  padding: 4rem 0;
  background: var(--bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.proof-card {
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

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

.proof-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.proof-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* Comparison */
.comparison {
  padding: 4rem 0;
  background: var(--bg-section);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-card--before { background: var(--bg); }

.comparison-card--after {
  background: linear-gradient(135deg, #fef5f2 0%, #fff8f5 100%);
  border-color: rgba(216, 97, 60, 0.3);
}

.comparison-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.comparison-card--after .comparison-card__label { color: var(--accent); }

.comparison-card__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.comparison-card__text--secondary {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.comparison-card--after .comparison-card__text { color: var(--primary); }

@media (max-width: 640px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* Quick Wins */
.quick-wins {
  padding: 4rem 0;
  background: var(--bg);
}

.quick-wins__list {
  margin: 0;
  padding-left: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.quick-wins__list li {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.quick-wins__list li strong { color: var(--primary); }

/* Growth Experts */
.growth-experts {
  padding: 4rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.growth-experts__title {
  font-family: 'Cardo', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 1.5rem;
}

.growth-experts__list {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.growth-experts__list li {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.growth-experts__list li strong { color: var(--primary); }

.growth-experts__bridge {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* CTA */
.cta {
  padding: 4.5rem 0 5rem;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta__headline {
  font-family: 'Cardo', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cta__subtext {
  font-size: 1rem;
  opacity: 0.92;
  margin: 0 0 1.5rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.cta__button {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.cta__button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.cta__reassurance {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

.cta__brand:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}

.footer__links {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.footer__links a {
  color: var(--accent);
  text-decoration: none;
}

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

.footer__separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .cta__button:hover { transform: none; }
}
