/* 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;
  height: 100%;
  background: #151d29;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f1f5fb;
  background: #101525;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
*:focus {
  outline: 2px solid #FFB21A;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #FFB21A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFB21A;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.25rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px #22589A55;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  color: #FFB21A;
}
h3 {
  font-size: 1.25rem;
  color: #f1f5fb;
}

p {
  margin-bottom: 16px;
}

/* BRAND COLORS */
:root {
  --color-primary: #22589A;
  --color-secondary: #F1F5FB;
  --color-secondary-dark: #101525;
  --color-bg-dark: #151d29;
  --color-accent: #FFB21A;
  --color-accent-strong: #FF9800;
  --color-neon-blue: #1CCAFF;
  --color-neon-blue-bg: #192f44;
  --color-card-bg: #161d29;
  --radius: 16px;
  --shadow-high: 0 6px 30px #22589A44, 0 1.5px 8px #10152555;
  --shadow-card: 0 2px 16px #22589A22, 0 1.5px 4px #10152577;
  --shadow-btn: 0 2px 8px #FFB21A22;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 4vw;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(125deg, #151d29 80%, #22589A 100%);
  padding: 70px 0 54px 0;
  position: relative;
  box-shadow: 0 8px 36px #22589A33;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 22px;
}
.hero p {
  font-size: 1.16rem;
  max-width: 650px;
  color: #d6e6ff;
}
.hero .btn-primary {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 26px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* FEATURE GRID FOR INDEX */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 0;
}
.feature-grid li {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 18px 24px 18px;
  text-align: left;
  width: calc(50% - 14px);
  min-width: 210px;
  flex: 1 1 205px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #21344e66;
  transition: transform 0.2s, box-shadow 0.18s;
}
.feature-grid li:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 8px 38px #1CCAFF33, var(--shadow-card);
  border: 1.5px solid var(--color-neon-blue);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 8px;
  filter: brightness(1.1) drop-shadow(0 0 5px #1CCAFF88);
}
.feature-grid h3 {
  color: #FFF;
  font-size: 1.15rem;
  margin-bottom: 0px;
}
.feature-grid p {
  color: #b6c8e3;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li {
    width: 100%;
    padding: 22px 10px 18px 13px;
  }
}

/* CARDS & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #193660;
  border-radius: var(--radius);
  box-shadow: 0 3px 21px #22589A17;
  padding: 20px 24px 18px 24px;
  margin-bottom: 20px;
  border-left: 3.5px solid var(--color-accent);
  transition: border 0.14s, box-shadow 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 7px 32px #22589A22;
}
.testimonial-card blockquote {
  color: #123055;
  font-size: 1.09rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-card cite {
  font-size: 1rem;
  font-style: normal;
  color: #2B476E;
}
.star-rating {
  font-size: 1.12rem;
  color: #FFB21A;
  letter-spacing: 1.2px;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 15px 11px 14px 13px;
    font-size: 15px;
  }
}

/* FEATURE ITEM (FAQ, PROCES, USPS) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 19px 0 16px 0;
  list-style-position: inside;
}

/* FAQ ACCORDION */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
}
.faq-accordion-list dt {
  font-weight: 700;
  font-size: 1.03rem;
  color: #FFB21A;
  margin-bottom: 7px;
  cursor: pointer;
  padding: 4px 0;
  border-left: 2px solid var(--color-primary);
  padding-left: 10px;
  transition: background 0.18s;
}
.faq-accordion-list dd {
  margin-bottom: 0;
  font-size: 1rem;
  padding-left: 15px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  border-radius: 32px;
  padding: 13px 34px;
  box-shadow: var(--shadow-btn);
  border: 0;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, transform 0.15s;
  text-shadow: 0 1.5px 6px #08304b66;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: #151d29;
  box-shadow: 0 0 0 3px var(--color-accent-strong), 0 6px 18px #FFB21A55;
  outline: none;
  transform: scale(1.03);
}
.btn-secondary {
  display: inline-block;
  background: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 30px;
  transition: all 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
}
.btn-accent {
  background: var(--color-accent);
  color: #212a40;
  border: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 28px;
  border-radius: 42px;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.04);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #151d29;
  padding: 0;
  border-bottom: 2.5px solid #22589A33;
  box-shadow: 0 4px 12px #161d2932;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 30;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin-left: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 3px 8px #1ccaff44);
  margin-right: 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  margin-left: auto;
}
.main-nav a {
  color: #f1f5fb;
  padding: 7px 0;
  border-radius: 5px;
  transition: color 0.14s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  background: #12305566;
}
.main-nav .btn-primary {
  margin-left: 8px;
  margin-bottom: 0 !important;
  font-size: 1.02rem;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 6px 12px;
    padding-right: 10px;
    font-size: 0.93rem;
  }
}
@media (max-width: 820px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  .logo {
    margin-left: 7px;
  }
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  z-index: 36;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}
@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 94vw;
  max-width: 360px;
  background: #101525fa;
  z-index: 50;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.6,.3,.6,1.1);
  box-shadow: 0 0 27px #1CCAFF22;
  padding: 22px 18px 0 18px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(.12,1,.7,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.8rem;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 16px;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  margin-top: 13px;
}
.mobile-nav a {
  color: #F1F5FB;
  padding: 9px 8px;
  border-radius: 6px;
  background: none;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #12305544;
  color: var(--color-accent);
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & GENERAL PAGE ELEMENTS */
main {
  width: 100%;
  margin-top: 0;
  background: none;
  display: block;
}
.text-section {
  padding: 6px 0 2px 0;
  color: #b2c4dc;
}
dl, dd {
  color: #e1e7f4;
  font-size: 1rem;
}
dt {
  font-weight: bold;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.news-list article {
  background: #1a2333;
  border-radius: 13px;
  box-shadow: 0 1.5px 13px #1CCAFF22;
  padding: 18px 18px 14px 18px;
  color: #d6e6ff;
  position: relative;
  border-left: 3.5px solid var(--color-accent);
  transition: border 0.14s, box-shadow 0.14s;
}
.news-list article:hover {
  border-left: 3.5px solid var(--color-neon-blue);
  box-shadow: 0 8px 32px #1CCAFF22;
}
.news-list h2 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.news-list span {
  font-size: 0.98rem;
  color: #FFB21A;
}

.news-categories {
  margin: 14px 0 8px 0;
  color: #b2c4dc;
}
.news-categories a {
  color: #FFB21A;
  margin-right: 8px;
  font-size: 1.01rem;
}
.news-categories a:hover {
  color: #1CCAFF;
}
.latest-updates {
  font-size: 1.01rem;
  color: #b2c4dc;
}

.comparison-results-table {
  margin: 29px auto 0 auto;
  max-width: 100%;
  border-radius: 10px;
  background: #151d29;
  padding: 20px 16px;
  color: #b2c4dc;
  box-shadow: 0 3px 19px #22589A18;
}
.sort-filter-options {
  color: #b2c4dc;
  font-size: 0.98rem;
  margin: 13px 0 16px 0;
}

/* MAP EMBED */
.map-embed {
  width: 100%;
  max-width: 480px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2.5px 16px #1ccaff33;
  margin-top: 10px;
}

/* FOOTER */
footer {
  margin-top: 70px;
  background: #151d29;
  border-top: 3px solid #22589A33;
  box-shadow: 0 -4px 20px #0d111a61;
  color: #b2c4dc;
  padding: 34px 0 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 15px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.footer-nav a {
  color: #FFB21A;
  transition: color 0.15s;
  border-radius: 5px;
  padding: 2px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1CCAFF;
  background: #12305544;
}
footer address {
  font-style: normal;
  color: #b2c4dc;
  font-size: 1.02rem;
  margin: 0 0 6px 0;
  display: block;
  line-height: 1.8;
}
.footer-logo {
  margin: 0 auto 8px auto;
  display: flex;
  justify-content: center;
}
.footer-logo img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 1.5px 8px #1ccaff44);
}
footer small {
  color: #8faacf;
  font-size: 0.97rem;
}
@media (max-width: 580px) {
  footer {
    padding: 25px 0 17px 0;
    font-size: 0.97rem;
  }
  .footer-logo img {
    height: 26px;
  }
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 968px) {
  h1 {
    font-size: 1.64rem;
  }
  h2 {
    font-size: 1.24rem;
  }
}
@media (max-width: 568px) {
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.04rem;
  }
  .btn-primary {
    font-size: 0.96rem;
    padding: 11px 20px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-accent, .btn-secondary {
  transition: background 0.18s, color 0.14s, box-shadow 0.16s, transform 0.11s;
}
.card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 38px #1CCAFF33, var(--shadow-card);
  transform: translateY(-4px) scale(1.016);
}

/* ======================= COOKIE CONSENT BANNER & MODAL ======================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: #192f44fa;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 22px 24px;
  box-shadow: 0 -3px 22px #1CCAFF33;
  font-size: 1.04rem;
  border-top: 3px solid var(--color-accent);
  gap: 20px;
}
.cookie-banner__message {
  flex: 1 1 68%;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner__btn {
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  padding: 8px 20px;
  margin-bottom: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #22589A33;
  transition: background 0.16s, color 0.13s, box-shadow 0.1s, transform 0.08s;
}
.cookie-banner__btn.accept {
  background-color: var(--color-accent);
  color: #151d29;
  font-weight: 700;
}
.cookie-banner__btn.reject {
  background-color: #22589A;
  color: #fff;
  font-weight: 500;
}
.cookie-banner__btn.settings {
  background: none;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 500;
}
.cookie-banner__btn:hover, .cookie-banner__btn:active {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 1px 6px #FFB21A33;
  transform: scale(1.06);
}
.cookie-banner__btn.settings:hover, .cookie-banner__btn.settings:active {
  background: var(--color-accent);
  color: #151d29;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 7px 14px 7px;
    gap: 12px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1220;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #151d2977;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #182540;
  color: #fff;
  padding: 38px 32px 30px 34px;
  border-radius: 23px;
  box-shadow: 0 12px 75px #1CCAFF55;
  min-width: 320px;
  max-width: 95vw;
  max-height: 84vh;
  overflow-y: auto;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #fff;
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.34rem;
  margin-bottom: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 15px;
  font-size: 1.08rem;
}
.cookie-modal__toggle {
  margin-left: auto;
}
.cookie-switch {
  width: 46px;
  height: 22px;
  background: var(--color-bg-dark);
  border-radius: 15px;
  border: 1.2px solid #22589A77;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  transition: left 0.15s, background 0.15s;
}
.cookie-switch input:checked + .slider {
  left: 24px;
  background-color: var(--color-accent);
}
.cookie-modal__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 580px) {
  .cookie-modal {
    padding: 22px 7vw 20px 7vw;
    min-width: 0;
  }
  .cookie-modal__actions {
    flex-direction: column;
    gap: 11px;
  }
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 12px;
  background: #111826;
}
::-webkit-scrollbar-thumb {
  background: #232e45;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #254478;
}

blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  margin: 0 0 1rem 0;
}

hr {
  border: none;
  border-bottom: 1.4px solid #17335D44;
  margin: 20px 0;
}

/* VISUAL EFFECTS: NEON/FUTURISTIC */
.btn-primary, .btn-accent {
  box-shadow: 0 0 12px #FFB21A55, 0 1.5px 8px #1CCAFF55;
}
.feature-grid li, .card, .testimonial-card, .news-list article {
  border-radius: var(--radius);
  box-shadow: 0 2px 28px #1CCAFF15, 0 1.5px 8px #22589A13;
}
/* Neon accent ring */
.feature-grid li:hover, .card:hover, .testimonial-card:focus-within {
  box-shadow: 0 0 0 3px #1CCAFF55, 0 10px 30px #22589A22;
  border-color: #1CCAFF;
}

/* Disambiguating classes for spacing consistency */
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}
.section + .section {
  margin-top: 0;
}

/* ======================== END: ILLUMESPHERE STYLE.CSS ======================= */
