/* Money, Actually — Global Styles */

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

:root {
  /* Warm creams */
  --cream-50: #FFFDFB;
  --cream-100: #FFF9F5;
  --cream-200: #FFF3EB;

  /* Sage greens */
  --sage-50: #F6F9F7;
  --sage-100: #E8F0EB;
  --sage-200: #D1E2D7;
  --sage-300: #B3CFC0;
  --sage-400: #8FB8A0;
  --sage-500: #6B9B7E;
  --sage-600: #548066;
  --sage-700: #436651;

  /* Soft blush */
  --blush-50: #FDF8F8;
  --blush-100: #FCF0F0;
  --blush-500: #E39595;
  --blush-600: #D47575;

  /* Soft lavender */
  --lavender-50: #F9F8FC;
  --lavender-100: #F3F0F9;
  --lavender-500: #A899CC;
  --lavender-600: #8B79B3;

  /* Warm neutrals */
  --warm-50: #FDFCFB;
  --warm-100: #F8F6F4;
  --warm-200: #F0EBE7;
  --warm-300: #E4DDD6;
  --warm-400: #D4C9BE;
  --warm-500: #BFB0A0;
  --warm-600: #9A8A78;
  --warm-700: #756858;
  --warm-800: #524A3E;
  --warm-900: #3D372E;
  --warm-950: #2A2621;

  /* Typography */
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
  --shadow-soft-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.06), 0 4px 12px -4px rgba(0, 0, 0, 0.03);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--warm-950);
  background-color: var(--cream-50);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--warm-900);
  line-height: 1.2;
}

a {
  color: var(--sage-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sage-700);
}

img { max-width: 100%; height: auto; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 221, 214, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-400), var(--sage-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.logo-icon span {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--warm-900);
}

.logo-text em {
  color: var(--sage-600);
  font-style: italic;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--warm-600);
}

.nav a:hover {
  color: var(--warm-900);
}

.nav a.active {
  color: var(--sage-600);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--sage-500);
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--sage-600);
  color: white;
  box-shadow: var(--shadow-soft-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--sage-600);
  font-weight: 500;
  border-radius: 9999px;
  border: 2px solid var(--sage-200);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--sage-50);
  border-color: var(--sage-300);
  color: var(--sage-700);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--warm-600);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Main content padding for fixed header */
main {
  padding-top: 5rem;
}

/* Page Header */
.page-header {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  text-align: center;
}

@media (min-width: 768px) {
  .page-header {
    padding: 5rem 0;
  }
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header h1 span {
  color: var(--sage-600);
  font-style: italic;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--warm-600);
  max-width: 36rem;
  margin: 0 auto;
}

/* Section */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--sage-600);
  font-style: italic;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--warm-600);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--sage-50);
  color: var(--sage-700);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-lavender {
  background: var(--lavender-50);
  color: var(--lavender-600);
}

.badge-blush {
  background: var(--blush-50);
  color: var(--blush-600);
}

/* Card */
.card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  border: 1px solid var(--warm-100);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  box-shadow: var(--shadow-soft-lg);
}

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

/* Tool Cards */
.tools-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.tool-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.tool-icon-sage {
  background: var(--sage-50);
  color: var(--sage-600);
}

.card:hover .tool-icon-sage {
  background: var(--sage-100);
}

.tool-icon-lavender {
  background: var(--lavender-50);
  color: var(--lavender-600);
}

.card:hover .tool-icon-lavender {
  background: var(--lavender-100);
}

.tool-icon-blush {
  background: var(--blush-50);
  color: var(--blush-600);
}

.card:hover .tool-icon-blush {
  background: var(--blush-100);
}

.tool-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tool-content {
  flex: 1;
}

.tool-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--warm-900);
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.card:hover .tool-title {
  color: var(--sage-700);
}

.tool-description {
  font-size: 0.875rem;
  color: var(--warm-600);
  line-height: 1.5;
}

.tool-arrow {
  display: none;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--warm-50);
  color: var(--warm-400);
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .tool-arrow {
    display: flex;
  }
}

.card:hover .tool-arrow {
  background: var(--sage-100);
  color: var(--sage-600);
}

.tool-arrow svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.card:hover .tool-arrow svg {
  transform: translateX(2px);
}

.badge-coming-soon {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: var(--warm-100);
  color: var(--warm-600);
  border-radius: 9999px;
  margin-left: 0.5rem;
}

/* View all link */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--warm-600);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.view-all:hover {
  background: var(--warm-100);
  color: var(--warm-800);
}

.view-all svg {
  width: 1rem;
  height: 1rem;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-500);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--sage-600);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

/* Tool Page */
.tool-page {
  padding: 2rem 0 4rem;
}

@media (min-width: 768px) {
  .tool-page {
    padding: 3rem 0 6rem;
  }
}

.tool-page-header {
  margin-bottom: 2rem;
}

.tool-page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .tool-page-header h1 {
    font-size: 2.5rem;
  }
}

.tool-page-header p {
  font-size: 1.125rem;
  color: var(--warm-600);
  max-width: 36rem;
}

/* Calculator Wrapper */
.calculator-wrapper {
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft-lg);
  padding: 2rem;
  border: 1px solid var(--warm-100);
}

@media (min-width: 768px) {
  .calculator-wrapper {
    padding: 3rem;
  }
}

.calculator-intro {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--warm-500);
}

.calculator-intro svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--sage-300);
}

.calculator-intro p {
  font-size: 1.125rem;
  max-width: 24rem;
  margin: 0 auto;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-700);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--warm-50);
  border: 1px solid var(--warm-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--warm-900);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--sage-300);
  box-shadow: 0 0 0 3px rgba(107, 155, 126, 0.1);
  background: white;
}

.form-input::placeholder {
  color: var(--warm-400);
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--warm-500);
  margin-top: 0.375rem;
}

/* Results */
.results-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm-100);
}

.result-card {
  background: var(--sage-50);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.result-label {
  font-size: 0.875rem;
  color: var(--warm-600);
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage-700);
}

@media (min-width: 768px) {
  .result-value {
    font-size: 2.5rem;
  }
}

/* About Page */
.about-content {
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .about-content {
    padding: 4rem 0 6rem;
  }
}

.about-section {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--warm-900);
}

.about-section p {
  font-size: 1.125rem;
  color: var(--warm-700);
  margin-bottom: 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

/* Article Cards (Learn page) */
.article-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: block;
}

.article-card-inner {
  height: 100%;
}

.article-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage-600);
  margin-bottom: 0.75rem;
}

.article-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--warm-900);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.card:hover .article-title {
  color: var(--sage-700);
}

.article-excerpt {
  font-size: 0.9375rem;
  color: var(--warm-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 0.8125rem;
  color: var(--warm-500);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state svg {
  width: 4rem;
  height: 4rem;
  color: var(--warm-300);
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--warm-700);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--warm-500);
}

/* Footer */
.footer {
  background: var(--warm-50);
  border-top: 1px solid var(--warm-100);
}

.footer-main {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand p {
  color: var(--warm-600);
  margin: 1rem 0 1.5rem;
  max-width: 20rem;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  max-width: 20rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--warm-200);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--warm-900);
}

.footer-newsletter input::placeholder {
  color: var(--warm-400);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--sage-300);
  box-shadow: 0 0 0 3px rgba(107, 155, 126, 0.1);
}

.footer-newsletter .btn-primary {
  font-size: 0.875rem;
  white-space: nowrap;
}

.footer-column h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--warm-900);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--warm-600);
}

.footer-column a:hover {
  color: var(--sage-600);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--warm-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--warm-500);
}

.footer-tagline {
  color: var(--warm-400);
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero Section (homepage only) */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 8rem;
  }
}

.hero-bg-1 {
  position: absolute;
  top: 5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(232, 240, 235, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(243, 240, 249, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--warm-100);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.6s ease-out;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--sage-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--warm-600);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s ease-out 0.1s both;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero h1 span {
  display: block;
  color: var(--sage-600);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--warm-600);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  animation: fadeSlideUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeSlideUp 0.6s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

/* Trust indicators */
.trust {
  margin-top: 4rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .trust {
    margin-top: 6rem;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sage-600);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .trust-item-value {
    font-size: 1.875rem;
  }
}

.trust-item-label {
  font-size: 0.875rem;
  color: var(--warm-500);
}

/* Wave divider */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
}

@media (min-width: 768px) {
  .wave {
    height: 4rem;
  }
}

.wave svg {
  width: 100%;
  height: 100%;
  color: var(--cream-50);
}

/* Philosophy Section */
.philosophy {
  background: white;
}

.philosophy-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.philosophy-item {
  text-align: center;
}

.philosophy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--lavender-50);
  color: var(--lavender-500);
  margin-bottom: 1.5rem;
}

.philosophy-icon svg {
  width: 2rem;
  height: 2rem;
}

.philosophy-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--warm-900);
  margin-bottom: 0.75rem;
}

.philosophy-description {
  font-size: 1rem;
  color: var(--warm-600);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--sage-50), var(--cream-50), var(--lavender-50));
}

.cta-content {
  text-align: center;
}

.cta-quote {
  margin-bottom: 2rem;
}

.cta-quote svg {
  width: 3rem;
  height: 3rem;
  color: var(--sage-200);
}

.cta h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.cta h2 span {
  color: var(--sage-600);
  font-style: italic;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--warm-600);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.cta .btn-primary {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--warm-400);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: rgba(255, 253, 251, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-100);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 40;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--warm-700);
  border-bottom: 1px solid var(--warm-100);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--sage-600);
}

.mobile-nav .btn-primary {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
