/* ====================================
   SHADED PATH - SCANDINAVIAN CLEAN DESIGN
   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.7;
  color: #2d2d2d;
  background-color: #fafafa;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ====================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ==================================== */

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

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

h2 {
  font-size: 28px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

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

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

/* ====================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ==================================== */

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

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

/* ====================================
   HEADER - SCANDINAVIAN MINIMALISM
   ==================================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.main-nav a {
  margin-left: 32px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  position: relative;
}

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

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

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

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

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1F4420;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F2D;
}

.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;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #4a4a4a;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  color: #1F4420;
}

/* ====================================
   BUTTONS - SCANDINAVIAN STYLE
   ==================================== */

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

.btn-primary {
  background-color: #1F4420;
  color: #ffffff;
  border-color: #1F4420;
}

.btn-primary:hover {
  background-color: #2C5F2D;
  border-color: #2C5F2D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 68, 32, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1F4420;
  border-color: #1F4420;
}

.btn-secondary:hover {
  background-color: #1F4420;
  color: #ffffff;
}

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

/* ====================================
   HERO SECTION - LIGHT & AIRY
   ==================================== */

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

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

.hero h1 {
  font-size: 36px;
  color: #1F4420;
  margin-bottom: 20px;
}

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

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

.badge {
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1F4420;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ====================================
   HERO INTERNAL PAGES
   ==================================== */

.hero-internal {
  background-color: #f5f5f5;
  padding: 40px 20px;
  margin-bottom: 40px;
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #1F4420;
}

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

/* ====================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ==================================== */

.benefits-grid,
.services-grid,
.values-grid,
.types-grid,
.myths-grid,
.projects-grid,
.examples-grid,
.reasons-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card,
.service-card,
.value-card,
.type-card,
.myth-card,
.project-card,
.example-card,
.reason-card,
.contact-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.type-card:hover,
.myth-card:hover,
.project-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.type-card h3,
.myth-card h3,
.project-card h3 {
  color: #1F4420;
  margin-bottom: 12px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #D68838;
  margin-top: 16px;
}

/* ====================================
   PROCESS STEPS - HORIZONTAL FLEX
   ==================================== */

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

.step {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background-color: #1F4420;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 8px;
}

/* ====================================
   STATISTICS - CLEAN LAYOUT
   ==================================== */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  margin: 40px 0;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1F4420;
  margin-bottom: 8px;
}

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

/* ====================================
   TESTIMONIALS - READABLE CARDS
   ==================================== */

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

.testimonial-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #D68838;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1F4420;
  font-style: normal;
}

.testimonial {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  margin-top: 16px;
  font-style: italic;
  color: #2d2d2d;
}

/* ====================================
   SPECIAL SECTIONS
   ==================================== */

.financing-banner,
.cta-final,
.cta-about,
.cta-services,
.cta-technology,
.cta-portfolio,
.cta-financing,
.cta-contact,
.cta-thankyou {
  background-color: #f5f5f5;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 4px;
}

.financing-banner h2,
.cta-final h2,
.cta-about h2,
.cta-services h2 {
  margin-bottom: 16px;
}

.contact-info {
  margin-top: 24px;
  font-size: 14px;
  color: #6a6a6a;
}

.highlight {
  background-color: #fff9f0;
  padding: 16px;
  border-left: 4px solid #D68838;
  margin: 24px 0;
  font-weight: 500;
  color: #2d2d2d;
}

.urgency {
  margin-top: 16px;
  color: #D68838;
  font-weight: 600;
}

.social-proof {
  margin-top: 16px;
  font-size: 14px;
  color: #6a6a6a;
}

/* ====================================
   FAQ SECTION
   ==================================== */

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

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #1F4420;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2d2d2d;
}

/* ====================================
   TEXT SECTIONS
   ==================================== */

.text-section {
  max-width: 800px;
  margin: 32px auto;
}

.text-section ul,
.text-section ol {
  margin: 16px 0 16px 20px;
}

.text-section li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

.text-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.response-time {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 8px;
}

.form-note {
  background-color: #fff9f0;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #D68838;
  margin: 24px 0;
}

.form-note ul {
  margin-top: 12px;
}

.hours-table {
  max-width: 600px;
  margin: 24px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
}

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

.day {
  font-weight: 600;
  color: #1F4420;
}

.time {
  color: #4a4a4a;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 16px;
}

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

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

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

.resource-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  margin-bottom: 12px;
}

.resource-card .btn {
  margin-top: 16px;
}

/* ====================================
   TIMELINE
   ==================================== */

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

.timeline-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #1F4420;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.timeline-item h3 {
  color: #1F4420;
  margin-bottom: 8px;
}

/* ====================================
   SCOPE & SUPPORT LISTS
   ==================================== */

.scope-list,
.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.scope-item,
.support-item {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.scope-item h3,
.support-item h3 {
  color: #1F4420;
  margin-bottom: 8px;
}

/* ====================================
   FOOTER - MINIMALIST DESIGN
   ==================================== */

footer {
  background-color: #2d2d2d;
  color: #e8e8e8;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 24px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #4a4a4a;
  font-size: 14px;
  color: #c0c0c0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-text {
  font-size: 14px;
  color: #4a4a4a;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #4a4a4a;
  cursor: pointer;
}

.cookie-category {
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #1F4420;
  margin-bottom: 0;
}

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

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

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

.cookie-toggle.active::after {
  left: 26px;
}

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

/* ====================================
   RESPONSIVE DESIGN - TABLET
   ==================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    padding: 80px 20px;
  }

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

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

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

  .main-nav {
    display: none;
  }

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

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

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

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

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}

/* ====================================
   RESPONSIVE DESIGN - DESKTOP
   ==================================== */

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
  }

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

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

  .value-card,
  .type-card {
    flex: 1 1 calc(33.333% - 16px);
  }

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

  .stat {
    flex: 1 1 calc(25% - 18px);
  }

  .scope-item,
  .support-item {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-section {
    flex: 1 1 calc(25% - 24px);
  }
}

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

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

.section {
  animation: fadeIn 0.6s ease-out;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons {
    display: none !important;
  }
}