/* ============================================
   RAPIDREFIT - GRADIENT MODERN DESIGN SYSTEM
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2E5C8A, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

p { margin-bottom: 16px; }

ul { list-style: none; }

a {
  color: #2E5C8A;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E85D35;
  transform: translateX(2px);
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E85D35, #ff6b45);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 93, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 93, 53, 0.6);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #2E5C8A 0%, #1e3a5f 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: white;
  color: #2E5C8A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  color: #F4F1E8;
}

/* HEADER */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 241, 232, 0.95));
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #2E5C8A;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E85D35, #ff6b45);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E85D35;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators p {
  color: white;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-indicator {
  color: white;
  font-weight: 600;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #E85D35, #ff6b45);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 93, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 93, 53, 0.5);
  color: white;
}

.btn-secondary {
  background: white;
  color: #2E5C8A;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-link {
  background: transparent;
  color: #2E5C8A;
  padding: 12px 24px;
  font-weight: 600;
}

.btn-link:hover {
  color: #E85D35;
  transform: translateX(5px);
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-overview,
.testimonials,
.stats,
.services-detailed,
.financing-options,
.mission-vision,
.values,
.story,
.coaching-intro,
.coaching-services,
.pricing-packages,
.stats-highlight,
.featured-stories,
.story-grid,
.alumni-network,
.featured-articles,
.free-resources,
.webinar-section,
.newsletter-signup,
.contact-options,
.contact-form-section,
.location-map,
.faq-quick,
.legal-content,
.confirmation-details,
.next-actions,
.social-proof,
.thank-you-content,
.quick-links {
  background: white;
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* GRID LAYOUTS WITH FLEXBOX */
.benefits-grid,
.services-grid,
.testimonial-grid,
.stats-grid,
.financing-grid,
.values-grid,
.packages-grid,
.stories-grid,
.articles-grid,
.resources-grid,
.webinars-grid,
.contact-grid,
.faq-grid,
.steps-grid,
.actions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARD STYLES */
.benefit-card,
.service-card,
.testimonial-card,
.stat-item,
.financing-card,
.value-card,
.package-card,
.mini-story,
.article-card,
.resource-card,
.webinar-card,
.contact-card,
.faq-item,
.step-card,
.action-card,
.link-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.article-card:hover,
.resource-card:hover,
.contact-card:hover,
.action-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.benefit-card h3,
.service-card h3,
.contact-card h3,
.action-card h3,
.link-card h3 {
  color: #2E5C8A;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p {
  color: #555;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E85D35;
  margin-top: 16px;
}

/* SERVICE DETAIL */
.service-detail {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-detail h3 {
  color: #2E5C8A;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-detail ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #555;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E85D35;
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonial-card {
  background: white;
  padding: 32px;
  border-left: 4px solid #E85D35;
  flex: 1 1 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2E5C8A;
  font-style: normal;
  margin-top: auto;
}

/* STATS */
.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 40px 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
}

.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.guarantee {
  color: white;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* PACKAGE CARDS */
.package-card {
  background: white;
  border: 2px solid #e9ecef;
  padding: 40px;
  text-align: center;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  position: relative;
}

.package-card.featured {
  border: 3px solid #E85D35;
  background: linear-gradient(135deg, #fff5f2, #ffffff);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(232, 93, 53, 0.2);
}

.package-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #E85D35, #ff6b45);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.package-card h3 {
  margin-bottom: 12px;
}

.package-card ul {
  margin: 24px 0;
  text-align: left;
}

.package-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  color: #555;
}

.savings {
  color: #27ae60;
  font-weight: 600;
  margin-top: 8px;
  font-size: 14px;
}

/* STORY CARDS */
.story-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  border-left: 4px solid #667eea;
}

.transformation {
  font-size: 18px;
  font-weight: 600;
  color: #2E5C8A;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid #E85D35;
}

.program,
.result {
  font-weight: 600;
  margin-top: 16px;
  color: #555;
}

.result {
  color: #27ae60;
}

/* MINI STORY */
.mini-story {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: white;
  border-left: 3px solid #667eea;
  padding: 24px;
}

.mini-story h4 {
  color: #2E5C8A;
  margin-bottom: 12px;
}

/* FORM NOTE */
.form-note {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  margin-top: 24px;
}

.form-note p {
  color: #856404;
  margin-bottom: 12px;
}

.form-note a {
  color: #2E5C8A;
  font-weight: 600;
}

/* LOCATION INFO */
.location-info {
  max-width: 600px;
  margin: 0 auto;
}

.location-info h3 {
  color: #2E5C8A;
  margin-top: 24px;
  margin-bottom: 16px;
}

.location-info ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #555;
}

.location-info ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E85D35;
  font-weight: 700;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #27ae60;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-short {
  text-align: center;
  font-style: italic;
  color: #555;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1e3a5f, #2E5C8A);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2E5C8A, #1e3a5f);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #E85D35, #ff6b45);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 53, 0.4);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background: white;
  color: #2E5C8A;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2E5C8A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #2E5C8A;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2C3E50;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #27ae60;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: linear-gradient(135deg, #E85D35, #ff6b45);
  color: white;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 53, 0.4);
}

/* PRIVACY NOTE */
.privacy-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
  font-style: italic;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Section spacing */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  section h2 {
    font-size: 28px;
  }
  
  /* Cards to full width on mobile */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-item,
  .financing-card,
  .value-card,
  .package-card,
  .mini-story,
  .article-card,
  .resource-card,
  .webinar-card,
  .contact-card,
  .faq-item,
  .step-card,
  .action-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .testimonial-card,
  .financing-card,
  .value-card,
  .mini-story,
  .article-card,
  .resource-card,
  .contact-card,
  .faq-item,
  .action-card,
  .link-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

/* ACCESSIBILITY */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* TEXT SELECTION */
::selection {
  background: #667eea;
  color: white;
}

::-moz-selection {
  background: #667eea;
  color: white;
}