/* CSS RESET & MONOCHROME SOPHISTICATED BASE STYLE */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  background: #F0ECE5;
  color: #23272E;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #23272E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #A7BBC9;
  outline: none;
}


/* FONT FAMILY & TYPOGRAPHY SCALE */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #23272E;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.375rem; /* 38px */
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.875rem; /* 30px */
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 10px;
  font-weight: 600;
}
p, .text-section {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #23272E;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(40, 46, 56, 0.07), 0 1.5px 6px rgba(40, 46, 56, 0.04);
}
@media (max-width: 900px) {
  .section {
    padding: 28px 10px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 18px 2vw;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 8px;
  }
}

/* FLEXBOX LAYOUTS */
.card-container, .feature-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  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: 22px;
  }
  .card-container, .feature-grid, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* CARDS & FEATURE ITEMS */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(80, 80, 88, 0.10);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(30,34,46,0.14);
  transform: translateY(-3px) scale(1.013);
}
.feature-item, .feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F7F8;
  border-radius: 10px;
  padding: 22px 18px;
  min-width: 210px;
  flex: 1 1 265px;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2F2F1;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(80,80,90,0.08);
  max-width: 570px;
  min-width: 210px;
  color: #222;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #18191B;
  margin: 0 0 6px 0;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #57585b;
  font-weight: 500;
}


/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  border: 1.5px solid #23272E;
  color: #23272E;
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.18s;
  text-align: center;
  box-shadow: 0 1.5px 6px rgba(50,54,59,0.04);
  margin: 6px 0 0 0;
}
.btn.primary {
  background: #23272E;
  color: #fff;
  border-color: #23272E;
  box-shadow: 0 2px 12px rgba(35,39,46,0.14);
}
.btn.primary:hover, .btn.primary:focus {
  background: #181B20;
  color: #A7BBC9;
}
.btn.secondary {
  background: #fff;
  color: #23272E;
  border: 2px solid #23272E;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #F0ECE5;
  color: #23272E;
  border-color: #A7BBC9;
}
.btn:active {
  opacity: 0.85;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(35, 39, 46, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 20px;
}
header img {
  height: 38px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #23272E;
  opacity: 0.93;
  padding: 7px 4px;
  border-radius: 6px;
  border: none;
  background: transparent;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.19s, opacity 0.19s;
}
header nav a:hover, header nav a:focus {
  background: #F0ECE5;
  color: #181B20;
  opacity: 1;
  outline: none;
}
header nav a.btn {
  margin-left: 16px !important;
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #23272E;
  cursor: pointer;
  z-index: 33;
  line-height: 1;
  transition: color 0.19s;
  margin-left: 24px;
  padding: 4px 12px;
  border-radius: 50%;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F0ECE5;
  color: #23272E;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(35,39,46,0.96);
  color: #fff;
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0.32,0.25,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  padding: 22px 24px 8px 0;
  margin: 0;
  align-self: flex-end;
  transition: color 0.17s;
  z-index: 140;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A7BBC9;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  padding: 22px 30px 22px 38px;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  opacity: 1;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.17s, color 0.15s;
  margin: 0 0 3px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22242A;
  color: #A7BBC9;
  outline: none;
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}


/* FOOTER */
footer {
  background: #23272E;
  color: #F0ECE5;
  padding: 34px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F0ECE5;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  opacity: 0.93;
  transition: color 0.17s, opacity 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #A7BBC9;
  opacity: 1;
}
footer img {
  height: 38px;
}
footer p {
  font-size: 0.98rem;
  margin: 0;
  color: #A7BBC9;
}
@media (max-width: 600px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* FAQ SECTION */
.faq-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.faq-section > div {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #D6D7D8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(120,120,128,0.07);
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-section strong {
  font-weight: 600;
  color: #23272E;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  background: #23272E;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(35,39,46,0.10);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  padding: 20px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.41s cubic-bezier(0.45,0.33,0.2,1);
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 24px;
}
.cookie-banner .btn, .cookie-banner button {
  min-width: 90px;
  padding: 10px 22px;
  font-size: 0.98rem;
  border-radius: 18px;
}
.cookie-banner .btn.primary {background:#fff;color:#23272E; border-color: #fff;}
.cookie-banner .btn.primary:hover {background:#A7BBC9;color:#23272E;}
.cookie-banner .btn.secondary {background:transparent;color:#fff; border-color:#fff;}
.cookie-banner .btn.secondary:hover {background: #181B20;color:#A7BBC9;border-color:#A7BBC9;}
.cookie-banner .btn.settings {background:#A7BBC9; color:#23272E; border:none;}
.cookie-banner .btn.settings:hover {background:#D4DEE7; color:#23272E;}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px 32px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons {
    margin: 14px 0 0 0;
    gap: 9px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  background: rgba(35,39,46,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #23272E;
  padding: 34px 26px 28px 32px;
  border-radius: 16px;
  max-width: 400px;
  min-width: 320px;
  box-shadow: 0 12px 72px rgba(20,24,31,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #A7BBC9;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #23272E;
}
.cookie-modal .cookie-categories label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 1rem;
}
.cookie-modal .cookie-categories input[type="checkbox"] {
  accent-color: #23272E;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-categories .essential {
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .btn {
  min-width: 80px;
  font-size: 0.97rem;
}

/* MISCELLANEOUS & ACCESSIBILITY */
::-webkit-input-placeholder{color: #6A6C6F;opacity:0.88;}
::-moz-placeholder{color: #6A6C6F;opacity:0.88;}
:-ms-input-placeholder{color: #6A6C6F;opacity:0.88;}
::placeholder{color: #6A6C6F;opacity:0.88;}
:focus {outline: 2px solid #A7BBC9;outline-offset:2px;}

section ul, section ol {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 20px;
}
section ul li, section ol li {
  margin-bottom: 0.65em;
}
table { width:100%; border-collapse:collapse; }
th, td { padding:10px 8px; border:1px solid #E3E5E8; }

/* RESPONSIVE FONTS & SPACING */
@media (max-width: 900px) {
  h1 {font-size: 2.1rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1.1rem;}
}
@media (max-width: 600px) {
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.23rem;}
  h3 {font-size: 1.01rem;}
  .card, .testimonial-card, .feature-item, .feature-grid > div, .faq-section > div {
    padding: 16px 10px;
  }
}

/* VISUAL HIERARCHY & SHADOWS */
.card, .feature-item, .testimonial-card, .faq-section > div {
  box-shadow: 0 1.5px 8px rgba(38,42,46,0.06);
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, .btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .btn, .cookie-modal .close-modal {
  transition: background 0.17s, color 0.17s, border 0.19s, opacity 0.16s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.21s, transform 0.18s;
}

.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px rgba(50,52,55,0.14);
  transform: translateY(-3px) scale(1.01);
}

/* INPUT ELEMENTS (when present) */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  border: 1.5px solid #A7BBC9;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%;
  color: #23272E;
  transition: border 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #23272E;
  outline: none;
}

/* UTILITIES */
.mt-0 {margin-top: 0;}
.mt-32 {margin-top: 32px;}
.mb-16 {margin-bottom: 16px;}
.mb-32 {margin-bottom: 32px;}
.gap-24 {gap: 24px;}
.text-center {text-align: center;}
.rounded {border-radius: 14px;}
.bg-light {background: #F6F7F8;}

/* HIDING / ACCESSIBILITY */
.sr-only {
  position: absolute !important;
  height: 1px; width:1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0;
}

/* END OF STYLE */
