/* ------------------------- 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, menu, ol, ul, li,
fieldset, form, label, legend,
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #151d22;
  color: #F3F6F8;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
}
a { color: inherit; text-decoration: none; transition: color 0.2s linear; }
img, svg { display: block; max-width: 100%; height: auto; border: 0; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* ------------------------- TYPOGRAPHY ------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #FFF;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #F3F6F8;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #76A6B7;
}
p, ul, ol, li, label, blockquote, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e3e8ed;
}
strong { font-weight: 700; }
blockquote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid #2C4B5A;
  color: #fff;
  margin: 0 0 8px 0;
}

@media (max-width: 600px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.125rem; }
}

/* ------------------------- BRAND COLORS & UTILITY ------------------- */
:root {
  --primary: #2C4B5A;
  --secondary: #76A6B7;
  --accent: #F3F6F8;
  --bg-deep: #151d22;
  --bg-card: #253848;
  --neon-cyan: #26ffe6;
  --neon-blue: #33bbff;
  --neon-pink: #ff9ee6;
  --shadow: 0 4px 32px 0 rgba(60, 255, 240, 0.06);
  --radius: 18px;
  --radius-card: 16px;
  --transition: 0.21s cubic-bezier(.55,.06,.54,.87);
  --header-height: 72px;
}

/* ----------------------- PAGE LAYOUTS & CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 0;
}
.cta-block { align-items: center; text-align: center; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container, .product-cards, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .product-cards > div, .blog-post {
  background: var(--bg-card);
  padding: 28px 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover, .product-cards > div:hover, .blog-post:hover {
  transform: translateY(-4px) scale(1.014);
  box-shadow: 0 4px 32px 2px #26ffe666, 0 2px 6px 0 #2224;
  z-index: 1;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .section, .container { padding-left: 10px; padding-right: 10px; }
  .content-grid, .product-cards, .card-container, .blog-post-list, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .card, .product-cards > div, .blog-post {
    padding: 20px 12px;
    font-size: 15px;
  }
}

/* ---------------------------- HEADER ----------------------------------- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #151d22f0;
  backdrop-filter: blur(9px);
  box-shadow: 0 2px 12px 0 #1019283a;
  display: flex;
  align-items: center;
  padding: 0 0;
  height: var(--header-height);
}
.logo-wrap {
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: var(--header-height);
}
header img {
  height: 46px;
}
.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: #F3F6F8;
  padding: 8px 7px;
  border-radius: 11px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: #223441;
  color: var(--neon-cyan);
  box-shadow: 0 1px 8px 0 #53fbf88c;
}
.cta-btn {
  margin-left: 16px;
  background: linear-gradient(90deg, #33bbff 10%, #2C4B5A 80%);
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 22px;
  padding: 12px 28px;
  box-shadow: 0 2px 14px 0 #26ffe650;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  text-shadow: 0 1px 3px #2C4B5A77;
  position: relative;
  z-index: 10;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#26ffe6 5%, #76A6B7 90%);
  color: #151d22;
  box-shadow: 0 6px 40px 0 #26ffe688,0 1px 8px #4cd8ff55;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #76A6B7;
  padding: 0 15px 0 10px;
  cursor: pointer;
  z-index: 101;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #253848;
  color: #26ffe6;
}

@media (max-width: 1050px) {
  .main-nav { gap: 10px; margin-left: 10px; }
  .cta-btn { padding: 9px 16px; font-size: 0.98rem; }
}
@media (max-width: 850px) {
  header { padding: 0; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}


/* -------------------------- MOBILE MENU ---------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #151d22f7;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform var(--transition);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: -8px 0 64px 0 #23d8ff30;
}
.mobile-menu-close {
  background: none;
  color: #26ffe6;
  font-size: 2rem;
  padding: 28px 22px 12px 18px;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  transition: color 0.17s, background 0.17s;
  z-index: 111;
  border-radius: 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ff9ee6;
  background: #222a43;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 32px;
}
.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  border-radius: 8px;
  width: 86vw;
  max-width: 330px;
  text-align: center;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: linear-gradient(90deg, #33bbff 15%, #2C4B5A 90%);
  color: #26ffe6;
}

@media (min-width: 851px) {
  .mobile-menu, .mobile-menu.open, .mobile-menu-toggle { display: none !important; }
}

/* ---------------------------- HERO STYLES ------------------------------ */
.hero {
  min-height: 360px;
  min-width: 100%;
  background: linear-gradient(120deg, #1a3542 65%, #2C4B5A 100%);
  box-shadow: 0 6px 60px 0 #26346522;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container {
  min-height: 350px;
  justify-content: center;
}
.hero h1, .hero h2 {
  color: #26ffe6;
  text-shadow: 0 2px 22px #27ffe566, 0 2px 4px #034c7a0C;
  letter-spacing: -0.8px;
}
.hero p {
  color: #e2f7fa;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.hero .cta-btn {
  margin-top: 14px;
  box-shadow: 0 6px 28px 0 #26ffe688;
}

/* --------------------- FEATURE GRID & LISTS -------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-top: 14px;
  margin-bottom: 6px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 20px 20px 20px;
  background: #223441;
  border-radius: 15px;
  box-shadow: 0 2px 20px 0 #26ffe630;
  min-width: 220px;
  max-width: 285px;
  gap: 10px;
  font-size: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid li:hover {
  box-shadow: 0 6px 32px 0 #26ffe655;
  transform: translateY(-2px) scale(1.023);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 7px #26ffe68a);
}
.feature-grid h3 {
  color: #26ffe6;
  font-size: 1.05rem;
}
.feature-grid p, .feature-grid li {
  color: #d4ecf7;
}

@media (max-width: 900px){
  .feature-grid {gap: 20px 14px;}
  .feature-grid li { min-width: 125px; max-width: 100%; width: 100%; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid li { padding: 20px 10px; }
}

/* ------------------- TESTIMONIALS & CARDS ---------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F3F6F8;
  color: #212C33;
  box-shadow: 0 2px 18px 0 #2C4B5A14;
  border-radius: 13px;
  margin-bottom: 22px;
  padding: 20px;
  min-width: 210px;
  max-width: 540px;
  font-size: 1.11rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #33bbff33,0 2px 7px #76A6B73a;
  transform: scale(1.017);
}
.testimonial-card blockquote {
  color: #253848;
  font-size: 1.15rem;
  padding-left: 10px;
  border-left: 3px solid #76A6B7;
  margin: 0 0 8px 0;
}
.testimonial-author {
  color: #666c81;
  font-style: normal;
  font-size: 0.97rem;
  margin-left: 6px;
}

@media (max-width: 650px) {
  .testimonial-card { padding: 13px 6px; font-size: 0.97rem; }
  .testimonial-card blockquote { font-size: 1rem; }
}

/* -------------------- SERVICES & PRODUCT CARDS ------------------- */
.services-list li {
  background: var(--bg-card);
  margin-bottom: 20px;
  padding: 20px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 10px #21384a60;
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: #eaf7fa;
  transition: transform var(--transition), box-shadow var(--transition);
}
.services-list li:hover {
  box-shadow: 0 4px 36px #2C4B5A55;
  transform: translateY(-2px) scale(1.022);
}
.services-list span {
  color: #26ffe6;
  font-weight: 700;
  margin-left: 6px;
}
.product-cards {
  width: 100%;
  gap: 20px;
  margin-bottom: 18px;
}
.product-cards > div {
  min-width: 215px;
  flex: 1 1 0;
  background: #243b4f;
  color: #eaf7fa;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 #2C4B5A22;
  margin-bottom: 20px;
  padding: 20px 12px;
}
.product-cards h3 { color: #26ffe6; margin-bottom: 10px; font-size: 1.08rem; }
.product-cards p { color: #ccecf3; }
@media (max-width: 700px){
  .product-cards { flex-direction: column; }
  .product-cards > div { min-width: 120px; }
}

/* ----------------------- BLOG & CASE STUDY ---------------------- */
.blog-post-list, .case-study {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  min-width: 200px;
  flex: 1 1 0;
  background: #243b4f;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 #2C4B5A11;
  margin-bottom: 20px;
  padding: 20px 12px;
  color: #eaf7fa;
}
.blog-post h3 { color: #33bbff; margin-bottom: 8px; font-size: 1rem; }
.blog-post p { color: #ccecf3; }
.blog-categories {
  margin: 36px 0 0 0;
  color: #26ffe6;
  font-weight: 600;
}
.blog-categories a {
  color: #ff9ee6;
  font-weight: 500;
  margin: 0 3px;
  transition: color .2s;
}
.blog-categories a:hover {
  color: #26ffe6;
}

.case-study {
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.case-study > div {
  background: #223441;
  color: #eaf7fa;
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 #33bbff11;
  margin-bottom: 8px;
  padding: 18px 14px;
}
.case-study h3 { color: #ff9ee6; margin-bottom: 6px; font-size: 1.05rem; }
@media (max-width: 650px){ .case-study > div { padding: 11px 6px; font-size: 0.97rem;} }

/* ------------------------ NEWSLETTER/CTA ------------------------- */
.newsletter-section, .cta-block {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}
.newsletter-section h2 { color: var(--neon-pink); }

/* ------------------------ CONTACT & MAP ------------------------- */
.map-placeholder {
  background: #223441;
  color: #76A6B7;
  padding: 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 16px;
  margin-bottom: 28px;
  text-align: center;
}

/* ------------------------ LEGAL/POLICY -------------------------- */
.legal {
  background: #191f21;
  color: #C6DEEA;
  border-radius: 17px;
  margin: 34px 0 0 0;
  box-shadow: 0 1px 8px 0 #22344133;
  padding: 30px 22px 16px 22px;
}
.legal h1, .legal h2 { color: #26ffe6; }
.legal a { color: #ff9ee6; text-decoration: underline; }
.legal a:hover, .legal a:focus { color: #33bbff; }

/* ------------------------- FOOTER ---------------------------------- */
footer {
  background: #19242b;
  color: #b2c8d1;
  margin-top: 60px;
  padding: 30px 0 18px 0;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid #2C4B5A44;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #76A6B7;
  padding: 3px 9px;
  border-radius: 9px;
  font-size: 0.97rem;
  transition: color 0.19s, background 0.19s;
}
.footer-nav a:hover {
  color: #26ffe6;
  background: #283645;
}
.footer-contact {
  color: #9cbacc;
  letter-spacing: 0.02em;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 400;
  font-size: 0.93rem;
}
.footer-logo {
  margin: 12px 0;
}
.footer-logo img {
  height: 38px;
}
.copyright {
  color: #fff;
  font-size: 0.90rem;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .footer-nav { gap: 13px; }
  .footer-contact { font-size: 0.92rem; gap: 5px; }
  .footer-logo img {height: 26px; margin: 8px 0;}
}

/* ------------------------- SUCCESS THANK YOU PAGE ---------------------- */
.success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: linear-gradient(102deg, #1a3542 70%, #2C4B5A 100%);
  color: #26ffe6;
  border-radius: 24px;
  margin: 35px 0 0 0;
  box-shadow: 0 0 30px #33bbff25;
}
.success .container { align-items: center; }
.success h1 { color: #26ffe6; }
.success p { color: #F3F6F8; margin-top: 10px; }
.success .cta-btn { margin-top: 18px; }
@media (max-width: 600px){.success { padding: 10px 0;} }

/* ------------------------- COOKIE CONSENT BANNER ------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #151d22ee;
  color: #fff;
  box-shadow: 0 -2px 32px #33bbff40;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px 13px 16px;
  z-index: 9999;
  animation: fadeInCookie 0.7s ease;
}
@keyframes fadeInCookie { from { opacity:0; transform: translateY(65px);} to{ opacity: 1; transform: none; } }
.cookie-banner p {
  font-size: 1rem;
  color: #e8f6ff;
  margin-bottom: 12px;
  text-align: center;
  max-width: 640px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #223441;
  color: #26ffe6;
  border: none;
  padding: 10px 20px;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 6px #151d22cc;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #26ffe6 40%, #33bbff 105%);
  color: #151d22;
  box-shadow: 0 3px 18px 0 #26ffe633;
}
.cookie-btn.reject {
  background: #2C4B5A;
  color: #fff;
}
.cookie-btn.settings {
  background: #253848;
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  outline: none;
  background: #26ffe6;
  color: #19242b;
  box-shadow: 0 4px 32px #33bbff44;
}

/* -------- Cookie Modal --------*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(21,29,34,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #243b4f;
  color: #26ffe6;
  border-radius: 20px;
  padding: 36px 22px 28px 22px;
  box-shadow: 0 6px 32px #33bbff40;
  min-width: 320px;
  max-width: 98vw;
  transition: transform 0.3s cubic-bezier(.55,.06,.54,.87);
  transform: translateY(48px) scale(0.97);
  opacity: 0;
}
.cookie-modal-overlay.open .cookie-modal {
  transform: none;
  opacity: 1;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #26ffe6;
  margin-bottom: 17px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 25px;
}
.cookie-modal li {
  background: #223441;
  border-radius: 11px;
  padding: 12px 10px;
  color: #eaf7fa;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal label {
  color: #eaf7fa;
  font-size: 0.98rem;
}
.cookie-modal-toggle {
  margin-left: auto;
  width: 44px;
  height: 22px;
  border-radius: 11px;
  background: #223441;
  position: relative;
  display: flex;
  align-items: center;
}
.cookie-modal-toggle input[type="checkbox"] {
  appearance: none;
  width: 44px;
  height: 22px;
  border-radius: 11px;
  background: #253848;
  outline: none;
  position: absolute;
  left: 0;
  transition: background 0.22s;
}
.cookie-modal-toggle input[type="checkbox"]:checked {
  background: linear-gradient(90deg,#26ffe6 50%, #33bbff 100%);
}
.cookie-modal-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  left: 1px;
  transition: left 0.21s, background 0.21s;
}
.cookie-modal-toggle input[type="checkbox"]:checked + span {
  left: 22px;
  background: #26ffe6;
}
.cookie-modal .cookie-btn-group {
  gap: 13px;
}
@media (max-width: 700px) {
  .cookie-modal { min-width: 222px; padding: 19px 6px 19px 6px; }
}

/* ------------------------- FORM ELEMENTS --------------------------- */
input, textarea, select {
  background: #212C33;
  color: #FFF;
  border: none;
  border-radius: 7px;
  padding: 12px 10px;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  box-shadow: 0 2px 10px #2C4B5A22;
  width: 100%;
  transition: box-shadow 0.15s, border 0.15s;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 4px 22px #26ffe633;
  border: 1px solid #26ffe6;
}
button[type="submit"] {
  background: linear-gradient(90deg,#26ffe6 30%, #33bbff 100%);
  color: #151d22;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 2px 12px #26ffe633;
  margin-top: 8px;
  border: none;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #26ffe6;
  color: #151d22;
  box-shadow: 0 6px 40px 0 #33bbff33;
}

/* ----- GENERAL LISTS ---- */
ul, ol {
  margin-left: 16px;
  margin-bottom: 12px;
  padding-left: 13px;
}
ul li, ol li {
  padding-left: 0;
  color: #e3e8ed;
  margin-bottom: 7px;
  font-size: 1.02rem;
}
ul li strong, ol li strong { color: #26ffe6; }

/* ---- LEGAL LIST ---- */
.legal ul li {
  color: #b2c8d1;
  font-size: 1rem;
}

/* ----------------- SCROLL AND SELECTION ------------------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #19242bc9;
}
::-webkit-scrollbar-thumb {
  background: #2C4B5A;
  border-radius: 6px;
}
::selection {
  background: #26ffe6cc;
  color: #19242b;
}

/* --------- MICRO-ANIMATIONS: links, cards, buttons ------------ */
a, .cta-btn, .card, .feature-grid li, .testimonial-card, .blog-post {
  transition: color 0.17s, background 0.21s, box-shadow 0.19s, transform 0.13s;
}

/* ------------- Z-INDEX LAYERS ------------------- */
header { z-index: 100; }
.mobile-menu { z-index: 110; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* ----------------- HERO & CTA: DECORATIVE LINES ------------------- */
.hero:after, .success:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 135px; height: 5px;
  background: linear-gradient(90deg,#33bbffcc 10%,#26ffe6cc 97%);
  border-radius: 3px;
  filter: blur(2px);
}


/* End of style.css */