/*
 * Stronger AI V2 Website Styles
 *
 * This stylesheet defines the look and feel of the Stronger AI marketing site.
 * The design is inspired by modern fitness apps, using a clean layout with
 * generous white space and a distinctive purple accent colour. Sections
 * alternate between light and tinted backgrounds for visual separation.
 */

/* Colour variables for quick adjustment */
/*
 * Colour palette and typography variables.  The site now uses a dark,
 * masculine colour scheme inspired by premium fitness brands.  Text
 * contrasts strongly against deep backgrounds and the accent colour
 * highlights interactive elements.  Adjust these values to refine the
 * mood of the site.
 */
:root {
  --bg-dark: #0c0d14;       /* Primary dark background for the body */
  --bg-darker: #0a0a10;     /* Slightly darker shade for cards/sections */
  --card-bg: #15161e;       /* Background for cards, FAQ items and panels */
  --primary: #ffffff;       /* Primary text colour (white) */
  --secondary: #b49aff;     /* Accent colour – a muted purple */
  --accent: #8366f4;        /* Brighter accent for hover states */
  --muted-text: #8a8c9b;    /* Subdued text colour for secondary copy */
  --link-color: #ccccff;    /* Colour used for footer links */
  --border-col: #2b2d3a;    /* Border colour for cards and FAQ items */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  /* Use a heavier default weight to give the site a bold, masculine feel */
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

/* Make all headings extra bold by default */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

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

ul {
  list-style: none;
}

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

/* Responsive images for specific sections */
.assessment-image img,
.composition-image img,
.fitness-test-image img,
.workouts-image img,
.method-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

.site-logo img {
  height: 40px;
  width: auto;
  max-height: 50px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  max-height: 60px;
}

/* Reusable container class for width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  min-height: 44px; /* Touch-friendly minimum size */
  box-sizing: border-box;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--bg-dark);
}

/* Override secondary buttons on dark backgrounds (e.g. hero) */
.hero-section .btn-secondary {
  color: var(--primary);
  border-color: var(--primary);
}

.hero-section .btn-secondary:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* Header & Navigation */
.main-header {
  background-color: var(--bg-darker);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-col);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav ul {
  display: flex;
  gap: 30px;
}

.site-nav a {
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta .btn {
  margin-left: 20px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-darker);
  z-index: 100;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-col);
  transition: color 0.2s ease;
}

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

.mobile-nav .btn {
  margin-top: 20px;
  display: block;
  text-align: center;
}

/*
 * Hero Section
 *
 * A full‑screen hero with a parallax image background and 3D tilt
 * effect on the headline container.  The background is dark and
 * masculine, with subtle brightness applied so white typography
 * stands out clearly.  Interaction is handled via JavaScript to
 * translate mouse movements into rotations.
 */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--primary);
}

/* Background image for hero.  The brightness is lowered to allow
   copy to pop.  Using will‑change improves rendering of the 3D
   transform when updated via JavaScript. */
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  /* Brightness lowered slightly so text stands out without
     obliterating the gym details */
  filter: brightness(1);
  transform: scale(1.1);
  will-change: transform;
  z-index: -1;
}

.hero-content {
  position: relative;
  /* Allow more horizontal space so lengthy headlines wrap more gracefully */
  max-width: 1000px;
  width: 90%;
  text-align: center;
  padding: 60px 20px;
  transition: transform 0.2s ease-out;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-transform: none;
  white-space: normal;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted-text);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-buttons .btn {
  font-size: clamp(0.9rem, 2vw, 1rem);
  min-width: 140px;
}

/* Stats Section */
/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
}

.stats-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.stat-item h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 1rem;
  color: var(--muted-text);
}

/* Benefits Section */
/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.benefits-section h2 {
  font-size: 2.6rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.benefits-section .section-subtitle {
  text-align: center;
  color: var(--muted-text);
  margin-bottom: 50px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
}

.benefit-item h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.benefit-item p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* Assessment Section */
.assessment-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
}

.assessment-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.assessment-text {
  flex: 1 1 500px;
}

.assessment-text h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.assessment-text p {
  margin-bottom: 25px;
  color: var(--muted-text);
}

.assessment-image {
  flex: 1 1 400px;
  text-align: center;
}

.assessment-image img {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Composition Section */
.composition-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.composition-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.composition-image {
  flex: 1 1 400px;
  text-align: center;
}

.composition-image img {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.composition-text {
  flex: 1 1 500px;
}

.composition-text h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.composition-text p {
  color: var(--muted-text);
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Fitness Test Section */
.fitness-test-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
}

.fitness-test-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.fitness-test-text {
  flex: 1 1 500px;
}

.fitness-test-text h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.fitness-test-text p {
  color: var(--muted-text);
  margin-bottom: 25px;
  font-size: 1rem;
}

.fitness-test-image {
  flex: 1 1 400px;
  text-align: center;
}

.fitness-test-image img {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Workouts Section */
.workouts-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.workouts-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.workouts-image {
  flex: 1 1 400px;
  text-align: center;
}

.workouts-image img {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.workouts-text {
  flex: 1 1 500px;
}

.workouts-text h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.workouts-text p {
  color: var(--muted-text);
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Custom Section */
.custom-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.custom-section h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.custom-section .section-subtitle {
  color: var(--muted-text);
  margin-bottom: 20px;
}

.custom-section p {
  color: var(--muted-text);
  max-width: 800px;
  margin: 0 auto;
}

/* How It Works Slider Section */
.how-it-works-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.how-it-works-section .section-subtitle {
  color: var(--muted-text);
  margin-bottom: 40px;
}

.how-it-works-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.how-it-works-slider .slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 180px;
}

.how-it-works-slider img {
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-section .section-subtitle {
  color: var(--muted-text);
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-col);
  border-radius: 24px;
  padding: 40px 30px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.pricing-card .plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.pricing-card .plan-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.pricing-card .plan-price span {
  font-size: 1rem;
  color: var(--muted-text);
}

.pricing-card .plan-note {
  font-size: 0.9rem;
  color: var(--muted-text);
  font-style: italic;
  margin-bottom: 20px;
}

.pricing-card .plan-features {
  margin-bottom: 20px;
}

.pricing-card .plan-features li {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.pricing-card .plan-features li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.pricing-card .btn {
  margin-top: 10px;
  display: block;
  text-align: center;
}

/* Footer new design */
.site-footer {
  background-color: var(--bg-darker);
  color: var(--primary);
  padding: 60px 0;
}

/* Top portion containing brand information and link columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 260px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  max-width: 280px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.store-badge {
  background-color: var(--card-bg);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s ease;
}

.store-badge:hover {
  background-color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--muted-text);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: var(--secondary);
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--muted-text);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

/* Bottom bar containing legal links */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 40px;
  border-top: 1px solid var(--border-col);
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--muted-text);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--secondary);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-col);
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--card-bg);
  transition: background 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

/*
 * Light Section
 *
 * In the earlier design, some sections used a "light-section" class to
 * introduce white backgrounds.  To maintain a cohesive dark theme, we
 * override that class here so it applies a slightly lighter dark shade
 * instead of white.  This still creates visual separation between
 * sections while preserving the masculine aesthetic.
 */
.light-section {
  background-color: var(--bg-darker);
}

/* About and Methodology pages */
.about-hero-section {
  padding: 120px 0 80px;
  background-color: var(--bg-darker);
  color: var(--primary);
  text-align: center;
}

.about-hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-hero-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted-text);
}

.about-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--bg-dark);
}

.about-section h2 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.about-section p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted-text);
}

/* Methodology layout */
.method-section {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background-color: var(--bg-dark);
}

.method-section:nth-child(even) {
  background-color: var(--bg-darker);
}

.method-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.method-image {
  flex: 1 1 400px;
  text-align: center;
}

.method-image img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.method-text {
  flex: 1 1 500px;
}

.method-text h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.method-text p {
  font-size: 1rem;
  color: var(--muted-text);
}

.cta-section {
  padding: 60px 0;
  background-color: var(--bg-darker);
}

.cta-section h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 20px;
}

/* Responsive adjustments */

/* Tablet and small desktop */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 40px 15px;
  }
  
  .assessment-wrapper, .composition-wrapper, .fitness-test-wrapper, .workouts-wrapper, .method-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .assessment-text, .composition-text, .fitness-test-text, .workouts-text, .method-text {
    text-align: center;
  }
  
  .benefits-grid {
    gap: 30px;
  }
  
  .benefit-item {
    text-align: center;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .site-nav, .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 30px 15px;
  }
  
  .stats-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-item {
    margin-bottom: 0;
  }
  
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    max-width: 500px;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 400px;
    width: 100%;
  }
  
  .how-it-works-slider {
    justify-content: flex-start;
    padding: 0 20px;
  }
  
  .how-it-works-slider .slide {
    width: 150px;
  }
  
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 30px 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-height: 48px; /* Larger touch target on mobile */
  }
  
  /* Reduce section padding on mobile */
  .stats-section,
  .benefits-section,
  .assessment-section,
  .composition-section,
  .fitness-test-section,
  .workouts-section,
  .custom-section,
  .how-it-works-section,
  .pricing-section,
  .faq-section,
  .about-section,
  .method-section,
  .cta-section {
    padding: 50px 0;
  }
  
  .about-hero-section {
    padding: 80px 0 50px;
  }
  
  .stat-item h2 {
    font-size: 2rem;
  }
  
  .benefits-section h2, .pricing-section h2, .faq-section h2, .how-it-works-section h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    margin-bottom: 20px;
  }
  
  .assessment-text h2, .composition-text h2, .fitness-test-text h2, .workouts-text h2, .method-text h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin-bottom: 16px;
  }
  
  .pricing-card {
    padding: 25px 20px;
  }
  
  .pricing-card .plan-price {
    font-size: 2rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 14px 16px;
  }
  
  .faq-answer {
    padding: 0 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 14px 16px;
  }
  
  .how-it-works-slider .slide {
    width: 130px;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
  
  /* Improve text readability on mobile */
  .benefits-section .section-subtitle,
  .pricing-section .section-subtitle,
  .how-it-works-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .hero-buttons .btn {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
  
  .stat-item h2 {
    font-size: 1.8rem;
  }
  
  .pricing-card .plan-price {
    font-size: 1.8rem;
  }
}