/* ============================================
   SCANDINAVIAN CLEAN DESIGN - SCRUTMESO
   Modern Smart Lighting Website
   ============================================ */

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

/* SCANDINAVIAN CLEAN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A3A5F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

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

a:hover {
  color: #FFA726;
}

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

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

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

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

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

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

.btn-primary {
  background-color: #2C5F9D;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 95, 157, 0.2);
}

.btn-primary:hover {
  background-color: #1A3A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 157, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F9D;
  border: 2px solid #2C5F9D;
}

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

/* HEADER - CLEAN SCANDINAVIAN */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  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: 20px;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2C3E50;
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F9D;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 157, 0.3);
  transition: all 0.3s ease;
}

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

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

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

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

.mobile-menu-close:hover {
  color: #FFA726;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F9D;
}

/* HERO SECTION - SCANDINAVIAN MINIMALISM */
.hero {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

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

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

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

.trust-badges span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C5F9D;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges span::before {
  content: '✓';
  color: #FFA726;
  font-size: 18px;
}

/* PAGE HERO - INNER PAGES */
.page-hero {
  background-color: #F5F7FA;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A5568;
}

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

.breadcrumb a {
  color: #2C5F9D;
}

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

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

/* BENEFITS GRID - FLEXBOX LAYOUT */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

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

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A3A5F;
}

.benefit-card p {
  color: #4A5568;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

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

.service-card h3 {
  font-size: 22px;
  color: #1A3A5F;
}

.service-card p {
  flex-grow: 1;
  color: #4A5568;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFA726;
}

/* STEPS - HOW IT WORKS */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-color: #2C5F9D;
  color: #FFFFFF;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #4A5568;
  font-size: 15px;
}

.timeline {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F9D;
  padding: 16px;
  background-color: #F5F7FA;
  border-radius: 4px;
}

/* TESTIMONIALS - READABLE CONTRAST */
.testimonials {
  background-color: #F5F7FA;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card .rating {
  color: #FFA726;
  font-size: 20px;
  letter-spacing: 2px;
}

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

.testimonial-card .customer {
  font-style: normal;
  margin-top: 8px;
}

.testimonial-card .customer strong {
  color: #1A3A5F;
}

.rating-summary {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F9D;
}

/* CTA BANNER - ACCENT COLOR */
.cta-banner {
  background: linear-gradient(135deg, #2C5F9D 0%, #1A3A5F 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

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

.cta-banner p {
  color: #E8EEF5;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #FFA726;
  color: #1A3A5F;
}

.cta-banner .btn-primary:hover {
  background-color: #FF9100;
  color: #FFFFFF;
}

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

/* ABOUT PAGE SECTIONS */
.about-story {
  padding: 60px 20px;
}

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

.stats-bar {
  display: flex;
  gap: 32px;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 32px;
  background-color: #F5F7FA;
  border-radius: 8px;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #2C5F9D;
}

.stat span {
  font-size: 14px;
  color: #4A5568;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A3A5F;
}

/* SERVICES DETAIL PAGE */
.service-item {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-item h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-item .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFA726;
  display: block;
  margin-bottom: 16px;
}

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

.features-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2C3E50;
}

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

.note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 16px;
}

/* PRODUCTS PAGE */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-card h3 {
  font-size: 22px;
  color: #1A3A5F;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

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

.product-card h3 {
  font-size: 20px;
  color: #1A3A5F;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFA726;
  margin-top: auto;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.brand-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.brand-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A3A5F;
}

/* REALIZACE PAGE */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.stat-card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  color: #2C5F9D;
  display: block;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 14px;
  color: #4A5568;
}

.project-showcase {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.project-showcase h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 28px;
}

.project-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8E8E8;
}

.project-meta span {
  font-size: 14px;
  color: #718096;
}

.testimonial {
  margin-top: 32px;
  padding: 24px;
  background-color: #F5F7FA;
  border-left: 4px solid #FFA726;
  border-radius: 4px;
}

.testimonial p {
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial p:last-child {
  font-style: normal;
  margin-bottom: 0;
}

/* BLOG PAGE */
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.post-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A3A5F;
}

.post-card .meta {
  font-size: 13px;
  color: #718096;
  margin-top: 16px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.popular-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  counter-reset: popular-counter;
}

.popular-list li {
  counter-increment: popular-counter;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
  position: relative;
  padding-left: 40px;
  color: #2C3E50;
}

.popular-list li::before {
  content: counter(popular-counter);
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFA726;
}

.newsletter {
  background: linear-gradient(135deg, #2C5F9D 0%, #1A3A5F 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

.newsletter h2 {
  color: #FFFFFF;
}

.newsletter p {
  color: #E8EEF5;
  margin-bottom: 32px;
}

.newsletter-note {
  margin-top: 16px;
}

.newsletter-note p {
  font-size: 13px;
  color: #B0C4DE;
}

/* CONTACT PAGE */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.method-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1A3A5F;
}

.showroom-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.showroom-features {
  margin: 32px 0;
  padding: 24px;
  background-color: #F5F7FA;
  border-radius: 4px;
}

.showroom-features h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.consultation-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2C3E50;
}

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

.areas-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.proof-stats {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  padding: 32px;
  background-color: #F5F7FA;
  border-radius: 8px;
}

.proof-stats p {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.proof-stats strong {
  display: block;
  font-size: 32px;
  color: #2C5F9D;
  margin-bottom: 4px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 40px 20px;
}

.legal-content .content-wrapper {
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  text-align: left;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
}

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

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

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #4A5568;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card h3 {
  font-size: 22px;
  color: #1A3A5F;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* FOOTER - SCANDINAVIAN CLEAN */
footer {
  background-color: #1A3A5F;
  color: #E8EEF5;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

.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 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-column p {
  color: #B0C4DE;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-column nav a {
  color: #B0C4DE;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column nav a:hover {
  color: #FFA726;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A3A5F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  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 60%;
  min-width: 280px;
}

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-accept {
  background-color: #FFA726;
  color: #1A3A5F;
}

.btn-accept:hover {
  background-color: #FF9100;
  color: #FFFFFF;
}

.btn-reject {
  background-color: transparent;
  color: #E8EEF5;
  border: 1px solid #E8EEF5;
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.cookie-modal h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 24px;
  color: #1A3A5F;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

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

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

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

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

.cookie-modal-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* SECTION CTA */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* PROCESS SECTION */
.process {
  background-color: #F5F7FA;
  padding: 60px 20px;
}

/* WARRANTY SECTION */
.warranty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.warranty-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.warranty-item h3 {
  font-size: 20px;
  color: #1A3A5F;
}

/* PRODUCT BENEFITS */
.benefit-item {
  text-align: center;
  padding: 24px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1A3A5F;
}

.benefit-item p {
  color: #4A5568;
  font-size: 15px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Section spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grid layouts to single column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .categories-grid,
  .brands-grid,
  .stats-grid,
  .methods-grid,
  .warranty-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .category-card,
  .brand-card,
  .stat-card,
  .method-card,
  .warranty-item,
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Steps flow vertically */
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Products grid - 2 columns on mobile */
  .products-grid {
    gap: 16px;
  }
  
  .product-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 20px;
  }
  
  /* Featured posts single column */
  .featured-posts,
  .posts-grid {
    flex-direction: column;
  }
  
  .post-card {
    flex: 1 1 100%;
  }
  
  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* CTA buttons stack */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Trust badges stack */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Stats bar stack */
  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content .content-wrapper {
    padding: 24px;
  }
  
  /* Showroom info */
  .showroom-info,
  .consultation-info {
    padding: 24px;
  }
  
  /* Project meta */
  .project-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  /* Products single column on very small screens */
  .product-card {
    flex: 1 1 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Step numbers smaller */
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #FFA726;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #FFA726;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  a {
    text-decoration: underline;
  }
}