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

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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 TYPOGRAPHY
   Clean, functional, readable
   ======================================== */

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

h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #455A64;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #2C8C3F;
}

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

li {
  margin-bottom: 8px;
  color: #455A64;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

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

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

/* ========================================
   HEADER - Scandinavian Clean
   Light background, simple navigation
   ======================================== */

header {
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #E0E0E0;
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #455A64;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ========================================
   BUTTONS - Scandinavian Style
   Clean, functional, good contrast
   ======================================== */

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

.btn-primary {
  background: #1E5A8E;
  color: #FFFFFF;
  border-color: #1E5A8E;
}

.btn-primary:hover {
  background: #14446B;
  border-color: #14446B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 90, 142, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #1E5A8E;
  border-color: #1E5A8E;
}

.btn-secondary:hover {
  background: #1E5A8E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 90, 142, 0.15);
}

/* ========================================
   MOBILE MENU - Hamburger Navigation
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #1E5A8E;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
}

.mobile-menu-toggle:hover {
  background: #F5F5F5;
  border-color: #1E5A8E;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #455A64;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F5F5F5;
  color: #1E5A8E;
}

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

.mobile-nav a {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #455A64;
  border-bottom: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #F5F5F5;
  color: #1E5A8E;
  padding-left: 24px;
}

/* ========================================
   HERO SECTION - Scandinavian Clean
   Light colors, natural feel, spacious
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8F0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0E0E0;
}

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

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1E5A8E;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #455A64;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #455A64;
  padding: 8px 16px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E0E0E0;
}

.trust-badges span::before {
  content: '✓';
  color: #2C8C3F;
  font-weight: 700;
  font-size: 16px;
}

/* ========================================
   HERO SIMPLE - For internal pages
   ======================================== */

.hero-simple {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8F0 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0E0E0;
}

.hero-simple h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1E5A8E;
}

.hero-simple p {
  font-size: 18px;
  color: #455A64;
  margin-bottom: 24px;
}

.breadcrumbs {
  font-size: 14px;
  color: #78909C;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #1E5A8E;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ========================================
   VALUE PROPOSITION - Flexbox Grid
   ======================================== */

.value-proposition {
  padding: 60px 20px;
  background: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

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

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  background: #FAFAFA;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E5A8E;
}

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

.value-card p {
  color: #455A64;
  font-size: 15px;
  line-height: 1.6;
}

.supporting-text {
  text-align: center;
  color: #78909C;
  font-style: italic;
  font-size: 15px;
  margin-top: 32px;
}

/* ========================================
   SERVICES OVERVIEW - Flexbox Layout
   ======================================== */

.services-overview {
  padding: 60px 20px;
  background: #FAFAFA;
}

.services-overview h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1E5A8E;
  min-height: 48px;
}

.service-card p {
  color: #455A64;
  font-size: 15px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #2C8C3F;
  margin-top: auto;
}

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

.service-highlights span {
  font-size: 14px;
  font-weight: 500;
  color: #455A64;
  padding: 8px 16px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E0E0E0;
}

.services-overview .btn-primary {
  display: block;
  max-width: 320px;
  margin: 0 auto;
}

/* ========================================
   SOCIAL PROOF - Stats & Testimonials
   ======================================== */

.social-proof {
  padding: 60px 20px;
  background: #FFFFFF;
}

.social-proof h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #1E5A8E;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  display: block;
  font-size: 15px;
  color: #78909C;
  font-weight: 500;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  background: #F5F5F5;
  border-radius: 4px;
  border-left: 4px solid #2C8C3F;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #1E5A8E;
  text-align: right;
}

/* ========================================
   SLOVENIAN EXPERIENCE PREVIEW
   ======================================== */

.slovenian-experience-preview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8F0 100%);
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.slovenian-experience-preview h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #1E5A8E;
}

.slovenian-experience-preview > .container > p {
  text-align: center;
  font-size: 17px;
  color: #455A64;
  max-width: 700px;
  margin: 0 auto 40px;
}

.experience-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.experience-stats > div {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  text-align: center;
}

.experience-stats strong {
  display: block;
  font-size: 28px;
  color: #1E5A8E;
  margin-bottom: 8px;
}

.experience-stats span {
  display: block;
  font-size: 15px;
  color: #78909C;
}

.slovenian-experience-preview .btn-secondary {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   PROCESS SECTION - Step by Step
   ======================================== */

.process {
  padding: 60px 20px;
  background: #FAFAFA;
}

.process h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(20% - 20px);
  min-width: 180px;
  max-width: 220px;
  background: #FFFFFF;
  padding: 32px 20px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.step-number {
  display: block;
  width: 48px;
  height: 48px;
  background: #1E5A8E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #1E5A8E;
}

.step p {
  font-size: 14px;
  color: #78909C;
  margin-bottom: 0;
}

.timeline-info {
  text-align: center;
  font-size: 15px;
  color: #78909C;
  font-style: italic;
  margin-top: 32px;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */

.cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E5A8E 0%, #14446B 100%);
  color: #FFFFFF;
  text-align: center;
}

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

.benefits-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.benefits-list span {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-final .btn-primary {
  background: #FFFFFF;
  color: #1E5A8E;
  border-color: #FFFFFF;
  font-size: 16px;
  padding: 16px 32px;
}

.cta-final .btn-primary:hover {
  background: #F4A623;
  color: #FFFFFF;
  border-color: #F4A623;
}

.availability {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   CONTENT SECTIONS - Internal Pages
   ======================================== */

.content-section {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 40px;
}

.content-section:nth-child(even) {
  background: #FAFAFA;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1E5A8E;
}

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

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

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

.highlight {
  background: #FFF9E6;
  border-left: 4px solid #F4A623;
  padding: 16px 20px;
  margin: 24px 0;
  font-weight: 500;
  color: #2C3E50;
}

.values {
  background: #E8F4F8;
  padding: 20px 24px;
  border-radius: 4px;
  margin: 24px 0;
  border: 1px solid #B3D9E8;
}

.timeline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.timeline span {
  flex: 1 1 200px;
  padding: 12px 16px;
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  font-size: 14px;
  font-weight: 500;
  color: #455A64;
  text-align: center;
}

/* ========================================
   REASONS GRID - Flexbox Layout
   ======================================== */

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.reason {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: #FAFAFA;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.reason h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1E5A8E;
}

.reason p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  padding: 60px 20px;
  background: #FAFAFA;
}

.stats-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

/* ========================================
   SERVICES DETAILED - Storitve Page
   ======================================== */

.services-detailed {
  padding: 60px 20px;
  background: #FFFFFF;
}

.services-detailed h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.service-detail {
  background: #FAFAFA;
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #1E5A8E;
}

.service-detail h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1E5A8E;
}

.service-detail p {
  font-size: 16px;
  line-height: 1.7;
  color: #455A64;
  margin-bottom: 12px;
}

.service-detail strong {
  color: #2C3E50;
  font-weight: 600;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-section {
  padding: 60px 20px;
  background: #FAFAFA;
}

.comparison-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.system {
  flex: 1 1 300px;
  max-width: 320px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.system:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.system h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1E5A8E;
  padding-bottom: 16px;
  border-bottom: 2px solid #E0E0E0;
}

.system p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #455A64;
}

/* ========================================
   PROCESS SECTION - Storitve
   ======================================== */

.process-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.process-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.phase {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  background: #FAFAFA;
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E5A8E;
}

.phase strong {
  display: block;
  font-size: 18px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.phase p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 0;
}

.timeline-total {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2C8C3F;
  margin-top: 32px;
}

/* ========================================
   WARRANTY & FINANCING SECTIONS
   ======================================== */

.warranty-section,
.financing-section {
  padding: 60px 20px;
  background: #FAFAFA;
}

.warranty-section h2,
.financing-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
  color: #1E5A8E;
}

.warranty-section ul,
.financing-section ul {
  max-width: 700px;
  margin: 0 auto;
}

.warranty-section li,
.financing-section li {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}

.financing-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   CTA SECTION - General
   ======================================== */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E5A8E 0%, #14446B 100%);
  text-align: center;
  color: #FFFFFF;
}

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

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

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

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #1E5A8E;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background: #F4A623;
  color: #FFFFFF;
  border-color: #F4A623;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background: #FFFFFF;
  color: #1E5A8E;
}

/* ========================================
   PERFORMANCE DATA - Slovenska Izkušnja
   ======================================== */

.performance-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0;
}

.data-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 240px;
  background: #E8F4F8;
  padding: 20px 24px;
  border-radius: 4px;
  border: 1px solid #B3D9E8;
  font-size: 15px;
  color: #2C3E50;
}

.data-item strong {
  display: block;
  font-size: 17px;
  color: #1E5A8E;
  margin-bottom: 8px;
}

/* ========================================
   REGIONAL INSIGHTS
   ======================================== */

.regional-insights,
.regional-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.region,
.region-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FAFAFA;
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.region:hover,
.region-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.region h3,
.region-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1E5A8E;
}

.region p,
.region-item p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 0;
}

/* ========================================
   SAVINGS CASES
   ======================================== */

.savings-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.case {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background: #F0F8F0;
  padding: 28px 24px;
  border-radius: 4px;
  border: 2px solid #2C8C3F;
  text-align: center;
}

.case h4 {
  font-size: 17px;
  margin-bottom: 16px;
  color: #1E5A8E;
}

.case p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 8px;
}

.saving {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2C8C3F;
  margin-top: 12px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 60px 20px;
  background: #FAFAFA;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.testimonials-section .testimonial-card {
  margin-bottom: 32px;
}

.testimonials-section .testimonial-card:last-child {
  margin-bottom: 0;
}

/* ========================================
   MYTHS VS REALITY
   ======================================== */

.myths-reality {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.myth-item {
  background: #FAFAFA;
  padding: 24px 28px;
  border-radius: 4px;
  border-left: 4px solid #F4A623;
  font-size: 15px;
  line-height: 1.7;
  color: #2C3E50;
}

.myth-item strong {
  display: block;
  margin-bottom: 8px;
}

/* ========================================
   PROJECTS PAGE - Showcase
   ======================================== */

.project-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 100%;
  background: #FAFAFA;
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2C8C3F;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1E5A8E;
}

.project-card p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #455A64;
  line-height: 1.6;
}

.project-card strong {
  color: #2C3E50;
  font-weight: 600;
}

/* ========================================
   BEFORE/AFTER COMPARISON
   ======================================== */

.before-after {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison {
  background: #FAFAFA;
  padding: 24px 28px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.6;
}

.comparison strong {
  color: #1E5A8E;
  font-weight: 600;
}

/* ========================================
   SATISFACTION STATS
   ======================================== */

.satisfaction-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.stat-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  background: #E8F4F8;
  padding: 24px 20px;
  border-radius: 4px;
  border: 1px solid #B3D9E8;
  text-align: center;
  font-size: 15px;
  color: #455A64;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.feedback {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  color: #78909C;
  margin-top: 24px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.contact-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1E5A8E;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #FAFAFA;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E5A8E;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1E5A8E;
}

.contact-method p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 8px;
}

.contact-method strong {
  color: #2C3E50;
  font-size: 17px;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
  padding: 60px 20px;
  background: #FAFAFA;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 16px;
  color: #1E5A8E;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 16px;
  color: #455A64;
  margin-bottom: 32px;
}

.form-note {
  max-width: 700px;
  margin: 0 auto;
  background: #FFF9E6;
  border: 2px solid #F4A623;
  border-radius: 4px;
  padding: 24px 28px;
}

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

.form-note strong {
  color: #1E5A8E;
  font-weight: 600;
}

.form-note ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.form-note li {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 8px;
}

/* ========================================
   SERVICE AREAS
   ======================================== */

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.area {
  flex: 1 1 calc(50% - 8px);
  min-width: 240px;
  background: #E8F4F8;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid #B3D9E8;
  font-size: 15px;
  color: #2C3E50;
}

.area strong {
  color: #1E5A8E;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #78909C;
  font-style: italic;
  margin-top: 24px;
}

/* ========================================
   LEGAL CONTENT - Policies
   ======================================== */

.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
}

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

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #455A64;
  margin-bottom: 16px;
}

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

.legal-content li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #455A64;
  line-height: 1.6;
}

/* ========================================
   CONFIRMATION SECTION - Thank You
   ======================================== */

.confirmation-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8F0 100%);
  text-align: center;
}

.confirmation-section h1 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #2C8C3F;
}

.confirmation-section p {
  font-size: 18px;
  color: #455A64;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-section h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #1E5A8E;
}

.confirmation-section ol {
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: left;
}

.confirmation-section li {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}

.contact-note {
  background: #FFF9E6;
  border: 2px solid #F4A623;
  border-radius: 4px;
  padding: 16px 24px;
  margin-top: 32px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #2C3E50;
}

/* ========================================
   SUGGESTIONS SECTION
   ======================================== */

.suggestions-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.suggestions-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: #1E5A8E;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.suggestion {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FAFAFA;
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E5A8E;
}

.suggestion h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1E5A8E;
}

.suggestion p {
  font-size: 15px;
  color: #455A64;
  margin-bottom: 0;
}

.suggestion a {
  color: #1E5A8E;
  font-weight: 500;
  text-decoration: underline;
}

.suggestion a:hover {
  color: #2C8C3F;
}

/* ========================================
   FOOTER - Scandinavian Clean
   ======================================== */

footer {
  background: #2C3E50;
  color: #ECEFF1;
  padding: 60px 20px 24px;
  border-top: 1px solid #37474F;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #B0BEC5;
  margin-bottom: 12px;
}

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

.footer-nav a {
  font-size: 14px;
  color: #B0BEC5;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #37474F;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #90A4AE;
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   Scandinavian clean design
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 999;
  border-top: 2px solid #E0E0E0;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

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

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

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.accept-all {
  background: #2C8C3F;
  color: #FFFFFF;
  border-color: #2C8C3F;
}

.accept-all:hover {
  background: #236D32;
  border-color: #236D32;
}

.reject-all {
  background: #FFFFFF;
  color: #455A64;
  border-color: #B0BEC5;
}

.reject-all:hover {
  background: #F5F5F5;
  border-color: #78909C;
}

.cookie-settings {
  background: transparent;
  color: #1E5A8E;
  border-color: #1E5A8E;
}

.cookie-settings:hover {
  background: #1E5A8E;
  color: #FFFFFF;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E0E0E0;
}

.modal-header h3 {
  font-size: 22px;
  color: #1E5A8E;
  margin-bottom: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #78909C;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #F5F5F5;
  color: #2C3E50;
}

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

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

.category-header h4 {
  font-size: 17px;
  color: #1E5A8E;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #B0BEC5;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2C8C3F;
}

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

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

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

.category-description {
  font-size: 14px;
  color: #78909C;
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}

.modal-footer button {
  flex: 1;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.save-preferences {
  background: #1E5A8E;
  color: #FFFFFF;
  border-color: #1E5A8E;
}

.save-preferences:hover {
  background: #14446B;
  border-color: #14446B;
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First
   ======================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header mobile */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    padding: 60px 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  /* Value cards mobile */
  .value-card {
    flex: 1 1 100%;
  }

  /* Service cards mobile */
  .service-card {
    flex: 1 1 100%;
  }

  /* Stats mobile */
  .stat {
    flex: 1 1 calc(50% - 16px);
  }

  /* Steps mobile */
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Contact methods mobile */
  .contact-method {
    flex: 1 1 100%;
  }

  /* Footer mobile */
  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  /* Text-image sections mobile */
  .text-image-section {
    flex-direction: column;
  }

  /* Comparison mobile */
  .system {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Regional items mobile */
  .region,
  .region-item {
    flex: 1 1 100%;
  }

  /* Savings cases mobile */
  .case {
    flex: 1 1 100%;
  }

  /* Suggestions mobile */
  .suggestion {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }

  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat {
    flex: 1 1 calc(50% - 16px);
  }

  .step {
    flex: 1 1 calc(33.333% - 16px);
  }
}

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

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

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

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background: #FFFFFF;
  }

  .hero,
  .hero-simple {
    background: #FFFFFF;
    padding: 20px 0;
  }
}

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

*:focus {
  outline: 2px solid #1E5A8E;
  outline-offset: 2px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

  .value-card,
  .service-card,
  .step {
    border-width: 2px;
  }
}

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