/* 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,main,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section {
  display: block;
}
body {
  line-height: 1.4;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FB;
  color: #133156;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #133156;
  transition: color 0.2s;
}
ul,ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #133156;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, address, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #133156;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.95rem;
  color: #546788;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
}

/* COLOR PALLETE & BRAND */
:root {
  --primary: #133156;
  --secondary: #36A6A6;
  --accent: #F6F8FB;
  --white: #fff;
  --black: #061225;
  --grey: #e8ecf3;
  --shadow: rgba(19,49,86,0.09);
  --info: #259DFF;
  --danger: #EF365E;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* SECTIONS */
section,.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: transparent;
  position: relative;
}
.section:last-child {
  margin-bottom: 0;
}
.cta-section {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 6px 32px var(--shadow);
  margin-bottom: 32px !important;
}
.cta-section h2, .cta-section a {
  color: var(--white);
}

@media (max-width: 768px) {
  section, .section {
    padding: 24px 6px;
    margin-bottom: 36px !important;
  }
}

/* FLEX PATTERNS */
.card-container, .features-grid, .values-grid, .operator-list, .guide-list, .news-preview-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 18px var(--shadow);
  transition: transform 0.15s, box-shadow 0.2s;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.card:hover, .operator-card:hover, .article-preview:hover, .news-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 32px var(--shadow);
}
.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;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 18px var(--shadow);
  border-left: 7px solid var(--secondary);
  max-width: 600px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px var(--shadow);
  transform: translateY(-4px);
}

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

@media (max-width: 992px) {
  .card-container,.features-grid,.values-grid,.operator-list,.guide-list,.news-preview-grid,.team-list {
    gap: 16px;
  }
  .card { padding: 22px 14px; }
}
@media (max-width: 768px) {
  .card-container, .features-grid, .values-grid, .operator-list, .guide-list, .news-preview-grid, .team-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* HEADER/NAV */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0 18px 0;
  justify-content: flex-start;
  font-family: 'Montserrat',Arial,sans-serif;
}
header nav > a {
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 15px;
  border-radius: 10px;
  color: var(--primary);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav > a.cta-primary {
  background: var(--secondary);
  color: var(--white);
  margin-left: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.07rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.18s, box-shadow 0.19s, transform 0.14s;
}
header nav > a.cta-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}
header nav > a:not(.cta-primary):hover {
  background: var(--accent);
  color: var(--secondary);
}
header nav img {
  height: 34px;
  width: auto;
  margin-right: 12px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 50%;
  padding: 9px 15px;
  margin-left: auto;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  z-index: 220;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 22px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.45, 0, 0.56, 1);
  box-shadow: -4px 0 30px var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--danger);
  color: var(--white);
}
.mobile-nav {
  margin: 50px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav a {
  padding: 15px 32px;
  font-size: 1.15rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  color: var(--primary);
  border-radius: 12px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--white);
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* MAIN CTA BUTTONS */
.cta-primary {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: 22px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  display: inline-block;
  box-shadow: 0 2px 18px var(--shadow);
  border: none;
  margin: 18px 0 0 0;
  letter-spacing: 1px;
  transition: background 0.24s, color 0.18s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: 0 6px 32px var(--shadow);
  transform: translateY(-2px) scale(1.05);
}

.compare-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  background: var(--accent);
  border-radius: 6px;
  padding: 6px 18px;
  transition: background 0.13s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 1px 5px var(--shadow);
  margin-left: 0;
  margin-right: 0;
}
.compare-link:hover {
  background: var(--secondary);
  color: var(--white);
}

/* FEATURES, STEPS, FAQ, ETC. */
.features-grid, .values-grid {
  gap: 28px;
}
.features-grid li, .values-grid li {
  flex: 1 1 230px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  min-height: 210px;
  transition: box-shadow .2s, transform .2s;
}
.features-grid li:hover, .values-grid li:hover {
  box-shadow: 0 4px 18px var(--shadow);
  transform: translateY(-4px) scale(1.03);
}
.features-grid img, .values-grid img {
  width: 39px;
  margin-bottom: 11px;
  aspect-ratio: 1 / 1;
}
@media (max-width: 768px) {
  .features-grid li, .values-grid li {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
    min-height: 0;
  }
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin: 12px 0 24px 0;
}
.steps-list li {
  background: var(--white);
  border-radius: 14px;
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding: 20px 16px;
  box-shadow: 0 2px 10px var(--shadow);
  font-size: 1rem;
}
.steps-list img {
  width: 38px;
}
@media (max-width: 900px) {
  .steps-list {
    gap: 14px;
  }
  .steps-list li {
    min-width: 110px;
    padding: 14px 10px;
  }
}
@media (max-width: 650px) {
  .steps-list {
    flex-direction: column;
    gap: 12px;
  }
  .steps-list li {
    width: 100%;
    min-width: 0;
  }
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  flex: 1 1 340px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 26px 20px;
  min-width: 220px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .faq-list {
    flex-direction: column;
    gap: 8px;
  }
  .faq-list > div {
    padding: 15px 10px;
    min-width: 0;
  }
}

/* OPERATOR LIST */
.operator-list {
  gap: 24px;
  margin-bottom: 10px;
}
.operator-card {
  flex: 1 1 230px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  min-height: 185px;
  transition: box-shadow .2s, transform .2s;
  gap: 10px;
}
.operator-card img {
  width: 39px;
  margin-bottom: 11px;
}
.operator-card h3 {
  margin-bottom: 8px;
}
.operator-card a {
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
  color: var(--secondary);
  align-self: flex-start;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--accent);
  transition: background .17s, color .18s;
}
.operator-card a:hover {
  background: var(--secondary);
  color: var(--white);
}
@media (max-width: 768px) {
  .operator-card {
    width: 100%;
    padding: 13px 7px;
    min-height: 120px;
  }
}

/* NEWS GRID */
.news-preview-grid {
  gap: 24px;
  margin-top: 24px;
}
.news-item {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  min-height: 140px;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.news-item a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  align-self: flex-start;
}
.news-item a:hover {
  text-decoration: underline;
  color: var(--primary);
}
@media (max-width: 768px) {
  .news-item { padding: 14px 8px; min-width: 0; }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.news-list li span {
  color: var(--secondary);
  font-weight: 600;
  margin-right: 16px;
}
.news-list li a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.18s;
}
.news-list li a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ARTICLES / GUIDES */
.guide-list, .team-list {
  gap: 24px;
}
.article-preview, .team-list li {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
  min-height: 120px;
  transition: box-shadow .2s, transform .2s;
}
.article-preview a {
  color: var(--secondary);
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}
.article-preview a:hover {
  text-decoration: underline;
  color: var(--primary);
}
.team-list img {
  width: 38px;
  margin-bottom: 10px;
}

/* CONTACT */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-info-list img {
  width: 20px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 30px 0;
}
.map-embed img { width: 32px; }

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 32px 0 24px 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
  overflow: hidden;
}
.comparison-table thead tr {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 9px;
  text-align: left;
}
.comparison-table th { color: var(--white); border-bottom: 2px solid var(--primary); }
.comparison-table tr { border-bottom: 1px solid #e8ecf3; }
.comparison-table tr:last-child { border-bottom: none; }
.comparison-table td {
  font-family: 'Roboto',Arial,sans-serif;
  color: var(--primary);
  font-size: 1rem;
}
@media (max-width: 992px) {
  .comparison-table,
  .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr {
    display: block;
  }
  .comparison-table thead { display: none; }
  .comparison-table tr {
    background: var(--white);
    border-radius: 13px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px var(--shadow);
    padding: 9px 6px;
  }
  .comparison-table td {
    padding: 9px 6px;
    text-align: left;
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
  }
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
.filter-options li {
  background: var(--accent);
  border-radius: 7px;
  padding: 5px 15px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary);
}
@media (max-width: 650px) {
  .filter-options ul {
    flex-direction: column;
    gap: 6px;
  }
  .comparison-table tr { margin-bottom: 14px; }
}

/* COMPARISON TIP */
.comparison-hint {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--accent);
  border-left: 7px solid var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 20px;
}
.comparison-hint img {
  width: 44px;
  margin-right: 10px;
}
.comparison-hint h2 {
  margin-bottom: 7px;
}
@media (max-width: 700px) {
  .comparison-hint {
    flex-direction: column;
    gap: 12px;
    padding: 16px 7px;
  }
  .comparison-hint img {
    width: 36px;
  }
}

/* FOOTER */
footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 -1px 12px var(--shadow);
  padding: 38px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 40px;
}
footer nav {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
footer nav a {
  font-size: .97rem;
  font-weight: 500;
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
footer nav a:hover {
  background: var(--secondary);
  color: var(--white);
}
footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-style: normal;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
}
footer address > div {
  display: flex;
  align-items: center;
  gap: 7px;
}
footer address img {
  width: 20px;
}
footer small {
  color: #7890ab;
  margin-top: 12px;
  font-size: .97rem;
  letter-spacing: .7px;
}
@media (max-width: 700px) {
  footer nav { flex-direction: column; gap: 7px; margin-bottom: 7px; }
  footer address { flex-direction: column; gap: 7px; font-size: 0.93rem; }
  footer { padding: 15px 0 4px 0; margin-top: 20px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .operator-card, .article-preview, .news-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .operator-card:hover, .article-preview:hover, .news-item:hover, .testimonial-card:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 36px var(--shadow);
}
button:active, a:active {
  transform: scale(0.98);
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 16px var(--shadow);
  border-left: 6px solid var(--secondary);
  min-width: 230px;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--primary);
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
}
.testimonial-card div {
  display: flex;
  gap: 4px;
  align-items: center;
}
.testimonial-card img {
  width: 21px;
  height: 21px;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 14px 6px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  z-index: 20000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 22px 18px 20px 22px;
  font-size: 1.1rem;
  box-shadow: 0 -4px 20px var(--shadow);
  transition: transform 0.32s cubic-bezier(0.3, 1.07, 0.68, 1);
  transform: translateY(0);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.hide {
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 350px;
  min-width: 180px;
  font-size: .98rem;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, box-shadow .14s, transform 0.09s;
  border: none;
  box-shadow: 0 2px 8px var(--shadow);
  margin-right: 2px;
  margin-bottom: 2px;
}
.cookie-btn:active,
.cookie-btn:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--danger);
}
.cookie-btn.reject:hover {
  background: #d20b3b;
}
.cookie-btn.settings {
  background: var(--info);
}
.cookie-btn.settings:hover {
  background: #007cd6;
}
.cookie-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: .98rem;
    padding: 14px 6px 12px 10px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 49, 86, 0.73);
  z-index: 21000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  width: 95vw;
  max-width: 440px;
  padding: 36px 28px 30px 28px;
  box-shadow: 0 8px 48px var(--shadow);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: fadeup 0.37s cubic-bezier(0.32,1.06,0.5,1);
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent);
  border-radius: 9px;
  padding: 13px 22px;
  font-size: 1.06rem;
  color: var(--primary);
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: var(--grey);
  position: relative;
  transition: background 0.19s;
  margin-left: 20px;
  border: none;
  outline: none;
}
.cookie-category .toggle[data-active='true'] {
  background: var(--secondary);
}
.cookie-category .toggle-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 5px var(--shadow);
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s;
}
.cookie-category .toggle[data-active='true'] .toggle-thumb {
  left: 17px;
}
.cookie-category[data-essential='true'] .toggle {
  opacity: 0.64;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  font-size: 1.3rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: var(--danger); color: var(--white); }
@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 7px 11px 10px;
    width: 98vw;
    max-width: 98vw;
  }
  .cookie-modal h3 { font-size: 1.05rem; }
  .cookie-category { padding: 11px 7px; }
}

/* OVERRIDES FOR MODALS, HIDDENS */
[hidden]{ display: none !important; }

/* MISC */
::-webkit-input-placeholder { color:#7c879b; }
::-moz-placeholder { color:#7c879b; }
:-ms-input-placeholder { color:#7c879b; }
::placeholder { color:#7c879b; }
.focus-visible, .cookie-btn:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* SCROLLBAR MODERN */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}
body {
  scrollbar-color: var(--secondary) var(--accent);
  scrollbar-width: thin;
}

/* GEOMETRIC DECORATION / STRONG UI */
.card, .operator-card, .news-item, .article-preview, .values-grid li, .guide-list > *, .faq-list > div, .features-grid li {
  border-radius: 20px;
  box-shadow: 0 2px 18px var(--shadow);
}

/* --- HIGH CONTRAST IN TESTIMONIALS & CARDS --- */
.testimonial-card, .news-item, .operator-card, .article-preview, .guide-list > * {
  background: #fff;
  color: #133156;
  border: none;
}

/* ACCESSIBILITY */
@media (prefers-contrast: more) {
  .cta-primary, .compare-link, .cookie-btn {
    color: #fff !important;
    background: #1F2329 !important;
  }
}
