/* === Scandinavian Clean CSS for Luminous Berry Legal (Brand: #2F3559, #B24A77, #F2EFEA) === */

/* --- CSS 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; }
body {
  background: #F8F7F5;
  color: #2F3559;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B24A77;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2F3559;
  text-decoration: underline;
}
ul, ol { margin-left: 20px; }

/* --- Typography (Scandinavian-inspired) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2F3559;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.6rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }
p, li, a, span, dt, dd {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2F3559;
}
strong { font-weight: 700; color: #B24A77; }
::selection {
  background: #B24A77;
  color: #fff;
}

/* --- Container & Responsive Spacing --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 16px rgba(27,36,50,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* --- Navigation (Desktop & Mobile) --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(47,53,89,0.04);
  position: sticky;
  top: 0;
  z-index: 998;
}
.main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  height: 72px;
  padding: 0 24px;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 10px;
  color: #2F3559;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
}
.main-navigation a.logo img {
  height: 40px;
  margin-right: 16px;
}
.main-navigation a.cta-btn {
  padding: 10px 22px;
  background: #2F3559;
  color: #fff;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  margin-left: 16px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.main-navigation a.cta-btn:hover, .main-navigation a.cta-btn:focus {
  background: #B24A77;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 18px rgba(178,74,119,0.10);
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #F2EFEA;
  color: #B24A77;
}
.main-navigation .logo {
  margin-right: 18px;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #2F3559;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 999;
  cursor: pointer;
  transition: color 0.2s;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #B24A77;
  background: #F2EFEA;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.66,.18,.43,1.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 36px rgba(47,53,89,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #2F3559;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 14px;
  right: 22px;
  cursor: pointer;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #B24A77;
  background: #F2EFEA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 68px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2F3559;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 13px 0;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
  border-radius: 8px;
  display: block;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2EFEA;
  color: #B24A77;
}

/* Only show burger on small screens, hide nav */
@media (max-width: 900px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu { display: none; }
}

/* --- HERO & CALL TO ACTION --- */
.hero {
  background: linear-gradient(115deg, #F2EFEA 60%, #fff 100%);
  border-radius: 0 0 30px 30px;
  padding: 50px 0 64px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  flex: 1;
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #2F3559;
}
.hero p {
  font-size: 1.18rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #B24A77;
  color: #fff;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(178,74,119,0.16);
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.18s, transform 0.20s, box-shadow 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2F3559;
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(47,53,89,0.09);
}

/* --- FEATURE GRID & CARDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 14px 0 0 0;
  justify-content: flex-start;
}
@media (max-width: 868px) {
  .feature-grid { gap: 20px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 240px;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 1px 12px rgba(47,53,89,0.07);
  border-radius: 15px;
  padding: 24px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.19s;
  border: 1.5px solid #F2EFEA;
}
.feature-item img {
  background: #F2EFEA;
  border-radius: 50%;
  padding: 8px;
  width: 38px;
  height: 38px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 1rem;
}
.feature-item:hover {
  box-shadow: 0 8px 38px rgba(178,74,119,0.10);
  transform: translateY(-3px) scale(1.03);
  border-color: #B24A77;
}

/* --- Testimonials --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px 22px 28px;
  background: #F2EFEA;
  border-radius: 16px;
  min-width: 230px;
  max-width: 390px;
  box-shadow: 0 1px 14px rgba(47,53,89, 0.05);
  color: #2F3559;
  font-size: 1.05rem;
  font-style: italic;
  border: 1px solid #E8E6E2;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(47,53,89,0.18);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-meta {
  color: #B24A77;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 2px;
}
.testimonial-card span[aria-label] {
  color: #F2B90A;
  font-size: 1.08em;
}

/* --- Content Spacing & Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 1px 12px rgba(47,53,89, 0.08);
  border-radius: 13px;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 18px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 34px rgba(47,53,89, .11);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Tables & Quick Facts --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin: 18px 0 30px 0;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 12px 13px;
  text-align: left;
}
.pricing-table th {
  background: #F2EFEA;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.pricing-table tbody tr {
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 8px rgba(47,53,89,0.025);
}
.pricing-table tbody tr td {
  border-bottom: 1px solid #F2EFEA;
}
.quick-facts {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin: 24px 0 0 0;
}
.quick-facts dt {
  font-family: 'Montserrat';
  font-weight: 700;
  color: #B24A77;
}
.quick-facts dd { margin-left: 0; }

/* --- FAQ Accordion --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F2EFEA;
  box-shadow: 0 1px 10px rgba(47,53,89,.04);
  padding: 22px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.17s;
  cursor: default;
}
.faq-item h2 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  margin-top: 6px;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(47,53,89,0.07);
}

/* --- Icon Rows + Misc --- */
.icon-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-top: 20px;
}
.icon-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F2EFEA;
  padding: 7px;
}
.address-block {
  margin-bottom: 18px;
}

/* --- Footer --- */
footer {
  background: #fff;
  border-top: 1px solid #F2EFEA;
  padding: 35px 0 18px 0;
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B24A77;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #2F3559;
}
.footer-contact p, .footer-contact a {
  color: #7B8197;
  font-size: 0.95rem;
}
.footer-contact a {
  text-decoration: underline dotted;
  transition: color 0.16s;
}
.footer-contact a:hover { color: #B24A77; }

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(27,36,50,0.06);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  z-index: 4000;
  border-top: 1.5px solid #F2EFEA;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.32s, transform 0.34s;
}
.cookie-consent-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-consent-text {
  color: #2F3559;
  font-size: 1rem;
  max-width: 540px;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-consent-banner button {
  font-family: 'Montserrat';
  background: #F2EFEA;
  border: none;
  color: #2F3559;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 1px 6px rgba(47,53,89,0.04);
}
.cookie-btn.accept {
  background: #B24A77;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2F3559;
}
.cookie-btn.reject {
  background: #fff;
  border: 1px solid #B24A77;
  color: #B24A77;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F2EFEA;
}
.cookie-btn.settings {
  background: #F2EFEA;
  color: #2F3559;
  border: 1px solid #F2EFEA;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #B24A77;
  color: #fff;
  border-color: #B24A77;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,53,89,0.39);
  z-index: 4500;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  padding: 34px 30px 28px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 50px rgba(47,53,89, 0.19);
  max-width: 90vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.38s cubic-bezier(.66,.18,.43,1.18) forwards;
}
@keyframes cookieModalIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: #2F3559;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  margin: 9px 0;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #F2EFEA;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  border: 1.5px solid #B24A77;
  appearance: none;
}
.cookie-toggle:checked {
  background: #B24A77;
}
.cookie-toggle::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #B24A77;
  margin-top: 1px;
  box-shadow: 0 1px 6px rgba(178,74,119,0.07);
  appearance: none;
  transition: background 0.13s;
}
.cookie-toggle:checked::-webkit-slider-thumb {
  border-color: #fff;
  background: #B24A77;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .container { max-width: 95vw; }
  .footer-wrapper { flex-direction: column; gap: 22px; align-items: flex-start; }
  .feature-grid { gap: 14px; }
}
@media (max-width: 900px) {
  .footer-wrapper { flex-direction: column; gap: 16px; }
  .feature-grid { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .section { padding: 30px 6px; margin-bottom: 36px; }
  .container { padding: 0 8px; }
  .hero { padding: 36px 0 40px 0; }
  .hero .container { flex-direction: column; gap: 12px; }
  .content-grid, .card-container { flex-direction: column; gap: 12px; }
  .feature-grid { flex-direction: column; gap: 12px; }
  .testimonial-list { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .section, .card, .testimonial-card {
    border-radius: 12px;
  }
  .footer-wrapper { gap: 12px; }
  .pricing-table th,
  .pricing-table td { padding: 8px 6px; font-size: 0.97rem; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 13px 10px; }
}
@media (max-width: 480px) {
  .feature-item { min-width: 0; width: 100%; max-width: 99vw; }
  .testimonial-card { max-width: 98vw; padding: 15px 7vw; }
  .footer-wrapper { padding: 0 5px; }
  .cookie-modal { padding: 18px 10px; width: 97vw; }
}

/* --- Utility + Misc --- */
hr {
  border: none;
  border-top: 1px solid #E8E6E2;
  margin: 24px 0;
}
::-webkit-input-placeholder { color: #7B8197; opacity: .8; }
::-moz-placeholder          { color: #7B8197; opacity: .8; }
:-ms-input-placeholder      { color: #7B8197; opacity: .8; }
::placeholder              { color: #7B8197; opacity: .8; }

button, .cta-btn, .cookie-btn {
  outline: none;
  border: none;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #B24A77;
  outline-offset: 2px;
}

/* --- Animations & Micro-interactions --- */
.cta-btn, .cookie-btn {
  transition: background 0.15s, transform 0.14s, color 0.14s, box-shadow 0.18s;
}

/* --- End of Scandinavian Clean CSS for Luminous Berry Legal --- */