/* ============================================
   COBALT CABIN - PLAYFUL DYNAMIC CSS
   Modern Electric Heating Solutions
   Design Style: Playful & Dynamic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - PLAYFUL DYNAMIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1E4B7A;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0px rgba(230, 126, 34, 0.2);
}

h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E67E22 0%, #F39C12 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1E4B7A;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #D35400;
  transform: translateY(-2px);
}

strong {
  font-weight: 700;
  color: #1E4B7A;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   HEADER - PLAYFUL & DYNAMIC
   ============================================ */

header {
  background: linear-gradient(135deg, #1E4B7A 0%, #2E6BA8 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(30, 75, 122, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E67E22;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  color: #E67E22;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.main-nav a:hover::before {
  width: 80%;
}

.cta-button {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #D35400 0%, #E67E22 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.6);
}

/* ============================================
   MOBILE MENU - BURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1E4B7A 0%, #2E6BA8 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E67E22;
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(230, 126, 34, 0.2);
  border-left-color: #E67E22;
  transform: translateX(10px);
}

/* ============================================
   HERO SECTION - ENERGETIC & PLAYFUL
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1E4B7A 0%, #3498DB 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(230, 126, 34, 0.3);
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-subtitle {
  color: #ECF0F1;
  font-size: 20px;
  margin-bottom: 32px;
  animation: fadeIn 1s ease 0.3s both;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeIn 1.2s ease 0.6s both;
}

.trust-indicators span {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(230, 126, 34, 0.3);
  border-color: #E67E22;
  transform: translateY(-5px) scale(1.05);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  animation: fadeIn 1.4s ease 0.9s both;
}

.value-prop {
  color: #ECF0F1;
  font-size: 14px;
  font-style: italic;
  animation: fadeIn 1.6s ease 1.2s both;
}

/* ============================================
   BUTTONS - PLAYFUL STYLE
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-product {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D35400 0%, #E67E22 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1E4B7A;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-product {
  background: linear-gradient(135deg, #1E4B7A 0%, #2E6BA8 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(30, 75, 122, 0.3);
}

.btn-product:hover {
  background: linear-gradient(135deg, #2E6BA8 0%, #3498DB 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(30, 75, 122, 0.5);
}

/* ============================================
   SECTIONS - DYNAMIC SPACING
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeInUp 0.6s ease;
}

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

.section-subtitle {
  text-align: center;
  color: #7F8C8D;
  font-size: 18px;
  margin-bottom: 40px;
}

/* ============================================
   BENEFITS GRID - FLEXBOX LAYOUT
   ============================================ */

.benefits-grid,
.services-grid,
.steps-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.step,
.product-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.benefit-card:hover,
.service-card:hover,
.product-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
}

.benefit-card:hover::before,
.service-card:hover::before,
.product-card:hover::before {
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
}

.benefit-card h3,
.service-card h3,
.product-card h3 {
  color: #1E4B7A;
  margin-bottom: 16px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.benefit-card p,
.service-card p,
.product-card p {
  color: #34495E;
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.price {
  color: #E67E22;
  font-size: 28px;
  font-weight: 800;
  margin-top: 20px;
  text-shadow: 1px 1px 0px rgba(230, 126, 34, 0.2);
}

/* ============================================
   TESTIMONIALS - READABLE DARK TEXT
   ============================================ */

.testimonials-grid,
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card,
.testimonial-detailed {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #E67E22;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover,
.testimonial-detailed:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(230, 126, 34, 0.2);
}

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

.author {
  color: #1E4B7A;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   STATS - DYNAMIC DISPLAY
   ============================================ */

.stats,
.stats-showcase,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat,
.stat-large,
.stat-card {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #ECF0F1 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat:hover,
.stat-large:hover,
.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.3);
}

.stat strong,
.stat-large strong,
.stat-card strong {
  display: block;
  font-size: 48px;
  color: #E67E22;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(230, 126, 34, 0.2);
}

.stat span,
.stat-large p,
.stat-card p {
  color: #34495E;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   CTA BANNER - ENERGETIC
   ============================================ */

.cta-banner,
.cta-section,
.cta-reference {
  background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 15px 50px rgba(230, 126, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.cta-banner h2,
.cta-section h2,
.cta-reference h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.cta-section p,
.cta-reference p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.guarantee,
.special-offer {
  color: #FFFFFF;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
  opacity: 0.9;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, #1E4B7A 0%, #3498DB 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-header p {
  color: #ECF0F1;
  font-size: 18px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.legal-content h2 {
  color: #1E4B7A;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #34495E;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #27AE60;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
}

.thank-you-hero .subtitle {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
}

.thank-you-hero p {
  color: #FFFFFF;
  font-size: 16px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #229954 0%, #27AE60 100%);
  transform: translateY(-2px) scale(1.05);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ============================================
   COOKIE MODAL
   ============================================ */

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E74C3C;
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C0392B;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 15px;
  border-left: 4px solid #E67E22;
}

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

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #BDC3C7;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

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

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

/* ============================================
   FOOTER - PLAYFUL STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

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

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

.footer-col h4 {
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: #BDC3C7;
  font-size: 14px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-wrapper {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.form-note {
  background: linear-gradient(135deg, #E8F4F8 0%, #D5E8F0 100%);
  padding: 24px;
  border-radius: 15px;
  border-left: 4px solid #1E4B7A;
  margin-bottom: 24px;
}

.form-note p {
  color: #2C3E50;
  font-size: 15px;
  margin-bottom: 12px;
}

.form-fields-display {
  background: #F8F9FA;
  padding: 24px;
  border-radius: 15px;
}

.form-fields-display ul {
  margin-left: 24px;
  margin-top: 12px;
}

.form-fields-display li {
  color: #34495E;
  margin-bottom: 8px;
}

/* ============================================
   GUIDES & FAQ
   ============================================ */

.guide-item,
.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.guide-item:hover,
.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.2);
}

.faq-item h3,
.faq-item strong {
  color: #1E4B7A;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #34495E;
  font-size: 15px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.comparison-row {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
}

.comparison-row strong {
  color: #E67E22;
  font-size: 20px;
}

/* ============================================
   CATEGORIES & RESOURCES
   ============================================ */

.categories-grid,
.resources-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.category-card,
.resource-card,
.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover,
.resource-card:hover,
.method-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Hide desktop nav */
  .main-nav {
    display: none;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  /* Grid adjustments to single column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .product-grid,
  .categories-grid,
  .resources-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .step,
  .product-card,
  .category-card,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Testimonials single column */
  .testimonials-grid,
  .testimonials-list {
    flex-direction: column;
  }

  .testimonial-card,
  .testimonial-detailed {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stats stack vertically */
  .stats,
  .stats-showcase,
  .stats-grid {
    flex-direction: column;
  }

  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
  }

  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* Section padding reduction */
  section {
    padding: 24px 16px;
    margin-bottom: 40px;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }

  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }

  /* Legal content */
  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .trust-indicators span {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-product {
    padding: 12px 24px;
    font-size: 14px;
  }

  .price {
    font-size: 24px;
  }

  .mobile-menu {
    width: 100%;
  }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.logo:hover img {
  animation: wiggle 0.5s ease;
}

/* Scroll reveal animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading spinner for async operations */
.spinner {
  border: 4px solid rgba(230, 126, 34, 0.3);
  border-top: 4px solid #E67E22;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: #E67E22;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 3000;
}

.skip-to-main:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #FFFFFF;
  }

  .benefit-card,
  .service-card,
  .product-card {
    border: 2px solid #1E4B7A;
  }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   END OF PLAYFUL DYNAMIC CSS
   ============================================ */