/* ================================
   FALTBATTRI - SCANDINAVIAN CLEAN DESIGN
   CSS Reset & Base Styles
   ================================ */

* {
  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: #2D2D2D;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY - SCANDINAVIAN STYLE
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A2E;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  font-size: 16px;
}

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

a:hover {
  color: #1A3ACC;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

strong {
  font-weight: 600;
  color: #1A1A2E;
}

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

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

/* ================================
   HEADER - CLEAN SCANDINAVIAN
   ================================ */

header {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

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

.main-nav a {
  color: #2D2D2D;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #2D5BFF;
  border-bottom-color: #2D5BFF;
}

/* ================================
   MOBILE MENU - SCANDINAVIAN CLEAN
   ================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 150;
  background: #2D5BFF;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2D2D2D;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2D2D2D;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5BFF;
  padding-left: 8px;
}

/* ================================
   BUTTONS - MINIMALIST SCANDINAVIAN
   ================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #2D5BFF;
  color: #FFFFFF;
  border-color: #2D5BFF;
}

.btn-primary:hover {
  background: #1A3ACC;
  border-color: #1A3ACC;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 91, 255, 0.3);
}

.btn-secondary {
  background: #FFFFFF;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.btn-secondary:hover {
  background: #2D5BFF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 91, 255, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* ================================
   HERO SECTION - SCANDINAVIAN MINIMAL
   ================================ */

.hero {
  background: linear-gradient(135deg, #F5F7FF 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #1A1A2E;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges span {
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ================================
   PAGE HERO - CLEAN LAYOUT
   ================================ */

.page-hero {
  background: linear-gradient(135deg, #F5F7FF 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
}

.breadcrumb {
  font-size: 14px;
  color: #6B6B6B;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #2D5BFF;
}

/* ================================
   SECTIONS - SCANDINAVIAN SPACING
   ================================ */

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

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

/* ================================
   GRID LAYOUTS - FLEXBOX ONLY
   ================================ */

.benefits-grid,
.services-grid,
.products-grid,
.testimonials-grid,
.stats-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.product-card,
.value-card,
.stat-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.product-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card img,
.product-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.benefit-card h3,
.service-card h3,
.product-card h3,
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.benefit-card p,
.service-card p,
.product-card p,
.value-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

/* ================================
   SERVICE/PRODUCT CARDS - ENHANCED
   ================================ */

.service-badge,
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFB800;
  color: #1A1A2E;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-tagline {
  color: #2D5BFF;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.product-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.product-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4A4A4A;
  font-size: 14px;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2D5BFF;
  font-weight: bold;
}

.service-highlight,
.product-time {
  background: #F5F7FF;
  color: #2D5BFF;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin: 16px 0;
  text-align: center;
}

.service-price,
.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin-top: 16px;
  text-align: center;
}

/* ================================
   TESTIMONIALS - READABLE CONTRAST
   ================================ */

.testimonials {
  background: #F5F7FF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid #E8E8E8;
  padding-top: 16px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #1A1A2E;
  font-size: 16px;
}

.testimonial-author span {
  color: #6B6B6B;
  font-size: 14px;
}

/* ================================
   STATS SECTION - SCANDINAVIAN
   ================================ */

.stats {
  background: #2D5BFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-label {
  font-size: 16px;
  color: #E8E8E8;
  font-weight: 500;
}

/* ================================
   CTA BANNER - MINIMALIST
   ================================ */

.cta-banner {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A3ACC 100%);
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
}

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

.cta-banner p {
  color: #E8E8E8;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.guarantee-text,
.guarantee {
  color: #E8E8E8;
  font-size: 14px;
  margin-top: 24px;
}

.trust-line {
  color: #E8E8E8;
  font-size: 14px;
  margin-top: 24px;
  font-weight: 500;
}

/* ================================
   TEXT & IMAGE SECTIONS - ALIGNED
   ================================ */

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

.text-section {
  flex-direction: column;
  align-items: flex-start;
}

.highlight-box,
.calculation-box {
  background: #F5F7FF;
  border-left: 4px solid #2D5BFF;
  padding: 24px;
  margin: 24px 0;
  border-radius: 8px;
}

.highlight-box strong,
.calculation-box h3 {
  color: #1A1A2E;
  font-size: 18px;
  margin-bottom: 12px;
}

.calculation-box ul {
  margin: 16px 0;
  list-style: none;
}

.calculation-box li {
  padding: 8px 0;
  color: #4A4A4A;
}

.calculation-box .total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #2D5BFF;
  font-size: 18px;
}

/* ================================
   BENEFITS & FEATURES - FLEXBOX
   ================================ */

.benefits-list,
.features-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.benefit-item,
.features-list span {
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-stat {
  color: #2D5BFF;
  font-weight: 700;
  font-size: 20px;
  margin-top: 12px;
  text-align: center;
}

/* ================================
   SAVINGS & PROCESS SECTIONS
   ================================ */

.savings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.saving-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.saving-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.saving-amount {
  font-size: 28px;
  font-weight: 700;
  color: #2D5BFF;
  margin-top: 16px;
}

.process-steps,
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.step,
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #2D5BFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 8px;
  color: #1A1A2E;
}

.step p,
.step-item p {
  color: #4A4A4A;
  margin-bottom: 0;
}

.duration {
  display: block;
  color: #2D5BFF;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.total-duration {
  text-align: center;
  font-weight: 600;
  color: #1A1A2E;
  font-size: 18px;
  margin-top: 24px;
}

/* ================================
   CONSULTATION & CONTACT SECTIONS
   ================================ */

.consultation-cta,
.consultation-benefits {
  background: #F5F7FF;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0;
}

.types-grid,
.methods-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.type-card,
.method-card,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.method-value {
  font-size: 20px;
  font-weight: 700;
  color: #2D5BFF;
  margin: 16px 0;
}

.method-hours,
.type-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
  color: #6B6B6B;
  font-size: 14px;
}

.type-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ================================
   OPENING HOURS TABLE
   ================================ */

.hours-table {
  max-width: 500px;
  margin: 32px auto;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #E8E8E8;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: #1A1A2E;
}

.hours-row .time {
  color: #4A4A4A;
}

/* ================================
   LOCATION & TRUST SIGNALS
   ================================ */

.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.map-info {
  flex: 1 1 400px;
}

.address {
  font-size: 18px;
  margin-bottom: 24px;
}

.directions {
  list-style: none;
  margin: 0;
  padding: 0;
}

.directions li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
}

.directions li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2D5BFF;
  font-weight: bold;
}

.signals-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.signal {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #1A1A2E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.thank-you-hero,
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #2D5BFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.subtitle,
.message {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
}

.contact-info-box {
  background: #F5F7FF;
  padding: 32px;
  border-radius: 12px;
  margin-top: 40px;
}

.contact-info-box h3 {
  margin-bottom: 16px;
}

.contact-methods-simple {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.contact-method {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.note {
  background: #FFF9E6;
  border-left: 4px solid #FFB800;
  padding: 16px;
  margin: 24px 0;
  color: #6B6B6B;
  font-size: 14px;
}

/* ================================
   LEGAL PAGES - CLEAN TYPOGRAPHY
   ================================ */

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 32px;
  color: #1A1A2E;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

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

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ================================
   FOOTER - SCANDINAVIAN MINIMAL
   ================================ */

footer {
  background: #1A1A2E;
  color: #E8E8E8;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a {
  color: #B8B8B8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FFFFFF;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
}

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

.footer-bottom p {
  color: #B8B8B8;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  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;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin: 0;
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: #2D5BFF;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #1A3ACC;
}

.cookie-btn-reject {
  background: #E8E8E8;
  color: #2D2D2D;
}

.cookie-btn-reject:hover {
  background: #D0D0D0;
}

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

.cookie-btn-settings:hover {
  background: #F5F7FF;
}

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  margin: 0;
  color: #1A1A2E;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #6B6B6B;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2D2D2D;
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h4 {
  margin: 0;
  font-size: 16px;
  color: #1A1A2E;
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: #4A4A4A;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #D0D0D0;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #2D5BFF;
}

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

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 48px;
  }
  
  .hero,
  .page-hero {
    padding: 48px 16px;
  }
  
  /* Flexbox layouts - stack on mobile */
  .benefits-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .savings-grid,
  .types-grid,
  .methods-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .product-card,
  .value-card,
  .stat-card,
  .saving-card,
  .type-card,
  .method-card,
  .action-card,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Text and image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Trust badges */
  .trust-badges,
  .benefits-list,
  .features-list {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content {
    padding: 32px 20px;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
  
  /* Signals */
  .signals-grid {
    flex-direction: column;
  }
  
  .signal {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .container {
    padding: 0 16px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
}

/* ================================
   ANIMATIONS & TRANSITIONS
   ================================ */

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

.benefit-card,
.service-card,
.product-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
  text-align: center;
}

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

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

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

:focus {
  outline: 2px solid #2D5BFF;
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 2px solid #2D5BFF;
  outline-offset: 2px;
}

/* Skip to main content */
.skip-to-main {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px;
  background: #2D5BFF;
  color: #FFFFFF;
  text-decoration: none;
}

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

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}