/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #191919;
  --surface:  #1f1f1f;
  --border:   rgba(255, 255, 255, 0.13);
  --border-s: rgba(255, 255, 255, 0.05);
  --muted:    rgba(255, 255, 255, 0.55);
  --text:     rgba(255, 255, 255, 0.70);
  --dadada:   #dadada;
  --white:    #ffffff;
  --accent:   #BAA3FD;
  --accent-dim: rgba(186, 163, 253, 0.12);

  --font-display: 'Glegoo', serif;
  --font-body:    'Unbounded', sans-serif;
  --font-label:   'Unbounded', sans-serif;

  --max:  1280px;
  --pad:  clamp(24px, 6.25vw, 80px);
  --row:  clamp(80px, 10vw, 140px);
  --r:    16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Utilities ───────────────────────────────────────── */
.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.wrap-hero {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Fade-in ─────────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.fi.on { opacity: 1; transform: none; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 100;
  background: rgba(25, 25, 25, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
}


.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.nav-contact-line {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-contact-label {
  color: rgba(255,255,255,0.3);
}

.nav-contact-email {
  color: var(--white);
  transition: color 0.2s;
}

.nav-contact-line:hover .nav-contact-email { color: var(--accent); }

.nav-contact-bar {
  width: 8px;
  height: 1.5px;
  background: var(--white);
  border-radius: 99px;
  align-self: flex-end;
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0px;
}

.hero-inner {
  padding: var(--row) 0;
  width: 100%;
}

.hero-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 4px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin-bottom: 32px;
  max-width: 1072px;
}

.hero-hl-accent { color: var(--accent); }
.hero-hl-white  { color: var(--white); }
.hero-hl-ghost  { color: rgba(255,255,255,0.5); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--dadada);
  max-width: 824px;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Dark gradient pill CTA — matches Figma button */
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #353537 0%, #1f1e1e 100%);
  text-decoration: none;
  padding: 10px 18px 10px 10px;
  border-radius: 10px;
  box-shadow:
    0 0 5.6px rgba(0,0,0,0.25),
    inset 1.4px 1.4px 0 rgba(255,255,255,0.08),
    inset -1.4px -1.4px 0 rgba(255,255,255,0.03);
  transition: opacity 0.2s, transform 0.15s;
}

.btn-dark-pill:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}

.btn-email {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* Keep btn-white for other sections */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r);
  transition: opacity 0.2s, transform 0.15s;
}

.btn-white:hover { opacity: 0.88; transform: translateY(-1px); }


/* ─── HERO IMAGE ──────────────────────────────────────── */
#hero-image {
  overflow: hidden;
}

.hero-image-bg {
  background: url('Images/Hero Image_BG.png') center / cover no-repeat;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-image-inner {
  width: 100%;
}

.hero-mockup-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-mockup {
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  display: block;
}

.hero-mockup--left {
  width: clamp(180px, 26vw, 380px);
  height: auto;
  position: relative;
  z-index: 1;
  margin-right: -40px;
  opacity: 0.9;
}

.hero-mockup--center {
  width: clamp(320px, 48vw, 660px);
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-mockup--right {
  width: clamp(180px, 26vw, 380px);
  height: auto;
  position: relative;
  z-index: 1;
  margin-left: -40px;
  opacity: 0.9;
}

/* ─── BLOG ────────────────────────────────────────────── */
#blog {
  padding-bottom: 0;
  overflow: hidden;
}

.blog-header {
  align-items: flex-start;
  gap: clamp(40px, 12vw, 176px);
  margin-bottom: 56px;
  flex-direction: row;
}

.blog-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.06em;
  flex-shrink: 0;
  white-space: nowrap;
}

.blog-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 4px;
}

.blog-desc {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--dadada);
  letter-spacing: 0.02em;
  max-width: 620px;
}

.blog-substack-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #353537 0%, #1f1e1e 100%);
  text-decoration: none;
  padding: 10px 18px 10px 10px;
  border-radius: 10px;
  box-shadow:
    0 0 5px rgba(0,0,0,0.25),
    inset 1.1px 1.1px 0 rgba(255,255,255,0.08),
    inset -1.1px -1.1px 0 rgba(255,255,255,0.03);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.15s;
}

.blog-substack-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.blog-substack-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: block;
  object-fit: cover;
}

/* Carousel */
.blog-carousel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 56px;
}

.blog-carousel-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: carousel-scroll 30s linear infinite;
}

.blog-carousel:hover .blog-carousel-track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.blog-card-img {
  flex-shrink: 0;
  height: 267px;
  width: auto;
  display: block;
  object-fit: cover;
}

/* Quick Preview */
.blog-preview-outer {
  flex-direction: column;
  align-items: stretch;
  padding-bottom: var(--row);
}

.blog-preview {
  width: 100%;
}

.blog-preview-label {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.blog-post {
  display: block;
  background: #1d1d1d;
  border: 1.1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s;
}

.blog-post:hover { border-color: rgba(255,255,255,0.1); }

.blog-post--ghost { opacity: 0.22; }

.blog-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #191919;
  border-bottom: 1.1px solid rgba(255,255,255,0.04);
  padding: 10px 14px;
  height: 42px;
}

.blog-post-meta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #929292;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-post-ep { color: #929292; }
.blog-post-title-text { color: #fefefe; }

.blog-post-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.blog-post-excerpt {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--dadada);
  line-height: 1.35;
  letter-spacing: 0.03em;
  padding: 20px 14px 28px;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
.section {
  padding: var(--row) 0;
  border-top: 1px solid var(--border-s);
}

.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow .label {
  color: var(--accent);
}

.section-eyebrow::before {
  content: '---';
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.04em;
}

/* ─── PILLARS ─────────────────────────────────────────── */
.pillars-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.pillars-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--dadada);
  padding-top: 8px;
}

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

.pillar-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  min-height: 340px;
  transition: background 0.25s;
}

.pillar-card:hover { background: rgba(255,255,255,0.03); }

.pillar-num {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pillar-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
}

.section-quote {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  margin-top: 40px;
}

/* ─── PACKAGES ────────────────────────────────────────── */
.packages-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

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

.pkg-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.pkg-card:hover { background: rgba(255,255,255,0.03); }

.pkg-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-tagline {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.pkg-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pkg-for-label {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.pkg-for-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 24px;
}

.pkg-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.pkg-includes li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pkg-includes li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}

.pkg-cta:hover { gap: 12px; opacity: 0.8; }

/* ─── WHO THIS IS FOR ─────────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.fit-col {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
}

.fit-col-title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fit-col--yes .fit-col-title { color: var(--accent); }
.fit-col--no  .fit-col-title { color: var(--muted); }

.fit-list { list-style: none; }

.fit-list li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.4;
}

.fit-list li:last-child { border-bottom: none; padding-bottom: 0; }

.fit-icon {
  font-size: 14px;
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 1px;
}

.fit-col--yes .fit-icon { color: var(--accent); }
.fit-col--no  .fit-icon { color: rgba(255,255,255,0.2); }

.fit-quote {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

/* ─── TAKES ───────────────────────────────────────────── */
.takes-inner {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.takes-tag {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.takes-tag::before {
  content: '---';
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
}

.takes-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.takes-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  max-width: 520px;
}

.takes-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--r);
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.takes-link:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── PROCESS ─────────────────────────────────────────── */
.process-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.process-card:hover { background: rgba(255,255,255,0.025); }
.process-card:hover::after { transform: scaleX(1); }

.process-num {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.process-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.process-quote {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

/* ─── FINAL CTA ───────────────────────────────────────── */
#close {
  border-top: 1px solid var(--border-s);
}

.close-inner {
  padding: var(--row) 0 0;
}

.close-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  max-width: 800px;
}

.close-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 440px;
}

.close-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.close-secondary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.close-secondary:hover { color: var(--text); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 380px;
  background: url('Images/FooterBG.png') top / cover no-repeat;
}

.footer-inner {
  padding: 0 var(--pad) 32px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 67px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.footer-logomark {
  width: 58px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #191919;
  border: 0.833px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 3.333px;
  width: 100%;
}

.footer-bar-icons {
  display: flex;
  align-items: center;
  gap: 3.333px;
}

.footer-icon-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #353537 0%, #1f1e1e 100%);
  box-shadow:
    0 0 3.4px rgba(0,0,0,0.25),
    inset 0.833px 0.833px 0 rgba(255,255,255,0.08),
    inset -0.833px -0.833px 0 rgba(255,255,255,0.03);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-icon-btn:hover { opacity: 0.8; }

.footer-icon-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.footer-bar-email {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--dadada);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-talk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #353537 0%, #1f1e1e 100%);
  box-shadow:
    0 0 3.4px rgba(0,0,0,0.25),
    inset 0.833px 0.833px 0 rgba(255,255,255,0.08),
    inset -0.833px -0.833px 0 rgba(255,255,255,0.03);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-talk-btn:hover { opacity: 0.8; }

.footer-copy {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  line-height: 0.9;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .pillars-split,
  .packages-split,
  .process-split { grid-template-columns: 1fr; }

  .pillars-grid,
  .packages-grid { grid-template-columns: 1fr; }

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

  .fit-grid { grid-template-columns: 1fr; }

  .takes-inner { grid-template-columns: 1fr; gap: 28px; }

  .nav-links .nav-link-hide { display: none; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .footer-big { flex-direction: column; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
