/* ===================================================
   PRO PHYSIQUE FITNESS — STYLE SYSTEM
   Colors derived from Instagram carousel:
   - Background: #0D0D0D (near black)
   - Surface:    #1A1A1A (dark charcoal cards)
   - Gold:       #C8A94E (primary accent)
   - Gold Light: #D4BA6A (hover/highlight)
   - Text:       #F5F5F5 (white)
   - Text Muted: #A0A0A0 (gray body)
   - Font:       Oswald (headings) + Inter (body)
   =================================================== */

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

:root {
  --bg:          #0D0D0D;
  --bg-surface:  #1A1A1A;
  --bg-card:     #141414;
  --gold:        #C8A94E;
  --gold-light:  #D4BA6A;
  --gold-dark:   #A8893A;
  --white:       #F5F5F5;
  --gray:        #A0A0A0;
  --gray-dark:   #666;
  --red:         #C0392B;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-width:   1200px;
  --section-pad: 100px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 24px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 4px; font-weight: 600; }

p {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.gold { color: var(--gold); }

.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-sub {
  max-width: 680px;
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---- NAVBAR ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.nav-logo {
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.logo-pro {
  color: var(--gold);
  font-weight: 700;
}
.logo-physique {
  color: var(--white);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1510 50%, #0D0D0D 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 169, 78, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 169, 78, 0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding-top: 80px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- SECTIONS ---- */

.section {
  padding: var(--section-pad);
}

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

/* ---- ABOUT / SPLIT LAYOUT ---- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
}

.split-text p {
  margin-bottom: 16px;
}

.split-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--bg-surface);
  border: 1px solid rgba(200, 169, 78, 0.15);
  padding: 32px;
  transition: border-color 0.3s;
}
.about-card:hover {
  border-color: var(--gold);
}

.about-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.2rem;
}
.about-card p {
  font-size: 0.95rem;
}

/* ---- PROBLEMS ---- */

.problems-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--gray);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.x-mark {
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  text-decoration: line-through;
  text-decoration-color: var(--red);
}

.problem-item span:last-child {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}

/* ---- METABOLIC TYPES GRID ---- */

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

.type-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 78, 0.12);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.type-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.type-card h3 {
  color: var(--white);
}

.type-card > p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.type-traits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.type-traits li {
  color: var(--gray);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}
.type-traits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

/* ---- NUTRITION & TRAINING LIST ---- */

.nutrition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.nutrition-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.nutrition-item h4 {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nutrition-item p {
  font-size: 0.95rem;
}

/* ---- CHECKS ROW ---- */

.checks-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--gray);
}

.check-mark {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- ABOUT STATS ---- */

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  color: var(--gold);
  display: flex;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* ---- PROBLEM CTA ---- */

.problem-cta {
  margin-top: 40px;
}

.problem-solution {
  font-size: 1.15rem;
  color: var(--white);
}

/* ---- TYPE NICKNAMES ---- */

.type-nickname {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ---- TYPES CTA ---- */

.types-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- PROGRAM / METASENSE ---- */

.program-tagline {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray);
  font-size: 1rem;
}

/* ---- PRICING CARD ---- */

.pricing-card {
  background: var(--bg-surface);
  border: 2px solid var(--gold);
  padding: 48px 40px;
  text-align: center;
}

.pricing-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-dollar {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 12px;
}

.price-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-dark);
  font-size: 0.8rem;
}

.guarantee svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- PROGRAMS SECTION ---- */

.programs-tier {
  margin-bottom: 56px;
}

.tier-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 169, 78, 0.2);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.program-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 78, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.program-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.program-card.featured {
  border-color: var(--gold);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px;
}

.program-card-header {
  padding: 28px 28px 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.program-card.featured .program-card-header {
  padding-top: 40px;
}

.program-card-header.free {
  padding-bottom: 16px;
}

.program-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.program-card-header.free .program-price {
  color: var(--gold);
}

.program-billing {
  font-size: 0.8rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-card-body {
  padding: 0 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card-body h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.program-card-body > p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.program-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.program-includes li {
  color: var(--gray);
  font-size: 0.82rem;
  padding-left: 18px;
  position: relative;
}

.program-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- ENTRY OFFER BAR ---- */

.entry-offer {
  margin-top: 16px;
}

.entry-offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-surface);
  border: 1px solid rgba(200, 169, 78, 0.2);
  padding: 36px 40px;
}

.entry-offer-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.entry-offer-text p {
  font-size: 0.95rem;
  max-width: 600px;
}

.entry-offer .btn {
  flex-shrink: 0;
}

/* ---- QUIZ SECTION ---- */

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
  text-align: left;
}

.quiz-step {
  padding: 32px;
  border: 1px solid rgba(200, 169, 78, 0.12);
  background: var(--bg-card);
}

.step-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.quiz-step h4 {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.quiz-step p {
  font-size: 0.9rem;
}

/* ---- FOOTER LINKS ---- */

.footer-links {
  display: flex;
  gap: 24px;
}

/* ---- CTA SECTION ---- */

.section-cta {
  background:
    linear-gradient(135deg, rgba(200, 169, 78, 0.06) 0%, transparent 50%),
    var(--bg);
  padding: 120px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.social-handle p {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand p {
  color: var(--gray-dark);
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}

/* ---- ANIMATIONS ---- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .types-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid,
  .programs-grid-3 {
    grid-template-columns: 1fr;
  }
  .entry-offer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1050px) and (min-width: 901px) {
  .programs-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* NAV */
  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-surface);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .nav-links .btn-nav {
    text-align: center;
    justify-content: center;
  }

  /* TYPOGRAPHY */
  h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); margin-bottom: 16px; }
  h3 { font-size: 1.2rem; }

  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .label {
    font-size: 0.65rem;
    padding: 5px 12px;
    letter-spacing: 0.15em;
  }

  /* BUTTONS */
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .btn-nav {
    width: auto;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 8px;
    padding-top: 80px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* ABOUT */
  .split-text p {
    font-size: 0.95rem;
  }

  .about-card {
    padding: 24px;
  }

  .about-stats {
    flex-direction: column;
    gap: 12px;
  }

  /* PROBLEMS */
  .problem-item {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  .problem-solution {
    font-size: 1rem;
  }

  /* TYPE CARDS */
  .type-card {
    padding: 28px 20px;
  }

  .type-letter {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* NUTRITION/TRAINING */
  .nutrition-item {
    gap: 16px;
    padding: 24px 0;
  }

  .type-badge {
    min-width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* CHECKS */
  .checks-row {
    text-align: left;
  }

  .check-item {
    font-size: 0.95rem;
  }

  /* PROGRAMS */
  .programs-tier {
    margin-bottom: 40px;
  }

  .program-card-header {
    padding: 20px 20px 12px;
  }

  .program-card.featured .program-card-header {
    padding-top: 36px;
  }

  .program-card-body {
    padding: 0 20px 20px;
  }

  .program-card-body h4 {
    font-size: 0.95rem;
  }

  .program-card-body > p {
    font-size: 0.82rem;
  }

  .program-price {
    font-size: 1.6rem;
  }

  /* ENTRY OFFER */
  .entry-offer-inner {
    padding: 24px 20px;
    gap: 20px;
  }

  .entry-offer-text h3 {
    font-size: 0.95rem;
  }

  .entry-offer-text p {
    font-size: 0.85rem;
  }

  /* QUIZ */
  .quiz-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
  }

  .quiz-step {
    padding: 24px;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* PRICING CARD */
  .pricing-card {
    padding: 32px 20px;
  }

  .price-number {
    font-size: 3.5rem;
  }

  /* CTA */
  .section-cta {
    padding: 80px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-brand .nav-logo {
    display: block;
    text-align: center;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .hero-content {
    padding-top: 70px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.8rem;
  }

  .program-card-header,
  .program-card-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .type-card {
    padding: 24px 16px;
  }
}
