/* RESET & BASE STYLES */
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, menu, 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, 
main, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #fff;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #fff;
  line-height: 1.66;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

a {
  color: #232323;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #206080;
  outline: none;
}

ul, ol {
  padding-left: 1.3em;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 32px 0;
}

strong, b {
  font-weight: 700;
}

em {
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #111;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.23;
}
h1 {
  font-size: 2.5rem;
  margin-top: 8px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-top: 28px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-top: 24px;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.text-section ul {
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
}

p {
  font-size: 1.06rem;
  margin-bottom: 12px;
  color: #232323;
  max-width: 680px;
}

section p:last-child {
  margin-bottom: 0;
}

/* GENERAL FLEX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(10,10,20,0.06), 0 1.5px 5px rgba(40,40,55,0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(28, 32, 48, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid #efefef;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(32, 60, 96, 0.15);
  border-color: #B0A160;
  z-index: 2;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #F0F6FA;
  box-shadow: 0 4px 20px 0 rgba(40,40,55,0.06);
  margin-bottom: 20px;
  border: 1.5px solid #e4e6ea;
}
.testimonial-card .star-rating {
  font-size: 1.33rem;
  color: #B0A160;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.48;
}
.testimonial-card span {
  font-size: 1rem;
  color: #3a3a3a;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 4px;
}

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

.content-wrapper {
  margin-bottom: 36px;
}

/* BUTTONS & CTAS */
.primary-cta {
  display: inline-block;
  background: #232323;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 42px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(32,60,128,.10);
  margin-top: 16px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #206080;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 38px 0 rgba(32,96,128,.15);
  outline: none;
}

.secondary-btn, .cookie-banner button.cookie-settings {
  display: inline-block;
  background: transparent;
  color: #232323;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 32px;
  border: 2px solid #232323;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-right: 12px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.secondary-btn:hover, .cookie-banner button.cookie-settings:hover {
  background: #232323;
  color: #fff;
  border-color: #206080;
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1.5px solid #f3f5f7;
  position: sticky;
  top: 0;
  z-index: 80;
  padding-bottom: 0;
  transition: box-shadow 0.25s;
}
header.scrolled {
  box-shadow: 0 2.5px 36px 0 rgba(32,60,128, 0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  position: relative;
}
.main-nav img {
  height: 40px;
  margin-right: 12px;
}
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: 20px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #232323;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.20s, color 0.20s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #206080;
  border-bottom: 2px solid #206080;
  outline: none;
}

.main-nav .primary-cta {
  margin-left: 36px;
  margin-bottom: 0;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #232323;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1001;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #206080;
  outline: none;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 1020;
  background: rgba(23,23,28, 0.94);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  z-index: 1022;
  cursor: pointer;
  padding: 4px 10px;
}
.mobile-nav {
  margin: 100px 0 0 0;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  gap: 22px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B0A160;
  background: rgba(255,255,255,0.08);
  outline: none;
}

/* FOOTER */
footer {
  background: #18181E;
  color: #ededed;
  padding: 38px 0 12px 0;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1.5px solid #26262a;
  margin-bottom: 10px;
}
.footer-nav img {
  height: 32px;
  margin-right: 15px;
}
.footer-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-nav ul li a {
  color: #c7c7d7;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  color: #FFC;
  outline: none;
}
.footer-copy {
  text-align: right;
  color: #888;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* CARD LISTS & ICONS */
.content-wrapper ul li,
.section ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.44;
}
.content-wrapper ul li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%) brightness(14%) contrast(1.4);
  margin-right: 8px;
}
.content-wrapper ul li strong {
  margin-right: 4px;
}
.content-wrapper ul li em {
  color: #B0A160;
  margin-left: 6px;
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 700;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  padding: 28px 20px 26px 20px;
  box-shadow: 0 -2px 24px 0 rgba(40,40,50,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  text-align: center;
  color: #ededed;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 28px;
  padding: 10px 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .accept {
  background: #232323;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(32,96,128,0.10);
  border: 1.5px solid #232323;
}
.cookie-banner .accept:hover {
  background: #206080;
  color: #fff;
  border-color: #206080;
}
.cookie-banner .reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 500;
}
.cookie-banner .reject:hover {
  color: #232323;
  background: #fff;
  border-color: #232323;
}
.cookie-banner button.cookie-settings {
  border: 2px solid #B0A160;
  color: #B0A160;
  background: transparent;
}
.cookie-banner button.cookie-settings:hover {
  color: #fff;
  background: #B0A160;
}

/* Cookie modal/popup */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 410px;
  background: #fff;
  color: #232323;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(30,40,64,0.22);
  z-index: 1250;
  padding: 30px 26px 22px 26px;
  transform: translate(-50%, -60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.cookie-modal h3 {
  font-size: 1.333rem;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232323;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
  font-size: 1.03rem;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #206080;
  width: 22px; height: 22px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.7em;
  background: none;
  border: none;
  color: #232323;
  cursor: pointer;
  z-index: 2;
}

/* FORMS (when present) */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #cecece;
  outline: none;
  border-radius: 8px;
  background: #fafbfc;
  color: #232323;
  transition: border-color 0.16s;
  margin-bottom: 12px;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #206080;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #18181e;
  display: block;
}

/* MISC */
::-webkit-input-placeholder { color: #bdbdbd; }
::-moz-placeholder { color: #bdbdbd; }
:-ms-input-placeholder { color: #bdbdbd; }
::placeholder { color: #bdbdbd; }

/* ACCESSIBILITY (focus outlines) */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #206080;
  outline-offset: 2px;
}

/* ---------- RESPONSIVE ------------- */
@media (max-width: 1040px) {
  .container { max-width: 100vw; }
  .main-nav ul { gap: 18px; }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 10px; }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-copy { text-align: left; margin-top: 14px; }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    gap: 10px; min-height: 58px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 14px 10px;
    gap: 12px;
  }
  .mobile-menu {
    padding: 0;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 16px 6px 15px 6px;
    border-radius: 8px 8px 0 0;
  }
}
@media (max-width: 480px) {
  body, html { font-size: 15px; }
  .section { padding: 18px 2px; }
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1.1rem; }
  .testimonial-card { padding: 8px 5px; }
  .footer-nav { flex-direction: column; }
  .cookie-modal { padding: 17px 5px; min-width: 90vw; }
}

/* ---------- ANIMATIONS/MICRO-INTERACTIONS ----------- */
.primary-cta, .secondary-btn, .cookie-banner button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}
section, .card, .testimonial-card, .section, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.2s, background-size 0.18s, background-color 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(32,60,128,0.13);
}

/* ----------- MONOCHROME SOPHISTICATION ----------- */
body, .section, .content-wrapper, .text-section {
  background: #fff;
  color: #18181e;
}
.section {
  border: 1px solid #e5e5e5;
}
.card, .testimonial-card {
  background: #fafbfc;
  color: #232323;
}
main a {
  color: #232323;
  transition: color 0.18s;
}
main a:hover, main a:focus {
  color: #B0A160;
  text-decoration: none;
}

/* Visually dramatic headlines */
h1, h2 {
  text-shadow: 0 2px 12px rgba(28,32,40,0.06);
}

/* Subtle golden brand accent for accents & highlights */
em, .accent, a.accent, .star-rating {
  color: #B0A160!important;
}

/* --------------- Z-INDEX LAYERS ----------------- */
.mobile-menu {
  z-index: 1020;
}
.cookie-banner {
  z-index: 1200;
}
.cookie-modal {
  z-index: 1250;
}

/* ------------- MINIMAL DECORATIVE DETAILS --------- */
.content-wrapper ul li img {
  filter: grayscale(90%) brightness(0.75) contrast(1.4);
  opacity: 0.92;
}

@media (pointer: coarse) {
  .main-nav ul li a, .footer-nav ul li a {
    padding: 11px 0;
  }
}
