
.docs-grid-section {
  margin-bottom: 96px;
}

.pillars-section {
  margin-bottom: 96px;
}

/* 4OS LUXURY DARK STYLESHEET */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
  --bg-midnight: #061426;
  --bg-surface: #0A1D33;
  --bg-card: rgba(12, 35, 61, 0.75);
  --bg-card-hover: rgba(16, 46, 80, 0.85);
  --bg-recessed: #040D1A;
  
  --gold-primary: #D9A866;
  --gold-bright: #E8BE7D;
  --gold-deep: #A67A38;
  --gold-soft: rgba(217, 168, 102, 0.12);
  --gold-glow: rgba(217, 168, 102, 0.35);
  
  --orange-energy: #F57F1D;
  --orange-glow: rgba(245, 127, 29, 0.35);
  
  --slate-quartz: #98A0A6;
  --pure-white: #FFFFFF;
  
  --border-gold: rgba(217, 168, 102, 0.22);
  --border-subtle: rgba(152, 160, 166, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 12px 36px rgba(2, 8, 18, 0.65);
  --shadow-glow: 0 0 35px var(--gold-glow);
}

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


/* ============================================================ */
/* FIX: TYPOGRAPHY, LINK CONTRAST AND ACTIVE NAV STATES        */
/* ============================================================ */

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

h1, h2, h3, h4, h5, h6, 
.brand-title, .hero-title, .doc-title, .section-title, .feature-title, .pillar-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
}

.nav-link.active {
  color: var(--gold-bright) !important;
  font-weight: 900 !important;
  background: var(--bg-card-hover) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 2px solid var(--gold-bright) !important;
  box-shadow: 0 0 15px var(--gold-glow) !important;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin-bottom: 18px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(2, 8, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  display: block;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.feature-item:hover {
  border-color: var(--gold-bright);
}

/* Make sure inner elements of the card are uniform */
.feature-item h4 {
  color: var(--pure-white) !important;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--slate-quartz) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================ */

body {
  background-color: var(--bg-midnight);
  color: var(--pure-white);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(217, 168, 102, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245, 127, 29, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #061426 0%, #030A14 100%);
  background-attachment: fixed;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-midnight);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pure-white);
  letter-spacing: -0.02em;
}

.brand-tag {
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--slate-quartz);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--gold-bright);
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 50%, var(--gold-deep) 100%);
  color: var(--bg-midnight);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px var(--gold-glow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* HERO SECTION */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title span.gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.orange {
  color: var(--orange-energy);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--slate-quartz);
  max-width: 780px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.narrative-formula {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 48px;
}

.formula-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pure-white);
  box-shadow: var(--shadow-card);
}

.formula-step.active {
  border-color: var(--border-gold);
  background: var(--bg-card);
  color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-soft);
}

.formula-arrow {
  color: var(--orange-energy);
  font-weight: 900;
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pure-white);
}

/* FOUR PILLARS GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 72px;
}

.pillar-card {
  background: #061426;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  opacity: 0.6;
}

.pillar-card.corpo::before {
  background: linear-gradient(90deg, var(--orange-energy), transparent);
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--gold-bright);
  box-shadow: 0 16px 40px rgba(2, 8, 18, 0.8), var(--shadow-glow);
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pillar-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.pillar-card.corpo .pillar-number {
  color: var(--orange-energy);
  background: rgba(245, 127, 29, 0.15);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(2, 8, 18, 0.9);
  background: #061426;
  flex-shrink: 0;
}

.pillar-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pillar-purpose {
  font-size: 0.95rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 14px;
}

.pillar-card.corpo .pillar-purpose {
  color: var(--gold-bright);
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--slate-quartz);
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pillar-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--slate-quartz);
}

.pillar-link {
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.pillar-link:hover {
  text-decoration: underline;
}

/* WILLOW & SANDRO LIBARDONI SHOWCASE */
.willow-section {
  background: linear-gradient(135deg, rgba(12, 35, 61, 0.9), rgba(6, 20, 38, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 72px;
  box-shadow: var(--shadow-card);
}

.willow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.willow-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--pure-white);
}

.willow-content p {
  color: var(--slate-quartz);
  margin-bottom: 20px;
  font-size: 1rem;
}

.willow-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-quartz);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* INTERACTIVE CAC:LTV DASHBOARD */
.dashboard-section {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 72px;
  box-shadow: var(--shadow-card);
}

.sim-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

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

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
}

.control-val {
  color: var(--gold-bright);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  outline: none;
  border: 1px solid var(--border-gold);
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-bright);
  cursor: pointer;
  box-shadow: 0 0 12px var(--gold-glow);
}

.sim-display {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kpi-box {
  background: var(--bg-recessed);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.kpi-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-quartz);
}

.kpi-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-top: 4px;
}

.kpi-value.gold {
  color: var(--gold-bright);
}

.kpi-value.orange {
  color: var(--orange-energy);
}

.ratio-badge {
  background: linear-gradient(135deg, rgba(217, 168, 102, 0.15), rgba(245, 127, 29, 0.15));
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.ratio-text {
  font-size: 0.9rem;
  color: var(--slate-quartz);
}

.ratio-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
}

/* SECTORS CARDS */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.sector-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--pure-white);
  transition: all 0.25s ease;
}

.sector-item:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.sector-icon {
  font-size: 1.5rem;
  background: var(--gold-soft);
  padding: 10px;
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
}

.sector-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sector-info p {
  font-size: 0.8rem;
  color: var(--slate-quartz);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-gold);
  background: var(--bg-recessed);
  padding: 40px 0;
  text-align: center;
  color: var(--slate-quartz);
  font-size: 0.85rem;
}

.footer-quote {
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 1rem;
  margin-bottom: 12px;
}


/* HORIZONTAL SECTOR CARDS & ORG TREE */
.org-tree {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.org-row {
  display: grid;
  gap: 20px;
  margin: 0;
  position: relative;
  z-index: 2;
}
.grid-1 { grid-template-columns: minmax(auto, 480px); justify-content: center; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.org-connector {
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  z-index: 1;
}

.org-line-v {
  width: 2px;
  height: 40px;
  background: var(--gold-primary);
  margin: 0 auto;
  transform: scaleY(0);
  transform-origin: top;
}
.org-line-v.visible {
  opacity: 0.6;
  transform: scaleY(1);
}

.org-branch-4, .org-merge-4, .org-branch-3 {
  position: relative;
  width: 100%;
  height: 40px;
  transform: scaleY(0.5);
  transform-origin: top;
}
.org-branch-4.visible, .org-merge-4.visible, .org-branch-3.visible {
  opacity: 0.6;
  transform: scaleY(1);
}

.org-branch-4 .h-line {
  position: absolute; top: 0; left: 12.5%; width: 75%; height: 2px; background: var(--gold-primary);
}
.org-branch-4 .v-drop {
  position: absolute; top: 0; width: 2px; height: 100%; background: var(--gold-primary);
}

.org-merge-4 .h-line {
  position: absolute; bottom: 0; left: 12.5%; width: 75%; height: 2px; background: var(--gold-primary);
}
.org-merge-4 .v-drop {
  position: absolute; top: 0; width: 2px; height: 100%; background: var(--gold-primary);
}

.org-branch-3 .h-line {
  position: absolute; top: 0; left: 16.666%; width: 66.666%; height: 2px; background: var(--gold-primary);
}
.org-branch-3 .v-drop {
  position: absolute; top: 0; width: 2px; height: 100%; background: var(--gold-primary);
}

.sector-horizontal-card {
  background: #061426;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(20px);
}

.sector-horizontal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.sector-horizontal-card:hover {
  border-color: var(--gold-bright);
  background: #091C33;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(2, 8, 18, 0.8), 0 0 16px rgba(217, 168, 102, 0.1);
}

.sector-horizontal-card .sector-title {
  color: var(--pure-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.sector-horizontal-card .sector-description {
  color: var(--slate-quartz);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 992px) {
  .org-line-v, .org-branch-4, .org-merge-4, .org-branch-3 {
    display: none !important;
  }
  .grid-4, .grid-3, .grid-1 {
    grid-template-columns: 1fr;
  }
  .org-row {
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* CSS TREE FOR ORG CHARTS (ASYMMETRICAL) */
.css-tree {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 40px;
  padding-top: 20px;
}
.css-tree::-webkit-scrollbar {
  height: 8px;
}
.css-tree::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.css-tree::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.css-tree ul {
  padding-top: 20px; position: relative;
  display: flex; justify-content: center;
  padding-left: 0;
  margin: 0;
}
.css-tree li {
  float: left; text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 8px 0 8px;
  display: flex; flex-direction: column; align-items: center;
}

/* Connectors */
.css-tree li::before, .css-tree li::after {
  content: '';
  position: absolute; top: 0; right: 50%;
  border-top: 2px solid var(--gold-primary);
  width: 50%; height: 20px;
  z-index: 1;
}
.css-tree li::after {
  right: auto; left: 50%;
  border-left: 2px solid var(--gold-primary);
}
.css-tree li:only-child::after, .css-tree li:only-child::before {
  display: none;
}
.css-tree li:only-child { padding-top: 0; }
.css-tree li:first-child::before, .css-tree li:last-child::after {
  border: 0 none;
}
.css-tree li:last-child::before {
  border-right: 2px solid var(--gold-primary);
  border-radius: 0 5px 0 0;
}
.css-tree li:first-child::after {
  border-radius: 5px 0 0 0;
}
.css-tree ul ul::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  border-left: 2px solid var(--gold-primary);
  width: 0; height: 20px;
  margin-left: -1px;
  z-index: 1;
}

/* Node Cards */
.css-tree .node-card {
  background: #061426;
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: 8px;
  min-width: 130px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.css-tree .node-card:hover {
  border-color: var(--gold-bright);
  background: #091C33;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 168, 102, 0.15);
}
.css-tree .node-title {
  color: var(--pure-white);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.css-tree .node-desc {
  color: var(--slate-quartz);
  font-size: 0.75rem;
  margin-top: 6px;
  margin-bottom: 0;
}
.css-tree .node-highlight {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(217,168,102,0.2);
}
.hero-compact {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 101;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--pure-white);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--slate-bg);
    flex-direction: column;
    padding-top: 80px;
    transition: 0.4s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    z-index: 100;
  }
  .nav-links.active-menu {
    right: 0;
  }
  .hamburger.active-menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active-menu span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active-menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* HOME CARDS GRID: 3 TOP, 2 BOTTOM CENTERED */
.home-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.home-cards-grid .feature-item {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
}
