/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --text: #e5e5e5;
  --text-muted: #8a8a8a;
  --accent: #f0c040;
  --accent-hover: #f5d060;
  --accent-glow: rgba(240, 192, 64, 0.08);
  --accent-glow-strong: rgba(240, 192, 64, 0.15);
  --white: #fff;
  --radius: 12px;
  --radius-lg: 16px;
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === FOCUS STATES === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === NAV === */
nav {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 6px;
}

.logo span {
  color: var(--accent);
  margin-left: -0.1em;
}

nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a.nav-link:hover {
  color: var(--white);
}

nav a.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

nav a.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* === SECTIONS === */
section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

/* === HERO === */
.hero-wrapper {
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -10%;
  background: rgba(240, 192, 64, 0.07);
  animation: orb-drift-1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: -8%;
  background: rgba(240, 192, 64, 0.04);
  animation: orb-drift-2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 20%;
  background: rgba(255, 255, 255, 0.02);
  animation: orb-drift-3 18s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.08); }
  66% { transform: translate(-15px, 25px) scale(0.92); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 0 6rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  background: var(--accent-glow);
  border: 1px solid rgba(240, 192, 64, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  width: fit-content;
}

.hero-tag svg {
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero .cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-source {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #555;
  font-style: italic;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 0.875rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(240, 192, 64, 0.2);
}

.btn-secondary {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--white);
}

/* === GLOW DIVIDERS === */
.glow-divider {
  position: relative;
  height: 1px;
  background: var(--border);
  max-width: 1080px;
  margin: 0 auto;
  overflow: visible;
}

.glow-divider::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(240, 192, 64, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* === SECTION HEADERS === */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* === PROBLEM === */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.problem-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 0 0 1px var(--border-hover);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === HOW IT WORKS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(240, 192, 64, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === OUTCOME CARDS === */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.outcome-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 2px 16px var(--accent-glow);
}

.outcome-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
}

.outcome-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.outcome-header-text {
  flex: 1;
  min-width: 0;
}

.outcome-header-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.outcome-header-text .outcome-problem {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.outcome-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  margin-top: 0.25rem;
}

.outcome-card.expanded .outcome-chevron {
  transform: rotate(180deg);
}

.outcome-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.outcome-card.expanded .outcome-details {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.outcome-detail-block {
  margin-bottom: 1rem;
}

.outcome-detail-block:last-child {
  margin-bottom: 0;
}

.outcome-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.outcome-detail-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === OBJECTION BLOCK === */
.objection-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.objection-card:hover {
  border-color: var(--border-hover);
}

.objection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.objection-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}

.objection-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.objection-card.expanded .objection-chevron {
  transform: rotate(180deg);
}

.objection-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.objection-card.expanded .objection-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.objection-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === FAQ === */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-card:hover {
  border-color: var(--border-hover);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  margin-left: 1rem;
}

.faq-card.expanded .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-card.expanded .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === PROOF / CASE STUDY === */
.founder-quote {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 640px;
  margin-top: 2.5rem;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.founder-attr {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

.case-study {
  margin-top: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.case-study-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  background: var(--accent-glow);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
}

.case-study h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.case-study-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.case-study-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.case-study-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

/* === BEFORE/AFTER TABLE === */
.before-after-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.before-after-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border-hover);
}

.before-after-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.5;
}

.before-after-table td:first-child {
  font-weight: 600;
  color: var(--white);
}

.before-after-table .after-cell {
  color: var(--accent);
  font-weight: 600;
}

/* === AUTOMATION FLOW === */
.automation-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 80px;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.flow-node:hover .flow-icon {
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}

.flow-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.flow-arrow {
  flex-shrink: 0;
  color: var(--border-hover);
  margin: 0 0.35rem;
  margin-bottom: 1.2rem;
}

/* === CONTACT === */
.contact-wrapper {
  margin-top: 3rem;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 192, 64, 0.2), transparent);
}

/* === CUSTOM FORM === */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form .form-field {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.contact-form label .required {
  color: var(--accent);
  margin-left: 0.15em;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border-hover);
  color: var(--white);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

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

.contact-form .form-submit {
  margin-top: 0.5rem;
}

.contact-form .form-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.contact-form .form-error.visible {
  display: block;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-global-error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: #ff6b6b;
  display: none;
}

.form-global-error.visible {
  display: block;
}

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

/* === BLOG === */
.blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  margin-top: 2rem;
}

.blog-card:first-of-type {
  margin-top: 3rem;
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 2px 16px var(--accent-glow);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* Blog post */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.blog-post-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-post h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.blog-post h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.blog-post .blog-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.blog-post .blog-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* === SOURCES (page-specific) === */
.sources-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.sources-content .intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.source-entry {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.source-entry:first-of-type {
  border-top: 1px solid var(--border);
}

.source-stat {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.source-citation {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === FOOTER === */
footer {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.footer-logo img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  opacity: 0.5;
}

.footer-tagline {
  margin-top: 0.25rem;
  color: #555;
  font-size: 0.75rem;
}

.footer-links {
  margin-top: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 5rem 1.25rem; }
  nav {
    top: 8px;
    left: 10px;
    right: 10px;
    padding: 0.625rem 1rem;
  }
  nav .nav-links { gap: 0.75rem; }
  nav a.nav-link { font-size: 0.7rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .case-study { padding: 1.5rem; }
  .automation-flow { gap: 0; justify-content: flex-start; }
  .flow-node { min-width: 56px; }
  .flow-icon { width: 40px; height: 40px; }
  .flow-arrow { margin: 0 0.15rem; }
  .contact-wrapper { padding: 1.75rem; }
  .before-after-table { font-size: 0.8rem; }
  .before-after-table th,
  .before-after-table td { padding: 0.5rem 0.65rem; }
  .sources-content { padding: 7rem 1.25rem 4rem; }
  .blog-content { padding: 7rem 1.25rem 4rem; }
  .blog-post { padding: 7rem 1.25rem 4rem; }
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.06s; }
.fade-in:nth-child(3) { transition-delay: 0.12s; }
.fade-in:nth-child(4) { transition-delay: 0.18s; }
.fade-in:nth-child(5) { transition-delay: 0.24s; }
.fade-in:nth-child(6) { transition-delay: 0.3s; }
.fade-in:nth-child(7) { transition-delay: 0.36s; }
.fade-in:nth-child(8) { transition-delay: 0.42s; }
.fade-in:nth-child(9) { transition-delay: 0.48s; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-orb { animation: none; }
  .btn-primary:hover,
  nav a.nav-cta:hover {
    transform: none;
  }
}
