/* --- 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F3F5F9;
  color: #233B5B;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #233B5B;
  text-decoration: none;
  transition: color 0.16s;
}
a:hover, a:focus {
  color: #62A0A8;
  text-decoration: underline;
}
ul, ol {
  margin: 1em 0 1em 1.5em;
}
li {
  margin-bottom: 0.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  box-sizing: border-box;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.14;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #233B5B;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* --- GLOBAL SPACING & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 22px;
}
.section {
  background: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 28px 0 rgba(98, 160, 168, 0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 34px;
    border-radius: 18px;
    gap: 16px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 14px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(35, 59, 91, 0.07);
  padding: 32px 26px;
  min-width: 300px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(65, 150, 184, 0.18);
  transform: translateY(-6px) scale(1.01);
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F5F9;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 59, 91, 0.07);
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #233B5B;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: bold;
  color: #62A0A8;
  margin-left: auto;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom cards and teasers */
.review-card, .comparison-card, .guide-teaser {
  background: #fff;
  border: 3px solid #62A0A8;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(35, 59, 91, 0.06);
  padding: 26px 22px;
  min-width: 260px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.review-card:hover, .comparison-card:hover, .guide-teaser:hover {
  border-color: #233B5B;
  box-shadow: 0 10px 36px rgba(35, 59, 91, 0.17);
  z-index: 2;
}

/* Tables */
.ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  font-size: 1rem;
  margin-bottom: 24px;
}
.ranking-table th, .ranking-table td {
  padding: 16px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #233B5B;
  border-bottom: 2px solid #F3F5F9;
}
.ranking-table th {
  background: #62A0A8;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  border-top: none;
}
.ranking-table tr:last-child td {
  border-bottom: none;
}

/* ---- BUTTONS ---- */
.cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  background: #233B5B;
  color: #fff;
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 16px 0 rgba(35, 59, 91, 0.09);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, color 0.17s, transform 0.18s;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.cta-btn:hover, .cookie-btn:hover, .cta-btn:focus, .cookie-btn:focus {
  background: #62A0A8;
  color: #233B5B;
  box-shadow: 0 6px 32px 0 rgba(98, 160, 168, 0.21);
  transform: translateY(-2px) scale(1.03);
}

/* -------- NAVIGATION --------- */
header {
  background: #fff;
  box-shadow: 0 6px 26px 0 rgba(35, 59, 91, 0.08);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  min-height: 73px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.logo img {
  height: 43px;
}
.main-nav, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.main-nav a {
  color: #233B5B;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.15s, color 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #62A0A8;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #62A0A8;
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  border: none;
  margin-left: auto;
  box-shadow: 0 2px 6px 0 rgba(35, 59, 91, 0.08);
  transition: background .17s, color .14s;
  z-index: 41;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #233B5B;
  color: #62A0A8;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 10px;
  }
  header .container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    font-size: 1rem;
  }
}
@media (max-width: 870px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #233B5B;
  color: #fff;
  transform: translateX(-105vw);
  transition: transform 0.32s cubic-bezier(.77,.13,.32,1.07);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #62A0A8;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  margin: 28px 18px 18px 19px;
  align-self: flex-start;
  transition: background .16s;
  cursor: pointer;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #233B5B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 28px;
  padding-left: 42px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-right: 0;
  padding: 12px 4px 12px 0;
  border-radius: 0 16px 16px 0;
  transition: background 0.14s, color .11s;
  line-height: 1.4;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #62A0A8;
  color: #233B5B;
}
@media (min-width: 871px) {
  .mobile-menu, .mobile-menu-close {
    display: none !important;
  }
}

/* --- FOOTER --- */
footer {
  background: #233B5B;
  color: #fff;
  margin-top: 36px;
  padding: 46px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.95;
  transition: opacity 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #62A0A8;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  align-items: center;
}
.footer-contact img {
  height: 1.15em;
  margin-right: 6px;
}
footer small {
  font-size: 0.95rem;
  opacity: 0.86;
  display: block;
  margin-top: 15px;
}
@media (max-width: 700px) {
  footer .container {
    padding: 0 13px;
  }
  .footer-contact {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- FILTERS, ICONS & HIGHLIGHTS ---- */
.feature-icons, .review-filters ul, .ranking-filters ul, .category-filters ul, .filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
  list-style-type: none;
  padding: 0;
}
.feature-icons img {
  height: 44px;
  width: 44px;
  background: #62A0A8;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(35, 59, 91, 0.06);
}
.ranking-highlights {
  color: #62A0A8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  background: #EFF6F9;
  border-left: 5px solid #62A0A8;
  border-radius: 7px;
  padding: 10px 15px;
  margin: 14px 0 0 0;
}

.review-filters, .ranking-filters, .category-filters, .filter-options {
  margin-top: 14px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.review-filters a, .ranking-filters a, .category-filters a, .filter-options a {
  color: #62A0A8;
  background: #EDF5F9;
  padding: 7px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.13s;
  margin-right: 8px;
  margin-bottom: 4px;
}
.review-filters a:hover, .ranking-filters a:hover, .category-filters a:hover, .filter-options a:hover {
  background: #233B5B;
  color: #fff;
}

/* Contact details block */
.contact-details {
  background: #F3F5F9;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.07rem;
  box-shadow: 0 2px 11px 0 rgba(35, 59, 91, 0.05);
}
.contact-details img {
  height: 1.1em;
  margin-right: 7px;
  vertical-align: middle;
}

/* --- RESPONSIVE FLEX LAYOUTS --- */
@media (max-width: 1000px) {
  .content-grid {
    gap: 12px;
  }
  .card-container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .content-grid, .card-container, .feature-icons, .footer-contact {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .card {
    min-width: 100%;
    padding: 18px 10px;
    border-radius: 12px;
  }
}

/* ---- MICRO-INTERACTIONS & TRANSITIONS ---- */
.card, .review-card, .guide-teaser, .comparison-card, .cta-btn, .cookie-btn, .main-nav a, .review-filters a, .category-filters a, .filter-options a {
  transition: box-shadow 0.17s, background 0.17s, color 0.15s, border-color 0.16s, transform 0.18s;
}

/* ---- FOCUS RINGS ---- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #62A0A8;
  outline-offset: 2px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #233B5B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9001;
  padding: 18px 24px;
  min-height: 70px;
  box-shadow: 0 -2px 22px 0 rgba(35, 59, 91, 0.17);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  animation: cookieBannerIn 0.7s cubic-bezier(.85,0,.3,1) 1;
}
.cookie-banner p {
  margin: 0 0 0 4px;
  color: white;
}
.cookie-banner a {
  color: white;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 9px 14px 12px;
    font-size: 0.93rem;
  }
}
.cookie-banner .cookie-btn {
  margin: 0 8px 0 0;
  min-width: 110px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  box-shadow: 0 2px 6px 0 rgba(62,150,168,0.1);
}
.cookie-banner .cookie-btn.settings {
  background: #62A0A8;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #fff;
  color: #62A0A8;
}

@keyframes cookieBannerIn {
  0% { transform: translateY(120%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35, 59, 91, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.7,.12,.26,1.1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #233B5B;
  border-radius: 22px;
  width: 98%;
  max-width: 480px;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 9px 44px 0 rgba(35, 59, 91, 0.19);
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.55s cubic-bezier(.73,0,.33,1);
}
@keyframes cookieModalIn {
  0% { transform: translateY(80px) scale(.90); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.34rem;
  font-weight: bold;
  margin-bottom: 11px;
  color: #233B5B;
}
.cookie-modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.cookie-switch label {
  font-size: 1.01rem;
  font-weight: 500;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #62A0A8;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #233B5B;
  color: #fff;
}

/* Switch style for cookie settings */
.cookie-toggle {
  width: 38px;
  height: 20px;
  background: #d8e7eb;
  border-radius: 18px;
  position: relative;
  transition: background 0.15s;
  margin-right: 7px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle[data-enabled="true"], .cookie-toggle input:checked + .cookie-toggle {
  background: #62A0A8;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.13s;
  box-shadow: 0 1px 6px rgba(35, 59, 91, 0.12);
}
.cookie-toggle[data-enabled="true"]::after, .cookie-toggle input:checked + .cookie-toggle::after {
  left: 19px;
}

.cookie-modal .cookie-btn {
  font-size: 1.07rem;
  padding: 13px 26px;
  margin-top: 9px;
  border-radius: 20px;
}

/* ---- FORMS (future-proof) ---- */
input, textarea, select {
  background: #F3F5F9;
  color: #233B5B;
  border: 2px solid #62A0A8;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 1.07rem;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #233B5B;
}

/* ---- UTILITY CLASSES ---- */
.hide {
  display: none !important;
}
.mt-4 { margin-top: 4px; }
.mb-4 { margin-bottom: 4px; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.align-center { text-align: center; }

/* ---- GEOMETRIC SHAPES (visual accents) ---- */
.geoshape {
  display: inline-block;
  width: 55px;
  height: 7px;
  background: #62A0A8;
  border-radius: 4px;
  margin: 0 0 18px 0;
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 9px;
  background: #eff6f9;
}
::-webkit-scrollbar-thumb {
  background: #62A0A8;
  border-radius: 6px;
}

/* ---- PRINT OPTIMIZATION ---- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
