/* ============================================================
   Radiant Bundle Scandinavian Clean Style – style.css
   Modern, minimal, Scandinavian-inspired responsive CSS
   Brand: Radiant Bundle | Fonts: Montserrat, Roboto | Flexbox only
   ============================================================ */

/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F7F8FC;
  color: #152446;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  /* Smooth font rendering */
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
}

/* ================= Cooperate with main container ================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==================== TYPOGRAPHY: Scandinavian Spirit ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #152446;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #1d284b;
}
strong {
  font-weight: 600;
  color: #152446;
}
blockquote {
  font-style: italic;
  color: #35C2A9;
  background: rgba(53, 194, 169, 0.07);
  border-left: 4px solid #35C2A9;
  padding: 18px 24px;
  margin-bottom: 18px;
  border-radius: 6px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: #ffffff;
  box-shadow: 0 1px 12px rgba(21,36,70,.03);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
header nav .cta {
  margin-left: 18px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #152446;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.15s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #F7F8FC;
  color: #35C2A9;
}

header img {
  height: 38px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #152446;
  cursor: pointer;
  margin-left: 14px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #35C2A9;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 0 40px rgba(21,36,70,0.2);
  z-index: 1003;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.7,.3,.2,.92);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #152446;
  position: absolute;
  top: 20px;
  right: 26px;
  z-index: 1004;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #35C2A9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding-top: 74px;
  gap: 8px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 14px 34px 14px 24px;
  width: 100%;
  color: #152446;
  border-radius: 0px 20px 20px 0px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #e6eaea;
  color: #35C2A9;
}

/* ==================== HERO SECTION ==================== */
.hero {
  width: 100%;
  min-height: 320px;
  background: #F7F8FC;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 54px 0 36px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px rgba(21,36,70,0.02);
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  padding: 0;
}
.hero h1 {
  color: #152446;
  font-weight: 800;
}
.hero p {
  font-size: 1.1rem;
  color: #244173;
  margin-bottom: 16px;
}
.hero .cta {
  margin-top: 12px;
}

/* ===================== SCANDINAVIAN CTA BUTTON ===================== */
a.cta, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #35C2A9;
  color: #fff;
  padding: 13px 38px;
  border: none;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(53,194,169,0.12);
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.24s;
  display: inline-block;
  margin-top: 0;
  outline: none;
}
a.cta:hover, a.cta:focus, .cta:hover, .cta:focus {
  background: #1bae90;
  color: #fff;
  box-shadow: 0 6px 26px rgba(53,194,169,0.24);
}

/* ======================== SECTION, SPACING & LAYOUT ======================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(21,36,70,0.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(21,36,70,0.06);
  min-width: 240px;
  flex: 1 1 240px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(53,194,169,0.12);
}

.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(21,36,70,0.05);
  margin-bottom: 20px;
  color: #1a2040;
  font-size: 1.07rem;
  position: relative;
  min-width: 290px;
  transition: box-shadow 0.23s;
  border: 1px solid #e9ecef;
}
.testimonial-card strong {
  display: block;
  font-size: 1rem;
  color: #152446;
  margin-left: 14px;
  font-weight: 600;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(53,194,169,0.12);
  border-color: #35C2A9;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 14px;
  border-radius: 12px;
  background: #f6faf9;
  box-shadow: 0 2px 10px rgba(53,194,169,0.07);
  margin-bottom: 18px;
}

/* ===================== FEATURE GRID / GRID ALTERNATIVE USING FLEXBOX ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div {
  min-width: 220px;
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(21,36,70,.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px 18px 18px;
  border: 1px solid #ececec;
  transition: box-shadow 0.2s, border-color 0.19s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 24px rgba(53,194,169,0.13);
  border-color: #35C2A9;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

/* =========================== GENERAL INTERACTIVE =========================== */
button, [type="button"], [type="submit"] {
  cursor: pointer;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
}
:focus {
  outline: 2px solid #35C2A9;
  outline-offset: 2px;
}
a:focus {
  outline: 2px solid #35C2A9;
  outline-offset: 2px;
}

/* =========================== FORM ELEMENTS (for completeness) =========================== */
input, textarea, select {
  background: #fafbfc;
  border: 1px solid #c7d0df;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #35C2A9;
}

/* =========================== TEXT SECTION / LISTS =========================== */
.text-section {
  background: transparent;
  padding: 0 0 12px 0;
  margin-top: -8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section > ul {
  margin-bottom: 4px;
}
.text-section ul li {
  margin-left: 22px;
  list-style-type: disc;
  color: #1d284b;
}
.text-section ul li strong {
  color: #152446;
}

/* =========================== FOOTER =========================== */
footer {
  background: #ffffff;
  border-top: 1px solid #EDF0F4;
  box-shadow: 0 -1px 14px rgba(21,36,70,0.03);
  padding: 36px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
footer nav a {
  font-size: 1rem;
  color: #2a3351;
  font-weight: 500;
  opacity: 0.83;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.14s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #F7F8FC;
  color: #35C2A9;
  opacity: 1;
}
footer img {
  height: 36px;
  width: auto;
  margin-bottom: 22px;
}
.contact-info {
  font-size: 0.99rem;
  color: #233150;
  opacity: .9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.contact-info p {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0px;
}

/* =========================== COOKIE CONSENT BANNER =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  width: 100vw;
  background: #f9fdfc;
  color: #152446;
  box-shadow: 0 -2px 34px rgba(21,36,70,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 3000;
  padding: 20px 20px 20px 42px;
  transition: transform 0.36s cubic-bezier(.7,.3,.2,.92), opacity 0.21s;
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-msg {
  font-size: 1rem;
  font-weight: 500;
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-button, .cookie-settings {
  background: #35C2A9;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  font-weight: 600;
  margin-top: 0px;
  cursor: pointer;
  transition: background 0.13s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(53,194,169,0.09);
}
.cookie-button.reject {
  background: #eaeaea;
  color: #233150;
  border: 1px solid #c8dad6;
}
.cookie-button:hover, .cookie-button:focus, .cookie-settings:hover, .cookie-settings:focus {
  background: #1bae90;
  color: #fff;
}
.cookie-button.reject:hover, .cookie-button.reject:focus {
  background: #dde2e5;
  color: #35C2A9;
  border: 1px solid #35C2A9;
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,36,70,0.20);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.3s;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 26px 28px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 40px rgba(21,36,70,0.13);
  max-width: 480px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookieModalSlide 0.28s;
}
@keyframes cookieModalSlide {
  from { transform: translateY(26px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 9px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #e7e9ee;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #35C2A9;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}
.cookie-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #233150;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-close:focus, .cookie-close:hover {
  color: #35C2A9;
}

/* ============================ CTAs / SECTION STYLES ============================ */
section.cta {
  background: #35C2A9;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(53,194,169,0.09);
  padding: 46px 0 44px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.cta .container {
  align-items: center;
  text-align: center;
}
section.cta .content-wrapper {
  gap: 18px;
}
section.cta h2 {
  color: #fff;
}
section.cta p {
  color: #e0fffa;
}
section.cta .cta {
  background: #fff;
  color: #35C2A9;
  font-weight: 800;
  box-shadow: 0 2px 16px rgba(255,255,255,0.1);
  margin-top: 10px;
}
section.cta .cta:hover, section.cta .cta:focus {
  background: #35C2A9;
  color: #fff;
  box-shadow: 0 4px 16px rgba(53,194,169,0.20);
  border: 1.3px solid #fff;
}

/* ======================== MEDIA QUERIES FOR RESPONSIVENESS ======================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid {
    gap: 12px;
  }
  .content-grid {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero {
    padding: 36px 0 22px 0;
    border-radius: 0 0 24px 24px;
    min-height: 210px;
    margin-bottom: 34px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 7px;
    border-radius: 10px;
  }
  .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 16px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding-left: 4px;
    padding-right: 4px;
  }
  section.cta {
    padding: 30px 0 30px 0;
    border-radius: 12px;
    margin-bottom: 30px;
  }
  .cookie-banner {
    padding: 16px 7px 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .card {
    padding: 16px 7px;
    min-width: unset;
  }
  .feature-grid > div {
    padding: 14px 7px 12px 8px;
    min-width: unset;
  }
  .cookie-modal-content {
    padding: 16px 6px 14px 8px;
    width: 99vw;
    max-width: 99vw;
  }
}

/* Utility - Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Micro-interactions & subtle animations */
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover {
  transform: translateY(-3px) scale(1.013);
}

/* --- END --- */
