/* ============================================================
   SMV BOARD FORUM — Design System
   Senior Consulting · Deep Colors · Modern Typography
   ============================================================ */

/* ---- Variables ---- */
:root {
  --navy:        #0e1c2f;
  --navy-mid:    #162538;
  --navy-light:  #1e3452;
  --gold:        #b8924a;
  --gold-light:  #d4a96a;
  --gold-pale:   #f0e4cc;
  --cream:       #f5f0e8;
  --warm-white:  #faf8f4;
  --slate:       #4a5568;
  --text:        #1a2332;
  --text-muted:  #6b7a8d;
  --border:      rgba(184, 146, 74, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:       1160px;
  --section-pad: 100px;
  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.35);
}
.btn-ghost {
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(14, 28, 47, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.825rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  color: var(--gold-light);
  font-weight: 500;
}
.nav-links .nav-cta:hover { color: var(--gold-pale); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(14, 28, 47, 0.98);
  padding: 20px 32px 28px;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}
.nav-mobile a:hover { color: var(--gold-light); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 50%,
    #0a1520 100%
  );
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(184, 146, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(30, 52, 82, 0.6) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(14, 28, 47, 0.4));
}
.hero-overlay {
  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' fill-rule='evenodd'%3E%3Cg fill='%23b8924a' fill-opacity='0.03'%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") repeat;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   SECTION LEAD
   ============================================================ */
.section-lead {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.section-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section-lead-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
}
.section-lead-right p {
  color: var(--slate);
  margin-bottom: 16px;
  font-size: 1rem;
}
.lead-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .section-lead-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   OUTCOMES
   ============================================================ */
.section-outcomes {
  padding: var(--section-pad) 0;
  background: var(--navy);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-outcomes .section-header h2 { color: #fff; }
.section-outcomes .section-header .eyebrow { color: var(--gold-light); }
.section-intro {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
}
.section-header.center .section-intro { margin: 0 auto; }
.section-outcomes .section-intro { color: rgba(255,255,255,0.5); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.outcome-card:hover {
  background: rgba(184, 146, 74, 0.07);
  border-color: rgba(184, 146, 74, 0.25);
  transform: translateY(-3px);
}
.outcome-card::before {
  content: attr(data-number);
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(184, 146, 74, 0.4);
}
.outcome-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 24px;
}
.outcome-icon svg { width: 100%; height: 100%; }
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.outcome-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { padding: 32px 24px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.section-process {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.section-process .section-header h2 { color: var(--navy); }
.section-process .section-intro { color: var(--slate); }

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 56px 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184, 146, 74, 0.1));
}
.process-step {
  display: flex;
  gap: 48px;
  padding: 36px 0;
  align-items: flex-start;
  position: relative;
}
.process-step + .process-step {
  border-top: 1px solid rgba(184, 146, 74, 0.12);
}
.step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin-left: 26px;
}
.step-content {
  padding-top: 8px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-content p {
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 560px;
}

.process-price-box {
  background: var(--navy);
  padding: 48px 56px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  max-width: 640px;
  margin-top: 24px;
}
.price-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.price-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.price-main span {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}
.process-price-box p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .process-timeline::before { left: 35px; }
  .step-number { width: 40px; height: 40px; min-width: 40px; margin-left: 16px; font-size: 0.75rem; }
  .process-step { gap: 24px; }
  .process-price-box { padding: 32px 28px; }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.section-partners {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.section-partners .section-header h2 { color: var(--navy); }
.section-partners .section-intro { color: var(--slate); }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.partner-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.partner-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.partner-img-wrap {
  background: var(--navy);
  height: 300px;
  overflow: hidden;
  position: relative;
}
.partner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter var(--transition), transform 0.5s ease;
}
.partner-card:hover .partner-photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.partner-info {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.partner-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}
.partner-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.partner-bio {
  flex: 1;
  margin-bottom: 24px;
}
.partner-bio p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 14px;
}
.partner-bio p:last-child { margin-bottom: 0; }
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.partner-tags span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  margin-top: auto;
}
.linkedin-link:hover {
  color: var(--gold-light);
}

.cofounders-section {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 48px;
}
.cofounders-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.cofounders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cofounder {
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cofounder:hover {
  border-color: var(--border);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.cofounder-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.cofounder-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .partners-grid { grid-template-columns: 1fr; }
  .cofounders-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cofounders-grid { grid-template-columns: 1fr; }
  .partner-info { padding: 28px 24px; }
}

/* ============================================================
   QUOTE
   ============================================================ */
.section-quote {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  text-align: center;
}
.section-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
}
.section-quote blockquote::before {
  content: '"';
  font-size: 6rem;
  color: rgba(184, 146, 74, 0.2);
  position: absolute;
  top: -20px;
  left: -20px;
  line-height: 1;
  font-family: var(--font-display);
}
.quote-attr {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--navy);
  background: linear-gradient(160deg, #0d1b2f 0%, var(--navy-mid) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.contact-left > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}
.contact-persons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cp-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184, 146, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
}
.cp-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-details strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
.cp-details a {
  font-size: 0.85rem;
  color: var(--gold-light);
  transition: color var(--transition);
  font-weight: 400;
}
.cp-details a:hover { color: var(--gold-pale); }

/* Contact person photos */
.cp-photo {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(184, 146, 74, 0.35);
}

/* Contact Form */
.contact-form, .form-success {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.hidden { display: none !important; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }
label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
input, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
input:focus, textarea:focus {
  border-color: rgba(184, 146, 74, 0.5);
  background: rgba(255,255,255,0.07);
}
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.15);
  border: 1px solid rgba(184, 146, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
}
.form-success p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .contact-form { padding: 28px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080f1a;
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  text-align: right;
  align-self: end;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-copy { text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.outcome-card:nth-child(2) { transition-delay: 0.1s; }
.outcome-card:nth-child(3) { transition-delay: 0.2s; }
.outcome-card:nth-child(4) { transition-delay: 0.3s; }
.outcome-card:nth-child(5) { transition-delay: 0.4s; }
.outcome-card:nth-child(6) { transition-delay: 0.5s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }
