/* ==========================================
   JB Wellness NY - Design System
   Luxury Medical Aesthetics Website
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ========== CSS Reset & Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --color-sage: #A8B5A0;
  --color-sage-light: #C4D0BE;
  --color-sage-dark: #8B9E83;
  --color-offwhite: #FAFAFA;
  --color-white: #FFFFFF;
  --color-charcoal: #2C2C2C;
  --color-charcoal-light: #4A4A4A;
  --color-muted: #6B6B6B;
  --color-accent: #D4AF37;
  --color-error: #C85250;
  --color-success: #7CAF8B;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.125rem;
  /* 18px */
  --fs-lg: 1.25rem;
  /* 20px */
  --fs-xl: 1.5rem;
  /* 24px */
  --fs-2xl: 2rem;
  /* 32px */
  --fs-3xl: 2.5rem;
  /* 40px */
  --fs-4xl: 3rem;
  /* 48px */
  --fs-5xl: 3.75rem;
  /* 60px */

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 2rem;
  /* 32px */
  --spacing-lg: 4rem;
  /* 64px */
  --spacing-xl: 6rem;
  /* 96px */
  --spacing-2xl: 8rem;
  /* 128px */

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Gradients */
  --gradient-sage: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
  --gradient-hero: linear-gradient(to bottom, rgba(250, 250, 250, 0.90), rgba(250, 250, 250, 0.95));
}

/* ========== Global Styles ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-charcoal);
}

h1 {
  font-size: var(--fs-4xl);
}

h2 {
  font-size: var(--fs-3xl);
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-muted);
}

a {
  color: var(--color-sage-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-sage);
}

/* Prevent anchor hover from overriding button text colors */
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited,
a.btn-primary:active {
  color: var(--color-white);
}

a.btn-secondary,
a.btn-secondary:visited,
a.btn-secondary:active {
  color: var(--color-charcoal);
}

a.btn-secondary:hover {
  color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-2xl) 0;
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-link:hover {
  background-color: var(--color-sage-light);
  color: var(--color-white);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
  min-width: 280px;
  z-index: 9999;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: var(--fs-sm);
  border-bottom: 1px solid #F0F0F0;
  transition: all var(--transition-fast);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--color-sage-light);
  color: var(--color-white);
  padding-left: calc(var(--spacing-md) + 4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-charcoal);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--spacing-sm) !important;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: var(--spacing-xs);
    background: var(--color-offwhite);
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-sage);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(168, 181, 160, 0.5);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-charcoal);
  border: 2px solid var(--color-sage);
}

.btn-secondary:hover {
  background: var(--color-sage);
  color: var(--color-white);
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(168, 181, 160, 0.5);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--fs-lg);
}

/* ========== Cards ========== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.card-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-xs);
}

.card-text {
  color: var(--color-muted);
  font-size: var(--fs-sm);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
  padding-top: 80px;
  /* Account for fixed navbar */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0.40), rgba(250, 250, 250, 0.60));
  z-index: 1;
  animation: overlayPulse 8s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  0% {
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.40), rgba(250, 250, 250, 0.60));
  }

  100% {
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.35), rgba(250, 250, 250, 0.55));
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-lg);
  animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: var(--fs-5xl);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: var(--fs-xl);
  color: var(--color-charcoal);
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

/* ========== Service Page Hero ========== */
.service-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  /* Account for fixed navbar with extra breathing room */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

/* ========== Grid System ========== */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ========== Forms ========== */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-charcoal);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-sm);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-sage);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== Utility Classes ========== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.fade-in {
  animation: fadeIn var(--transition-slow);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
    --fs-2xl: 1.75rem;
  }

  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .service-hero {
    padding-top: 120px;
    /* Mobile navbar can be taller, increase padding */
  }

  .hero-content {
    padding: var(--spacing-md);
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: var(--fs-md);
    margin-bottom: var(--spacing-md);
  }

  .section,
  .section-lg {
    padding: var(--spacing-lg) 0;
  }
}

/* ========== Stats Section ========== */
.stats-section {
  background: var(--gradient-sage);
  padding: var(--spacing-xl) 0;
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.stat-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
}

.stat-label {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ========== Testimonials Carousel ========== */
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  background: var(--color-offwhite);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card.prev {
  transform: translateX(-100%);
}

.testimonial-stars {
  color: #FFD700;
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--color-charcoal);
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--color-charcoal);
  font-size: var(--fs-md);
}

.testimonial-author span {
  color: var(--color-sage-dark);
  font-size: var(--fs-sm);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-sage-dark);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D0D0D0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.dot.active {
  background: var(--color-sage-dark);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--color-sage);
}

/* ========== Accessibility ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

/* ========== Responsive Design ========== */

/* --- Tablet Breakpoint (1024px) --- */
@media (max-width: 1024px) {

  /* Show hamburger on tablet too */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--spacing-sm) !important;
  }

  .dropdown-menu {
    position: static !important;
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none !important;
    margin-top: var(--spacing-xs) !important;
    background: var(--color-offwhite) !important;
    min-width: auto !important;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block !important;
  }

  /* Nav logo — constrain width */
  .nav-logo {
    font-size: var(--fs-lg);
    max-width: 250px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo img {
    height: 38px !important;
  }

  /* Hero — scale down */
  .hero {
    min-height: 70vh;
    overflow: visible;
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero-subtitle {
    font-size: var(--fs-lg);
  }

  .hero-content {
    padding: var(--spacing-md);
    max-width: 600px;
  }

  /* Service hero */
  .service-hero {
    min-height: 40vh;
    padding-top: 120px;
  }

  /* Sections */
  .section-lg {
    padding: var(--spacing-lg) 0;
  }

  /* Cards / Grid */
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  /* Buttons */
  .btn-large {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--fs-base);
  }

  /* Typography scaling */
  h1 {
    font-size: var(--fs-3xl);
  }

  h2 {
    font-size: var(--fs-2xl);
  }

  h3 {
    font-size: var(--fs-xl);
  }
}

/* --- Mobile Breakpoint (768px) --- */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 var(--spacing-lg);
    overflow: visible;
  }

  .hero-title {
    font-size: var(--fs-3xl);
  }

  .hero-subtitle {
    font-size: var(--fs-md);
    margin-bottom: var(--spacing-md);
  }

  .hero-content {
    padding: var(--spacing-sm);
    max-width: 100%;
  }

  /* Service hero */
  .service-hero {
    min-height: auto;
    padding: 130px 0 var(--spacing-lg);
  }

  /* Nav logo */
  .nav-logo {
    font-size: var(--fs-base);
    max-width: 220px;
  }

  .nav-logo img {
    height: 32px !important;
  }

  /* Buttons should stack on mobile */
  .btn-large {
    padding: var(--spacing-sm) var(--spacing-sm);
    font-size: var(--fs-sm);
    width: 100%;
    max-width: 320px;
  }

  /* Container padding */
  .container {
    padding: 0 var(--spacing-sm);
  }

  /* Grid single column on phone */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .card-image {
    height: 180px;
  }

  /* Sections */
  .section {
    padding: var(--spacing-lg) 0;
  }

  .section-lg {
    padding: var(--spacing-lg) 0;
  }

  /* Typography scaling */
  h1 {
    font-size: var(--fs-2xl);
  }

  h2 {
    font-size: var(--fs-xl);
  }

  h3 {
    font-size: var(--fs-lg);
  }

  /* Footer grid */
  footer .container>div:first-child {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--spacing-sm) !important;
  }

  /* Carousel */
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  /* Cherry widget - add bottom margin so it doesn't overlap buttons */
  #floatingEstimator {
    margin-bottom: var(--spacing-sm);
  }
}

/* --- Small Phone Breakpoint (480px) --- */
@media (max-width: 480px) {

  /* Hero */
  .hero {
    padding: 120px 0 var(--spacing-md);
  }

  .hero-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: var(--fs-base);
  }

  /* Nav logo — keep text visible but smaller */
  .nav-logo {
    font-size: var(--fs-xs);
    max-width: 200px;
  }

  .nav-logo img {
    height: 32px !important;
  }

  /* Typography scaling */
  h1 {
    font-size: var(--fs-xl);
  }

  h2 {
    font-size: var(--fs-lg);
  }

  /* Buttons */
  .btn-large {
    font-size: var(--fs-sm);
    padding: 0.75rem var(--spacing-sm);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-number {
    font-size: var(--fs-2xl) !important;
  }
}