/* Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7fafc;
  color: #232b2f;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

/* Typography - Scandinavian Clean */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235d87;
  font-weight: 600;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

p, ul, ol, blockquote {
  font-size: 1rem;
  color: #353f46;
  margin-bottom: 14px;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
}
strong {
  color: #235d87;
}
a {
  color: #235d87;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #c97c15;
}


/* Layout containers & spacing (Scandinavian Clean + Flex ONLY) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(28,51,63,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: #cbe7fa;
  border-radius: 0 0 24px 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta {
  background: #235d87;
  color: #fff;
  border-radius: 20px;
}
.cta h2 {
  color: #fff;
}
.cta ul {
  color: #fff;
}

/* Header & Navigation */
header {
  position: relative;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 12px rgba(28,51,63,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  color: #235d87;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #235d87;
}
.cta-btn {
  background: #eeb345;
  color: #235d87;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 11px 28px;
  border-radius: 22px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(200,167,21,0.06);
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  margin-left: 8px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c97c15;
  color: #fff;
  box-shadow: 0 6px 20px rgba(200,167,21,0.13);
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #235d87;
  cursor: pointer;
  display: none;
  z-index: 103;
  margin-left: 12px;
  padding: 2px 10px;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(60,80,100,0.09);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #235d87;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 16px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #c97c15;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px 32px;
  font-size: 1.13rem;
  color: #235d87;
  border-bottom: 1px solid #e9f3fa;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #cbe7fa;
  color: #c97c15;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}

@media (max-width: 1024px) {
  .mobile-menu {
    display: flex;
    pointer-events: auto;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none!important;
  }
}

/* Card and Section Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(28,51,63,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 34px rgba(41,71,107,0.14);
  transform: translateY(-2px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6fbfd;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,93,135,0.07);
  border-left: 6px solid #eeb345;
  transition: box-shadow 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(41,71,107,0.13);
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  color: #232b2f;
  margin-left: 0;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  margin-right: 8px;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 14px;
  color: #235d87;
  font-weight: 500;
  font-size: 1rem;
}
.testimonial-meta span:first-child {
  color: #eeb345;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Flex list patterns for grids - Scandinavian cards */
.feature-grid, .values-grid, .product-grid, .service-list, .sector-grid, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.feature-grid li, .product-grid li, .values-grid li, .service-list li, .sector-grid li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(28,51,63,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.09s;
}
.feature-grid li:hover, .product-grid li:hover, .values-grid li:hover, .service-list li:hover, .sector-grid li:hover {
  box-shadow: 0 6px 28px rgba(35,93,135,0.10);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img, .product-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.short-specs {
  list-style: disc;
  margin-left: 18px;
  margin-top: 8px;
  margin-bottom: 14px;
  color: #3D454C;
  font-size: 0.98rem;
}
.price-tag {
  color: #235d87;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 8px;
}
.step-list {
  flex-direction: column;
  gap: 11px;
  counter-reset: step;
  font-size: 1rem;
}
.step-list li {
  position: relative;
  padding-left: 34px;
}
.step-list li:before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 1px;
  background: #eeb345;
  color: #235d87;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.service-list li span {
  color: #235d87;
  margin-left: 8px;
  font-weight: 600;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
  list-style: none;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -3px 18px rgba(35,93,135,0.13);
  border-radius: 14px 14px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  z-index: 1500;
  animation: banner-slide-up 0.44s cubic-bezier(.7,0,.26,1) forwards;
}
@keyframes banner-slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to {   transform: translateY(0);   opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  color: #354048;
  flex: 1 1 auto;
  margin-right: 12px;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner__button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 22px;
  border: none;
  outline: none;
  padding: 9px 21px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 2px 9px rgba(35,93,135, 0.10);
}
.cookie-banner__button--accept {
  background: #235d87;
  color: #fff;
}
.cookie-banner__button--accept:hover {
  background: #eeb345;
  color: #235d87;
}
.cookie-banner__button--reject {
  background: #f4f7fa;
  color: #235d87;
}
.cookie-banner__button--reject:hover {
  background: #eeb345;
  color: #235d87;
}
.cookie-banner__button--settings {
  background: #fff;
  color: #c97c15;
  border: 1px solid #c97c15;
}
.cookie-banner__button--settings:hover {
  background: #faf3e1;
  color: #c97c15;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 13px;
    gap: 16px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,93,135,0.25);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.25s;
}
@keyframes modal-fade-in { from { opacity: 0;} to {opacity: 1;} }
.cookie-modal__window {
  background: #fff;
  border-radius: 16px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 8px 48px rgba(35,93,135,0.18);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-slide-down 0.33s cubic-bezier(.44,.15,.19,.96);
}
@keyframes modal-slide-down { from {transform: translateY(-30px); opacity: 0;} to {transform: none; opacity: 1;} }
.cookie-modal__close {
  position: absolute;
  right: 18px; top: 16px;
  font-size: 1.7rem;
  background: none;
  color: #235d87;
  border: none;
  cursor: pointer;
}
.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f7fa;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 1rem;
}
.cookie-cat input[type=checkbox] {
  accent-color: #eeb345;
  transform: scale(1.17);
}
.cookie-cat--essential input {
  accent-color: #c97c15;
}
.cookie-cat--essential input {
  pointer-events: none;
}
.cookie-cat--essential {
  background: #e7eff5;
  font-weight: 500;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}

/* Footer */
footer {
  background: #f7fafc;
  padding: 20px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
footer nav a {
  font-size: 0.98rem;
  color: #235d87;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #c97c15;
  text-decoration: underline;
}
.footer-contact {
  color: #636e7b;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Simple Animations */
a, button, .cta-btn, .card, .feature-grid li, .service-list li, .testimonial-card, .cookie-banner__button {
  transition: background 0.15s, color 0.11s, box-shadow 0.13s, transform 0.12s;
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid li, .product-grid li, .values-grid li, .service-list li, .sector-grid li, .card {
    flex-basis: 100%;
    min-width: 0;
    padding: 18px 10px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.05rem; }
  .container { padding: 0 6px; }
  .testimonial-card { flex-direction: column; gap: 12px; }
  .feature-grid, .product-grid, .values-grid, .service-list, .sector-grid {
    gap: 16px;
  }
}

/* Spacing and flex alignment */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature-grid, .product-grid, .service-list, .sector-grid, .values-grid {
  gap: 20px !important;
}

/* Decorative */
img {
  max-width: 100%;
  display: block;
}

/* Misc Lists */
ul li:not(.feature-item), ol li {
  margin-bottom: 7px;
}

/* Accessibility: Focus States */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #eeb345;
  outline-offset: 2px;
}

/* Hide on Desktop (for mobile menu etc.) */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* Utility */
.hide { display: none !important; }
.flex { display: flex !important; }

/* End */
