/* ============================================
   Navuq.online — Design System & Layout
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f9fc;
  --primary: #3366ff;
  --primary-hover: #2952e0;
  --accent: #ff7a59;
  --highlight: #3cb371;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;

  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-label: "DM Sans", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 41, 59, 0.08);
  --shadow-lift: 0 12px 32px rgba(51, 102, 255, 0.12);

  --header-h: 72px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.45s;
}

/* Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.125rem;
  letter-spacing: -0.015em;
}

p {
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Layout
   ============================================ */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 720px);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 560px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.0625rem;
}

.label {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Buttons & Links
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(51, 102, 255, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-muted);
  padding-inline: 0.75rem;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-on-gradient {
  background: rgba(255, 255, 255, 0.9);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  transition: gap 0.2s var(--ease);
}

.text-link:hover {
  gap: 0.55rem;
}

/* Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list a {
  padding: 0.5rem 0.7rem;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--primary);
  background: rgba(51, 102, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero
   ============================================ */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(51, 102, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 122, 89, 0.05), transparent 50%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.brand-signal {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-copy h1 {
  margin-bottom: 1.15rem;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(51, 102, 255, 0.08));
}

/* Cards shared
   ============================================ */

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.paths-grid,
.tools-grid {
  grid-template-columns: repeat(3, 1fr);
}

.path-card,
.tool-card,
.mentor-card,
.story-card,
.pricing-card,
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.path-card:hover,
.tool-card:hover,
.mentor-card:hover,
.story-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.path-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.path-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
}

.path-icon svg {
  width: 48px;
  height: 48px;
}

.path-card h3,
.tool-card h3 {
  margin-bottom: 0.5rem;
}

.path-card p,
.tool-card p {
  font-size: 0.9375rem;
}

/* Toolkit
   ============================================ */

.tool-card {
  padding: 1.25rem;
}

.tool-preview {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.tool-preview svg {
  width: 100%;
  height: auto;
}

/* Timeline / Roadmap
   ============================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
  opacity: 0.7;
}

.timeline-step {
  position: relative;
  text-align: center;
  padding-top: 0.25rem;
}

.timeline-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}

.timeline-step:hover .timeline-num,
.timeline-step.is-active .timeline-num {
  background: var(--primary);
  color: var(--white);
}

.timeline-step h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.timeline-step p {
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* Mentors
   ============================================ */

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mentor-card {
  overflow: hidden;
  padding-bottom: 1.5rem;
  text-align: center;
}

.mentor-photo svg {
  width: 100%;
  height: auto;
}

.mentor-card h3 {
  margin: 1.15rem 0 0.35rem;
}

.mentor-expertise {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.mentor-exp {
  font-size: 0.8125rem;
  margin-bottom: 1.15rem;
}

/* Resources slider
   ============================================ */

.resources-slider-wrap {
  position: relative;
}

.resources-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.resources-slider::-webkit-scrollbar {
  display: none;
}

.resource-card {
  scroll-snap-align: start;
  padding: 0 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.resource-media {
  height: 140px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(51, 102, 255, 0.14), var(--bg-alt));
}

.resource-card:nth-child(2) .resource-media {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.16), var(--bg-alt));
}

.resource-card:nth-child(3) .resource-media {
  background: linear-gradient(135deg, rgba(60, 179, 113, 0.16), var(--bg-alt));
}

.resource-card:nth-child(4) .resource-media {
  background: linear-gradient(135deg, rgba(51, 102, 255, 0.14), var(--bg-alt));
}

.resource-card .label,
.resource-card h3,
.resource-card p,
.resource-card .text-link {
  padding-inline: 1.35rem;
}

.resource-card h3 {
  margin-bottom: 0.5rem;
}

.resource-card > p:not(.label) {
  font-size: 0.9375rem;
  flex: 1;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.slider-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Stories
   ============================================ */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.story-card {
  padding: 1.75rem;
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(51, 102, 255, 0.12);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.story-card:nth-child(1) .story-avatar {
  background: rgba(51, 102, 255, 0.12);
  color: var(--primary);
}

.story-card:nth-child(2) .story-avatar {
  background: rgba(255, 122, 89, 0.14);
  color: var(--accent);
}

.story-card:nth-child(3) .story-avatar {
  background: rgba(60, 179, 113, 0.14);
  color: var(--highlight);
}

.story-transition {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.story-quote {
  font-size: 0.9375rem;
  margin-bottom: 1.15rem;
}

.story-meta {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Features
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-block {
  padding: 0.5rem 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-block h3 {
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.9375rem;
}

/* Pricing
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  margin-bottom: 0.75rem;
}

.price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-period {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.75rem;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlight);
}

/* FAQ
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}

.faq-icon::before {
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  top: 4px;
  left: 10px;
  width: 2px;
  height: 14px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg) scaleY(0);
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
}

.faq-answer p {
  font-size: 0.975rem;
}

/* Final CTA
   ============================================ */

.cta-section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background:
    linear-gradient(135deg, #eef4ff 0%, #f5f9fc 45%, #fff5f1 100%);
  text-align: center;
}

.cta-inner {
  max-width: 640px;
}

.cta-inner h2 {
  margin-bottom: 0.85rem;
}

.cta-inner > p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

/* Footer
   ============================================ */

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.site-footer .logo-text {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: 0.85rem;
  max-width: 28ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 2rem 1.25rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

.newsletter {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 120px;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
}

.footer-copy {
  font-size: 0.8125rem !important;
  margin: 0 !important;
  max-width: none !important;
}

.footer-legal,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a,
.footer-social a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-social a:hover {
  color: var(--white);
}

/* Reveal animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page loader
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.page-loader.is-active {
  opacity: 1;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s var(--ease);
}

.page-loader.is-active .loader-bar {
  width: 100%;
  animation: loadPulse 1.2s var(--ease) forwards;
}

@keyframes loadPulse {
  0% { width: 0; }
  70% { width: 85%; }
  100% { width: 100%; }
}

/* Responsive
   ============================================ */

@media (max-width: 1024px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-md);
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

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

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1rem;
  }

  .timeline::before {
    display: none;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero-lead {
    max-width: none;
  }

  .mentor-grid,
  .stories-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .resources-slider {
    grid-auto-columns: minmax(85%, 1fr);
  }
}

@media (max-width: 560px) {
  .paths-grid,
  .tools-grid,
  .features-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    text-align: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: start;
  }

  .timeline-num {
    grid-row: 1 / 3;
    margin: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-ctas .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .path-card,
  .tool-card,
  .mentor-card,
  .story-card,
  .resource-card,
  .pricing-card,
  .btn {
    transition: none;
  }
}
