/* Base styles and variables */
:root {
  --primary-color: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #A5D6A7;
  --secondary-color: #2196F3;
  --secondary-dark: #1976D2;
  --secondary-light: #BBDEFB;
  --dark-color: #333333;
  --light-color: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --font-family: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Dark mode variables */
.dark-mode {
  --primary-color: #66BB6A;
  --primary-dark: #4CAF50;
  --primary-light: #C8E6C9;
  --secondary-color: #42A5F5;
  --secondary-dark: #2196F3;
  --secondary-light: #BBDEFB;
  --dark-color: #FFFFFF;
  --light-color: #121212;
  --gray-100: #1E1E1E;
  --gray-200: #2D2D2D;
  --gray-300: #333333;
  --gray-400: #444444;
  --gray-500: #666666;
  --gray-600: #888888;
  --gray-700: #AAAAAA;
  --gray-800: #CCCCCC;
  --gray-900: #EEEEEE;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

section {
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

input, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--gray-300);
  background-color: var(--light-color);
  color: var(--dark-color);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-light);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--light-color);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 60px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 5px 0;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-list a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--light-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-700);
  max-width: 600px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* Varför hemmaträning Section */
.varfor-section {
  background-color: var(--gray-100);
  position: relative;
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.benefit-card p {
  color: var(--gray-600);
}

/* Program Section */
.program-section {
  background-color: var(--light-color);
  position: relative;
}

.program-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pro.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.program-timeline {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  gap: 2rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% + 3rem);
  background-color: var(--primary-light);
  z-index: -1;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-content {
  flex: 1;
  position: relative;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 70px;
  color: var(--gray-800);
}

.timeline-content p {
  margin-left: 70px;
  color: var(--gray-600);
}

.timeline-image {
  flex: 1;
  max-width: 300px;
}

.timeline-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* För vem är programmet Section */
.for-vem-section {
  background-color: var(--primary-light);
  background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--light-color) 100%);
  position: relative;
}

.personas {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.persona {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.persona:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.persona-image {
  height: 200px;
  overflow: hidden;
}

.persona-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.persona:hover .persona-image img {
  transform: scale(1.05);
}

.persona h3 {
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--gray-800);
}

.persona p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
}

/* Så här fungerar det Section */
.hur-fungerar-section {
  position: relative;
  background-color: var(--light-color);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.step {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.step p {
  color: var(--gray-600);
}

.steps-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.05;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--gray-100);
  position: relative;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-image {
  width: 120px;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 1.5rem;
  flex: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-800);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--light-color);
  position: relative;
}

.pricing-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.pricing-plan {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 400px;
  width: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.plan-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--primary-color);
  color: white;
}

.premium .plan-header {
  background-color: var(--secondary-color);
}

.plan-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.duration {
  font-size: 0.875rem;
  opacity: 0.8;
}

.plan-features {
  padding: 2rem;
}

.plan-features ul {
  margin: 0;
  padding: 0;
}

.plan-features li {
  margin-bottom: 1rem;
  padding-left: 30px;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.plan-features .not-included {
  color: var(--gray-500);
  text-decoration: line-through;
}

.plan-features .not-included::before {
  content: '✗';
  color: var(--gray-500);
}

.plan-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Bonus Section */
.bonus-section {
  background-color: var(--primary-light);
  background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--light-color) 100%);
  position: relative;
}

.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.bonus-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bonus-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

.bonus-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.bonus-card p {
  color: var(--gray-600);
}

/* Registration Section */
.registration-section {
  background-color: var(--light-color);
  position: relative;
}

.registration-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.registration-form {
  flex: 1;
  background-color: var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.registration-image {
  flex: 1;
  display: none;
}

.registration-image img {
  border-radius: var(--border-radius-lg);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
}

/* About Section */
.about-section {
  background-color: var(--gray-100);
  position: relative;
}

.about-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
  position: relative;
}

.contact-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-form {
  flex: 1;
  background-color: var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  background-color: var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.contact-details p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.contact-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.contact-map iframe {
  border: none;
  height: 100%;
  width: 100%;
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0;
}

.newsletter-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  opacity: 0.9;
}

.newsletter-form {
  flex: 1;
}

.newsletter-form-group {
  display: flex;
  gap: 1rem;
}

.newsletter-form-group input {
  flex: 1;
}

/* Footer */
.site-footer {
  background-color: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gray-300);
}

.footer-links ul {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: background-color var(--transition-normal);
}

.dark-mode-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--dark-color);
  transition: color var(--transition-normal);
}

.sun-icon {
  display: none;
}

.dark-mode .sun-icon {
  display: block;
}

.dark-mode .moon-icon {
  display: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .benefit-card, .persona, .step {
    padding: 1.5rem;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-image {
    max-width: 100%;
    order: -1;
    margin-bottom: 1.5rem;
  }

  .registration-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 3rem 0;
  }

  .hero-container, .benefits-container, .personas, .testimonials-container, .pricing-options, .registration-container, .about-container, .contact-container, .newsletter-container {
    flex-direction: column;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .pricing-plan {
    max-width: 100%;
  }

  .newsletter-form-group {
    flex-direction: column;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
  }

  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .benefit-icon, .bonus-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon svg, .bonus-icon svg {
    width: 30px;
    height: 30px;
  }

  .bonuses {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}