/* --- 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%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #111727;
  color: #f4f9fd;
  font-family: 'Open Sans', Arial, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
input, textarea {
  background: none;
  border: none;
  outline: none;
}

/* --- BRAND COLORS & VARIABLES --- */
:root {
  --primary: #23427C;
  --secondary: #3ACBB3;
  --accent: #F4F9FD;
  --background-dark: #111727;
  --background-light: #222B41;
  --neon-green: #24ffe0;
  --neon-blue: #2F9DFE;
  --error: #F86161;
  --success: #57DC90;
  --shadow-card: 0 4px 24px 0 rgba(36,255,224,0.12), 0 2px 8px 0 rgba(35,66,124,0.13);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: var(--accent);
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, label {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 13px;
  color: var(--accent);
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--secondary);
}


/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--background-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(36,255,224,0.19), 0 4px 16px 0 rgba(47,157,254,0.18);
  border: 1.5px solid var(--secondary);
}
.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 {
  background: #f4f9fd;
  color: #1b2646;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--secondary);
  position: relative;
}
.testimonial-card strong {
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #151B2E;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 111;
  box-shadow: 0 2px 18px rgba(35,66,124,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 10px 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: var(--accent);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.22s;
}
header nav a:hover, header nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--neon-blue));
  color: #141d31;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(58,203,179,0.24);
  border: none;
  border-radius: 30px;
  padding: 10px 36px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background 0.22s, box-shadow 0.22s, color 0.14s;
  outline: none;
  cursor: pointer;
  margin-left: 12px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--neon-green), var(--secondary));
  color: var(--primary);
  box-shadow: 0 4px 24px 0 rgba(36,255,224,0.19);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--secondary);
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--neon-green);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #181d2e;
  z-index: 888;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.5,.8,.4,1), visibility 0s 0.4s;
  visibility: hidden;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.34s cubic-bezier(.5,1.3,.5,1), visibility 0s;
  box-shadow: -6px 0 30px 0 rgba(58,203,179,0.16);
}
.mobile-menu-close {
  margin: 24px;
  margin-bottom: 4px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 32px;
}
.mobile-nav a {
  color: var(--neon-green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color 0.18s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* --- HERO + CTA --- */
.hero, .product-hero {
  background: linear-gradient(90deg, #23427c 60%, #181d2e 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 0 0;
}
.hero .content-wrapper, .product-hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.cta {
  background: linear-gradient(90deg, #151B2E 70%, #2842A0 130%);
  border-radius: var(--radius);
  padding: 40px 0;
  margin: 40px 0 0 0;
  box-shadow: 0 6px 32px 0 rgba(35,66,124,0.18);
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
}

/* --- FEATURES & BENEFITS --- */
.features ul, .benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 16px;
  align-items: stretch;
  justify-content: flex-start;
}
.features li, .benefits li {
  background: var(--background-light);
  border: 1.5px solid #23325d;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 21px 21px 21px;
  flex: 1 1 230px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  transition: border 0.2s, box-shadow 0.18s, background 0.15s;
}
.features li:hover, .benefits li:hover {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 6px 32px 0 rgba(58,203,179,0.19);
  background: #222d41;
}
.features li img, .benefits li img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 5px var(--neon-green));
}

.benefits li p {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.1rem;
}

/* --- SERVICES, WHY CHOOSE US --- */
.services ul, .whychoose ul, .services-preview ul, .mission ul, .trust ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 18px 0 0 0;
}
.services ul li, .whychoose ul li, .services-preview ul li, .mission ul li, .trust ul li {
  background: var(--background-light);
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  font-size: 1.06rem;
  font-weight: 500;
}
.services ul li strong {
  color: var(--secondary);
  font-weight: 700;
}
.whychoose ul li strong, .trust ul li strong {
  color: var(--neon-green);
  font-weight: 700;
}
.services ul li span {
  display: block;
  color: #b3e1da;
  font-size: 0.98rem;
  margin: 8px 0 0 0;
}
.services-preview a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 18px;
  display: inline-block;
  transition: color 0.14s;
}
.services-preview a:hover {
  text-decoration: underline;
  color: var(--neon-green);
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(90deg, #2F9DFE 20%, #24ffe0 100%);
  padding: 36px 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  background: #f4f9fd;
  color: #1b2646;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px 0 rgba(35,66,124,0.10);
  margin-bottom: 24px;
  border-left: 6px solid var(--secondary);
}
.testimonial-card p {
  color: #1b2646;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #FFD500;
  font-size: 1.15rem;
  letter-spacing: 0.075em;
  margin-top: 3px;
  font-family: var(--font-display);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- BLOG: POSTS & CATEGORIES --- */
.featured-posts .post-card {
  background: var(--background-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
  padding: 24px 22px;
  transition: box-shadow 0.17s, border 0.17s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-posts .post-card:hover {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 6px 32px 0 rgba(58,203,179,0.12);
}
.featured-posts .post-card h3 {
  color: var(--secondary);
  font-size: 1.22rem;
}
.featured-posts .post-card a {
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.14s;
}
.featured-posts .post-card a:hover {
  color: var(--secondary);
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.categories li {
  background: #222b41;
  color: var(--secondary);
  border-radius: 16px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(58,203,179,0.12);
  margin-bottom: 8px;
}

/* --- FORMS & INPUTS --- */
input[type="email"], input, textarea {
  width: 100%;
  min-width: 140px;
  border-radius: 10px;
  background: #181d2e;
  color: var(--accent);
  border: 1.5px solid #2F9DFE;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  transition: border 0.18s;
  outline: none;
}
input[type="email"]:focus, textarea:focus {
  border: 1.5px solid var(--secondary);
  background: #1c2636;
}
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--secondary);
  font-family: var(--font-display);
}
form button, button[type="submit"] {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--neon-blue) 100%);
  color: #141d31;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 10px 32px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.19s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(42,203,179,0.13);
}
form button:hover, form button:focus {
  background: linear-gradient(90deg, var(--neon-green), var(--secondary));
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(58,203,179,0.14);
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--background-light);
  border-radius: var(--radius);
  margin-top: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
thead {
  background: #2842A0;
}
th, td {
  padding: 16px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #283355;
}
th {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* --- FOOTER --- */
footer {
  background: #181d2e;
  color: var(--accent);
  padding: 36px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0 2px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--neon-green);
  text-decoration: underline;
}
footer .contact-info p {
  color: var(--accent);
  font-size: 0.97rem;
  margin-bottom: 0;
}
footer .social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
footer .social-links img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px var(--neon-blue));
  transition: filter 0.15s;
  cursor: pointer;
}
footer .social-links img:hover {
  filter: drop-shadow(0 0 16px var(--neon-green));
}

/* --- TEXT SECTIONS --- */
.text-section {
  background: #222b41;
  padding: 22px 18px;
  border-radius: 16px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.07rem;
  line-height: 1.6;
  font-family: var(--font-body);
}
.text-section h3 {
  color: var(--secondary);
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- SECTIONS GENERAL --- */
section {
  width: 100%;
  margin-bottom: 60px;
}
section:last-child {
  margin-bottom: 0;
}

/* --- SPECIAL CLASSES --- */
.map .text-section, .contact-details .text-section {
  background: var(--background-light);
}
.privacy-policy .text-section, .gdpr .text-section, .cookies-policy .text-section, .terms-of-use .text-section {
  background: #171e33;
  color: #eaf5fa;
  border: 1px solid #25417b;
}

/* --- THANK YOU PAGE --- */
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you h1 {
  color: var(--secondary);
  margin-bottom: 18px;
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  background: #152045;
  color: var(--accent);
  box-shadow: 0 -2px 24px rgba(42,203,179,0.15);
  padding: 18px 8px 18px 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.01rem;
  transition: transform 0.28s, opacity 0.26s;
}
.cookie-banner button {
  margin-left: 16px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner .cookie-btn {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--neon-blue) 100%);
  color: #141d31;
  border: none;
  border-radius: 20px;
  padding: 7px 21px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(58,203,179,0.11);
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
}
.cookie-banner .cookie-btn:hover {
  background: linear-gradient(90deg, var(--neon-green), var(--secondary));
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 120%);
  max-width: 420px;
  width: 96vw;
  background: #19243a;
  border-radius: 20px 20px 0 0;
  z-index: 1400;
  box-shadow: 0 -6px 32px 0 rgba(35,66,124,0.17);
  padding: 32px 26px 24px 26px;
  color: var(--accent);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.4,1.2,.4,1.09), opacity 0.3s, visibility 0s 0.4s;
}
.cookie-modal.open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.40s cubic-bezier(.2,1.34,.5,1), opacity 0.28s, visibility 0s;
}
.cookie-modal h2 {
  font-size: 1.30rem;
  color: var(--secondary);
  margin-bottom: 17px;
}
.cookie-modal ul {
  margin-bottom: 19px;
  font-size: 1.06rem;
}
.cookie-modal li {
  margin-bottom: 12px;
  line-height: 1.5;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  padding: 7px 21px;
}
.cookie-modal .cookie-btn.reject {
  background: var(--background-light);
  color: var(--accent);
  box-shadow: none;
  border: 1.5px solid var(--error);
}
.cookie-modal .cookie-btn.reject:hover {
  color: #fff;
  background: #F86161;
  border: 1.5px solid var(--error);
}
.cookie-modal .cookie-btn.accept {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--neon-blue) 100%);
  color: #141d31;
}
.cookie-modal .cookie-btn.accept:hover {
  background: linear-gradient(90deg, var(--neon-green), var(--secondary));
  color: var(--primary);
}
.cookie-modal .cookie-btn.settings {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}
.cookie-modal .cookie-btn.settings:hover {
  background: var(--secondary);
  color: #181d2e;
}
/* Essential cookies style (locked) */
.cookie-toggle .essential {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.02rem;
}
.cookie-toggle input[disabled] {
  opacity: 0.54;
}

/* --- RESPONSIVE/MOBILE LAYOUT --- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .features ul, .benefits ul {
    gap: 14px;
  }
  .section {
    padding: 28px 6vw;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 8px 10px;
  }
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo {
    height: 50px;
    max-width: 140px;
  }
  .hero, .product-hero {
    min-height: 160px;
    padding: 28px 0 0 0;
  }
  .content-wrapper {
    gap: 16px;
  }
  .features ul, .benefits ul  {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section {
    padding: 18px 4vw;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 14px 13px;
    font-size: 0.98rem;
  }
  .categories ul {
    gap: 10px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.52rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .section, section {
    margin-bottom: 28px;
    padding: 10px 0;
  }
  .hero, .product-hero {
    padding: 9px 0 0 0;
    min-height: 0;
  }
  .cta {
    margin: 16px 0 0 0;
    padding: 14px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 5px 13px 10px;
    font-size: 0.97rem;
    gap: 15px;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .post-card, .testimonial-card, .services ul li, .whychoose ul li, .features li {
  transition: box-shadow 0.17s, border 0.14s, background 0.14s;
}
.card:hover, .post-card:hover, .testimonial-card:hover, .services ul li:hover, .features li:hover, .whychoose ul li:hover {
  box-shadow: 0 6px 24px 0 rgba(58,203,179,0.18), 0 2px 10px rgba(34,50,93,0.12);
  border: 1.5px solid var(--secondary);
  background: #2030612f;
}
.cta-button, button[type="submit"], .cookie-btn {
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
}

::-webkit-scrollbar {
  width: 8px;
  background: #1e2942;
}
::-webkit-scrollbar-thumb {
  background: #2842A0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}
