/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F8FA;
  color: #1C2940;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #36B2A4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C2940;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
}
li + li {
  margin-top: 0.4em;
}

/* BRAND FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.12;
  color: #1C2940;
  margin-bottom: 0.8em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.18;
  color: #1C2940;
  margin-bottom: 0.7em;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.325rem;
  line-height: 1.22;
  color: #1C2940;
  margin-bottom: 0.5em;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.4em;
}
p, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1C2940;
}
p {
  margin-bottom: 1.25em;
}
blockquote {
  font-style: italic;
  color: #27334b;
  font-size: 1.1rem;
  background: #fafdff;
  border-left: 4px solid #36B2A4;
  margin-bottom: 0.6em;
  padding: 15px 20px;
  border-radius: 8px;
}
cite {
  display: block;
  margin-top: 0.1em;
  font-size: 0.95rem;
  color: #1C2940;
  font-style: normal;
  opacity: 0.83;
}

/* SECTIONS & LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX LAYOUTS (Overrides and Custom Classes) */
.features-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-grid {
  justify-content: space-between;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(28,41,64,0.06);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(28,41,64,0.11);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28,41,64,.04);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 480px;
  transition: box-shadow 0.18s;
  border: 1px solid #ECF1F4;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(54,178,164,0.10);
  border-color: #d4ecea;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,41,64,0.07);
  width: 100%;
  max-width: 300px;
  min-width: 220px;
  transition: box-shadow 0.17s, border 0.17s;
  border: 1px solid #ECF1F4;
}
.feature-item:hover {
  box-shadow: 0 8px 26px rgba(54,178,164,0.12);
  border-color: #abe7df;
}

.value-props, .outcomes, .performance-metrics, .success-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.value-prop {
  background: #F6F8FA;
  border-radius: 8px;
  padding: 18px 16px;
  flex: 1 1 210px;
  min-width: 180px;
}

.industry-use-cases > ul,
.performance-metrics > ul,
.success-metrics > ul,
.outcomes > ul {
  margin: 0;
}

.sector-challenges {
  margin-top: 22px;
}

.client-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}

.tech-icons {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}

.blog-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-snippets article {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 8px;
  padding: 22px 16px;
  box-shadow: 0 2px 9px rgba(28,41,64,.05);
  transition: box-shadow 0.15s;
}
.blog-snippets article:hover {
  box-shadow: 0 6px 22px rgba(54,178,164,0.13);
}

.map-location {
  margin-top: 18px;
  background: #F6F8FA;
  border-radius: 10px;
  padding: 12px 16px;
}

.whitepapers, .webinars {
  margin-top: 28px;
}

/* PRICING TAGS */
.price {
  display: inline-block;
  background: #E6F6F3;
  color: #219185;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 5px;
  font-size: 0.97rem;
  margin-top: 7px;
}

/* HEADER & NAV */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ECF1F4;
  box-shadow: 0 1px 8px rgba(28,41,64,0.04);
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 0;
  min-height: 72px;
}
header > a img {
  height: 36px;
  margin: 16px 20px 16px 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1C2940;
  font-weight: 500;
  padding: 8px 5px;
  transition: color 0.16s, border-bottom 0.18s;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #36B2A4;
  border-bottom: 2px solid #36B2A4;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #36B2A4;
  border: none;
  border-radius: 22px;
  padding: 12px 30px;
  box-shadow: 0 2px 10px rgba(54,178,164,.14);
  transition: background 0.16s, box-shadow 0.13s, color 0.13s;
  margin-left: 24px;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #219185;
  color: #fff;
  box-shadow: 0 4px 18px rgba(54,178,164,0.23);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C2940;
  cursor: pointer;
  display: none;
  margin-left: 20px;
  z-index: 400;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  color: #36B2A4;
  outline: 2px solid #219185;
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 34px 0 rgba(28,41,64,0.13);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  padding: 0 0 16px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 20px 0 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1C2940;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #36B2A4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #1C2940;
  padding: 7px 0;
  font-weight: 500;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  width: fit-content;
  outline: none;
  border-radius: 4px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #36B2A4;
  border-bottom: 2px solid #36B2A4;
  background: #F6F8FA;
}

@media (max-width: 1024px) {
  .container {
    max-width: 820px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .features-grid, .card-container, .content-grid {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .features-grid {
    gap: 16px;
  }
  .feature-item {
    min-width: 180px;
    max-width: 48%;
    flex: 1 1 43%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 0.96rem;
  }
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 36px;
  }
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .features-grid,
  .card-container,
  .content-grid,
  .value-props,
  .testimonials,
  .blog-snippets {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .client-logos, .tech-icons {
    gap: 16px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 12px;
  }
  .map-location {
    font-size: 0.98rem;
    padding: 8px 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .section {
    padding: 16px 4px;
    margin-bottom: 20px;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
  }
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ECF1F4;
  width: 100%;
  padding: 35px 0 20px 0;
  margin-top: 48px;
}
footer .container {
  justify-content: center;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
  justify-content: center;
}
footer nav a {
  color: #1C2940;
  opacity: 0.85;
  font-weight: 400;
}
footer nav a:hover {
  color: #36B2A4;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.90;
  font-size: 0.98rem;
  color: #1C2940;
}
.footer-brand img {
  height: 32px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1C2940;
  color: #fff;
  z-index: 1500;
  box-shadow: 0 -2px 24px rgba(28,41,64,0.19);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 20px 18px;
  font-size: 1rem;
  gap: 28px;
  transition: transform 0.34s cubic-bezier(.79,.14,.15,.86);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 180px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 17px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  font-weight: 700;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner .accept {
  color: #fff;
  background: #36B2A4;
  box-shadow: 0 2px 8px rgba(54,178,164,0.13);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #219185;
}
.cookie-banner .reject {
  color: #36B2A4;
  background: #fff;
  border: 1.5px solid #36B2A4;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #abe7df;
  color: #1C2940;
}
.cookie-banner .settings {
  color: #1C2940;
  background: #E6F6F3;
  border: 1.5px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #abe7df;
  border: 1.5px solid #36B2A4;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 7px 18px 7px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .cookie-btn-group {
    width: 100%;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,41,64,0.42);
  z-index: 1700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 32px rgba(28,41,64,0.22);
  padding: 32px 26px 26px 26px;
  max-width: 420px;
  width: 90vw;
  margin-bottom: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUpModal 0.35s cubic-bezier(.7,.18,.43,.9);
}
@keyframes slideUpModal {
  from {
    transform: translateY(220px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1C2940;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  padding: 7px 0 7px 0;
  border-bottom: 1px solid #ECF1F4;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #222b38;
  font-weight: 500;
}
.cookie-category .toggle {
  width: 36px; height: 20px;
  background: #E6F6F3;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: background 0.16s;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #abe7df;
  transition: left 0.18s, background 0.15s;
}
.cookie-category .toggle input:checked + .toggle-knob {
  left: 18px; background: #36B2A4;
}
.cookie-category .toggle input:checked ~ ::after {
  background: #36B2A4;
  left: 18px;
}
.cookie-category .toggle input:checked + .toggle-knob {
  background: #36B2A4;
}
.cookie-category .toggle input:checked ~ .toggle-knob {
  background: #36B2A4;
}
.cookie-modal .modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px;
  padding: 6px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .save {
  background: #36B2A4;
  color: #fff;
}
.cookie-modal .save:hover { background: #219185; }
.cookie-modal .cancel {
  background: #ebe9e9;
  color: #1C2940;
}
.cookie-modal .cancel:hover { background: #F6F8FA; }

/* MICRO-INTERACTIONS */
button, .cta-btn, .mobile-menu-toggle {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.09s;
}
button:active, .cta-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.96);
}

/* ACCESSIBILITY OUTLINE */
:focus-visible {
  outline: 2px solid #36B2A4;
  outline-offset: 1.7px;
}

/* UTILITIES */
.d-none { display: none !important; }
.hide { display: none !important; }

/************************/
/* UNMISTAKABLE SCANDINAVIAN CLEAN STYLE */
/************************/

body {
  background: #F6F8FA;
  color: #1C2940;
}
.card, .feature-item, .testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(28,41,64,0.05);
}
.section {
  background: #f9fafb;
  border-radius: 14px;
}
.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.value-prop {
  background: #eaf2f1;
}

/* Spacing hierarchy */
.section, .container, .content-wrapper, .feature-item, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* Clean headings */
h1, h2, h3, h4 {
  letter-spacing: 0.01em;
}

/* CTA BUTTON overrides */
.cta-btn, .cookie-banner button.accept, .cookie-modal .save {
  box-shadow: 0 2px 16px rgba(54,178,164,0.13);
  text-transform: none;
  border: none;
}

/* SCANDINAVIAN BUTTONS */
button, .cta-btn {
  border-radius: 22px;
}

/* List overrides for value, outcomes, performance */
.value-props ul, .outcomes ul, .performance-metrics ul, .success-metrics ul{
  margin-left: 1.5em;
  margin-bottom: 0;
}

/************************/
/* MISC CLASSES for elements in markup */
/************************/

.text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(28,41,64,0.03);
  padding: 22px 18px;
  margin-bottom: 16px;
}

/* For next-steps div in thank-you */
.next-steps {
  background: #F6F8FA;
  border-radius: 7px;
  padding: 13px 17px;
  margin-bottom: 18px;
}

/***********************/
/* END OF CSS          */
/***********************/
