/* ===================================
   BLAZING TIDE - WARM & FRIENDLY DESIGN
   Complete CSS Stylesheet
   =================================== */

/* === CSS RESET & NORMALIZE === */
* {
  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', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C1810;
  margin-bottom: 16px;
}

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;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #5D4E37;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === HEADER === */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C1810;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E63946;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E63946;
}

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #2C1810;
  background-color: #FFF3E0;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #FFE0B2;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2C1810;
  background-color: #FFF3E0;
  border-radius: 8px;
  margin-bottom: 32px;
  margin-left: auto;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E63946;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C1810;
  padding: 12px 16px;
  background-color: #FFF9F0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background-color: #E63946;
  color: #FFFFFF;
  transform: translateX(8px);
}

/* === BUTTONS === */
.cta-button,
.cta-primary,
.cta-secondary,
.cta-button-large {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-button,
.cta-primary {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
}

.cta-button:hover,
.cta-primary:hover {
  background-color: #C62835;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.35);
}

.cta-secondary {
  background-color: transparent;
  color: #E63946;
  padding: 12px 28px;
  font-size: 14px;
  border: 2px solid #E63946;
}

.cta-secondary:hover {
  background-color: #E63946;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-button-large {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 16px 40px;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.3);
}

.cta-button-large:hover {
  background-color: #C62835;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(135deg, #FFE0B2 0%, #FFCCBC 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.hero h1 {
  color: #2C1810;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .subheadline {
  font-size: 18px;
  color: #5D4E37;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.badge {
  font-size: 14px;
  color: #5D4E37;
  background-color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === 404 PAGE === */
.hero-404 {
  background: linear-gradient(135deg, #FFCCBC 0%, #FFAB91 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

/* === CARDS & GRIDS === */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.packages-grid,
.articles-grid,
.quick-links,
.contact-cards,
.suggestions-grid,
.principles-grid,
.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.pricing-card,
.package-card,
.article-card,
.quick-link-card,
.contact-card,
.suggestion-card,
.principle-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.quick-link-card:hover,
.contact-card:hover,
.suggestion-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
}

.service-card h3,
.benefit-card h3,
.principle-card h3 {
  color: #E63946;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin: 16px 0;
}

.link-arrow {
  color: #E63946;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  transform: translateX(5px);
}

/* === STEPS === */
.step {
  text-align: center;
  flex: 1 1 250px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #E63946;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* === TESTIMONIALS === */
.testimonial-card {
  background-color: #FFF9F0;
  border-left: 4px solid #E63946;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-style: italic;
  font-size: 16px;
  color: #2C1810;
  line-height: 1.7;
  margin-bottom: 12px;
}

.author {
  font-weight: 600;
  color: #5D4E37;
  font-size: 14px;
}

.rating {
  color: #FFB74D;
  font-size: 18px;
  letter-spacing: 2px;
}

/* === PRICING === */
.pricing-card {
  text-align: center;
  flex: 1 1 280px;
  border: 2px solid #FFE0B2;
  position: relative;
}

.pricing-card.popular {
  border-color: #E63946;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #E63946;
  color: #FFFFFF;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 900;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0 8px;
}

.pricing-card .duration {
  font-size: 14px;
  color: #5D4E37;
  margin-bottom: 20px;
}

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

.pricing-card ul li {
  padding: 8px 0;
  color: #5D4E37;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}

/* === PACKAGES === */
.package-card {
  text-align: center;
  flex: 1 1 300px;
}

.package-card .sessions {
  font-size: 18px;
  color: #5D4E37;
  font-weight: 600;
  margin-bottom: 12px;
}

.package-card .price {
  font-size: 42px;
  font-weight: 900;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  margin: 12px 0;
}

.package-card .savings {
  color: #4CAF50;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.package-card .validity {
  color: #5D4E37;
  font-size: 14px;
  margin-bottom: 20px;
}

/* === BLOG === */
.article-card {
  flex: 1 1 320px;
  position: relative;
  padding-top: 40px;
}

.article-card .category {
  position: absolute;
  top: 28px;
  left: 28px;
  background-color: #E63946;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.article-card .read-time {
  font-size: 12px;
  color: #5D4E37;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.topic-tag {
  background-color: #FFF3E0;
  color: #E63946;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background-color: #E63946;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* === SERVICE DETAILS === */
.service-detail-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  margin-bottom: 32px;
}

.service-detail-card h2 {
  color: #E63946;
  margin-bottom: 16px;
}

.benefits-list {
  margin: 24px 0;
}

.benefits-list li {
  padding: 10px 0;
  color: #5D4E37;
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

.price-display {
  font-size: 36px;
  font-weight: 900;
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  margin: 20px 0;
}

/* === CONTACT FORM === */
.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: #5D4E37;
  margin-bottom: 32px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: #FFF3E0;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #E63946;
  margin-bottom: 24px;
}

.form-note p {
  margin: 0;
  color: #2C1810;
}

.form-note a {
  color: #E63946;
  font-weight: 600;
  text-decoration: underline;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: #2C1810;
  font-size: 14px;
}

.field-placeholder {
  padding: 12px 16px;
  background-color: #FFF9F0;
  border: 2px solid #FFE0B2;
  border-radius: 8px;
  color: #999;
  font-size: 14px;
}

.submit-placeholder {
  background-color: #E63946;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 25px;
  text-align: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-top: 12px;
  cursor: not-allowed;
  opacity: 0.7;
}

/* === LOCATION & CONTACT === */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.location-details {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
}

.location-details .address,
.location-details .hours,
.location-details .email {
  margin-bottom: 20px;
  line-height: 1.8;
}

.map-info {
  background-color: #FFF3E0;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.parking {
  color: #5D4E37;
  font-weight: 600;
  margin-top: 12px;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
  border-left: 4px solid #E63946;
}

.faq-item h3 {
  color: #E63946;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #5D4E37;
  margin: 0;
}

/* === TEXT & IMAGE SECTIONS === */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section h2 {
  color: #E63946;
  margin-bottom: 20px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* === CTA BANNERS === */
.cta-banner {
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.cta-banner .cta-button-large {
  background-color: #FFFFFF;
  color: #E63946;
}

.cta-banner .cta-button-large:hover {
  background-color: #FFF3E0;
  transform: translateY(-3px);
}

/* === VALUE & BENEFITS === */
.benefits-grid .benefit-item,
.credentials-grid .credential-item {
  flex: 1 1 250px;
  background-color: #FFF3E0;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #2C1810;
  text-align: center;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
}

.benefits-grid .benefit-item:hover,
.credentials-grid .credential-item:hover {
  background-color: #E63946;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* === THANK YOU PAGE === */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.confirmation-details {
  background-color: #FFFFFF;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.note {
  background-color: #FFF3E0;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  color: #5D4E37;
  margin-top: 24px;
}

/* === LEGAL PAGES === */
.legal-content {
  background-color: #FFFFFF;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.last-updated {
  font-size: 14px;
  color: #5D4E37;
  font-style: italic;
}

.acceptance-statement {
  background-color: #FFF3E0;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #E63946;
  margin-top: 32px;
}

/* === FOOTER === */
footer {
  background-color: #2C1810;
  color: #F1FAEE;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h3 {
  color: #FFE0B2;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-col p {
  color: #F1FAEE;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  color: #F1FAEE;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #FFE0B2;
  opacity: 1;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #F1FAEE;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

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

.legal-links a {
  color: #F1FAEE;
  font-size: 13px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #FFE0B2;
  opacity: 1;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C1810;
  color: #F1FAEE;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #F1FAEE;
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background-color: #E63946;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #C62835;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background-color: rgba(241, 250, 238, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #FFE0B2;
  border: 2px solid #FFE0B2;
}

.cookie-settings:hover {
  background-color: rgba(255, 224, 178, 0.1);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cookie-modal h2 {
  color: #E63946;
  margin-bottom: 20px;
}

.cookie-category {
  background-color: #FFF9F0;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C1810;
  margin: 0;
  font-size: 16px;
}

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

.cookie-toggle.active {
  background-color: #E63946;
}

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

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

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

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

/* === RESPONSIVE DESIGN === */
@media (min-width: 769px) {
  .main-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-button,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .benefit-card,
  .service-card,
  .pricing-card,
  .package-card {
    flex: 1 1 100%;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* === ACCESSIBILITY === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 3px solid #E63946;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #E63946;
  outline-offset: 3px;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-button,
  .cta-primary,
  .cta-secondary,
  .cookie-banner {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
}