/* ---- 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #e5edf7;
  background: linear-gradient(135deg, #1E293B 0%, #2967B0 100%);
  background-color: #1E293B;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #63a4f3;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #41ffe6;
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  color: #e5edf7;
  font-size: 1rem;
}
strong {
  color: #fff;
}
.text-section {
  color: #e5edf7;
}

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

/* Containers */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* --- FLEXBOX LAYOUT PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #202F49;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(51, 171, 246, 0.07), 0 1.5px 16px 0 #41ffe655;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 #41ffe6cc, 0 6px 16px -4px #1E293B55;
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #f7fafd;
  border-radius: 18px;
  color: #152243;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 #2967B022, 0 0.5px 2px 0 #41ffe622;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card strong {
  color: #2967B0;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card p{
  color: #152243;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px 0 #2967B088, 0 12px 12px -8px #41ffe644;
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Flex Adjustments */
@media (max-width:768px) {
  .content-grid,
  .card-container,
  .feature-grid,
  .service-list,
  .usps-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 10px;
  }
}

/* ---- NAVIGATION ---- */
header {
  background: #101926;
  box-shadow: 0 1px 14px 0 #2967B055;
  position: sticky;
  top: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  justify-content: flex-start;
}
.main-nav > a {
  display: flex;
  align-items: center;
  color: #E5EDF7;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s, background 0.15s;
}
.main-nav > a[href="/"] img {
  width: 130px;
  height: auto;
  margin-right: 12px;
  display: inline-block;
}
.main-nav > a.cta-primary {
  margin-left: auto;
  background: #2967B0;
  color: #fff;
  border-radius: 12px;
  padding: 9px 23px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 2px 16px #41ffe622;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav > a.cta-primary:hover,
.main-nav > a.cta-primary:focus {
  background: #41ffe6;
  color: #152243;
  box-shadow: 0 4px 24px #41ffe644;
}
.main-nav > a:hover:not(.cta-primary),
.main-nav > a:focus:not(.cta-primary) {
  color: #41ffe6;
  background: #183469;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 950px){
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 150;
    background: #2967B0;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    box-shadow: 0 6px 16px #41ffe622;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: #41ffe6;
    color: #1E293B;
    box-shadow: 0 12px 28px #41ffe644;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 2000;
    background: #111c2a;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.36s cubic-bezier(.8,.01,.2,1);
    box-shadow: 0 8px 40px #2967B055;
    padding: 32px 24px;
    overflow-y: auto;
  }
  .mobile-menu.active {
    transform: translateX(0) !important;
  }
  .mobile-menu-close {
    display: block;
    background: none;
    border: none;
    color: #41ffe6;
    font-size: 2.5rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 12px;
    transition: color 0.15s;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    color: #2967B0;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
    font-size: 1.15rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    align-items: flex-start;
  }
  .mobile-nav > a {
    color: #E5EDF7;
    padding: 10px 6px;
    font-weight: 500;
    border-radius: 8px;
    min-width: 160px;
    transition: background 0.12s, color 0.12s;
    font-size: 1.05rem;
  }
  .mobile-nav > a:hover,
  .mobile-nav > a:focus {
    background: #183469;
    color: #41ffe6;
  }
  .mobile-nav > a.cta-primary {
    margin-top: 14px;
    background: #2967B0;
    color: #fff;
    padding: 10px 28px;
    font-size: 1.13rem;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 2px 14px #41ffe622;
  }
}
.mobile-menu.active {
  display: flex;
}
@media (min-width: 951px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---- HERO SECTIONS ---- */
.hero, .jobs-hero-section, .contact-hero-section, .thank-you-section {
  background: linear-gradient(120deg, #23334f 0%, #2967B0 94%);
  background-color: #23334f;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  margin-bottom: 54px;
  position: relative;
  box-shadow: 0 8px 40px 0 #2967B055;
}
.hero .content-wrapper, .jobs-hero-section .content-wrapper, .thank-you-section .content-wrapper, .contact-hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 330px;
  padding-top: 32px;
  gap: 10px;
}
.hero h1, .jobs-hero-section h1, .thank-you-section h1, .contact-hero-section h1 {
  color: #fff;
  text-shadow: 0 2px 12px #2967B066;
}
.hero p, .jobs-hero-section p, .thank-you-section p, .contact-hero-section p {
  color: #e5edf7;
  font-size: 1.18rem;
  margin-bottom: 20px;
}

@media (max-width: 650px) {
  .hero, .jobs-hero-section, .contact-hero-section, .thank-you-section {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: 34px;
  }
  .hero .content-wrapper, .jobs-hero-section .content-wrapper, .thank-you-section .content-wrapper, .contact-hero-section .content-wrapper {
    min-height: 180px;
    padding-top: 14px;
  }
}

.cta-primary {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(82deg, #41ffe6 20%, #2967B0 89%);
  color: #051227;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.5px;
  border-radius: 13px;
  box-shadow: 0 4px 28px #41ffe644, 0 1px 10px #2967B022;
  border: none;
  text-align: center;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #2967B0 0%, #41ffe6 100%);
  color: #1E293B;
  box-shadow: 0 8px 32px #41ffe655, 0 4px 24px #2967B044;
  transform: scale(1.025);
}

/* ---- FEATURES ---- */
.features {
  background: #1C2534;
  border-radius: 22px;
  box-shadow: 0 8px 32px #2967B022;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid li {
  background: #202F49;
  border-radius: 18px;
  box-shadow: 0 2px 10px #41ffe611, 0 2px 12px #2967B033;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  padding: 32px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px #41ffe644, 0 14px 32px -8px #2967B033;
  transform: translateY(-2px) scale(1.03);
}
.feature-grid h3 {
  color: #41ffe6;
  font-size: 1.15rem;
}
.feature-grid p {
  color: #e5edf7;
}

/* SERVICES OVERVIEW */
.services-overview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.services-overview .service-list > div {
  background: #202F49;
  border-radius: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  padding: 26px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 2px 8px #2967B033, 0 1px 6px #41ffe655;
  transition: box-shadow 0.2s, transform 0.13s;
}
.services-overview .service-list > div:hover {
  box-shadow: 0 8px 26px #41ffe655, 0 10px 16px -8px #2967B033;
  transform: scale(1.025);
}
.services-overview .service-list h3 {
  color: #2967B0;
  font-size: 1.09rem;
}
.services-overview .service-list a {
  color: #41ffe6;
  font-weight: bold;
  font-size: 0.98rem;
  text-decoration: underline;
  transition: color 0.15s;
}
.services-overview .service-list a:hover {
  color: #2967B0;
}

/* --- TESTIMONIALS --- */
.testimonials,
.testimonials-section,
.culture-section .testimonial-card,
.cta-last {
  margin-bottom: 60px;
}
.testimonials .testimonial-card,
.testimonials-section .testimonial-card,
.culture-section .testimonial-card {
  background: #f6faff;
  color: #152243;
  border-radius: 18px;
  box-shadow: 0 3px 7px #2967B022;
  margin-bottom: 24px;
}
.testimonials .content-wrapper, .testimonials-section .content-wrapper {
  gap: 0;
}

/* --- CTA LAST/CTA SECTIONS --- */
.cta-last, .cta-section {
  background: #1C2534;
  border-radius: 18px;
  box-shadow: 0 4px 24px #2967B022;
  text-align: left;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta-last h2, .cta-section h2 {
  color: #41ffe6;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

/* --- ABOUT & OTHER TEXT-HEAVY SECTIONS --- */
.text-section ul {
  padding-left: 14px;
  margin-bottom: 18px;
  color: #e5edf7;
}
.text-section ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.text-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #41ffe6;
  border-radius: 50%;
  opacity: .8;
}
.text-section ol {
  list-style: decimal inside;
  margin-bottom: 16px;
  color: #e5edf7;
}
.text-section ol li {
  margin-bottom: 9px;
}

/* --- FOOTER --- */
footer {
  background: #101926;
  color: #e5edf7;
  padding: 36px 0 24px 0;
  box-shadow: 0 -4px 32px #2967B044;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-nav a {
  color: #41ffe6;
  font-weight: 500;
  transition: color 0.1s;
  padding: 3px 5px;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  background: #2967B0;
}
.footer-contact {
  font-size: 0.97rem;
  color: #e5edf7;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .footer-nav { gap: 10px; font-size: 0.97rem; }
}

/* --- CONTACT PAGE --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 25px 0 12px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e5edf7;
}
.address-block {
  margin-bottom: 16px;
}
.map-placeholder {
  background: #23334f;
  border-radius: 11px;
  padding: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 12px #2967B022;
}

.privacy-notice {
  background: #193961;
  border-radius: 11px;
  padding: 14px 12px;
  margin: 20px 0;
  color: #e5edf7;
  font-size: 0.98rem;
}
.privacy-notice a {
  color: #41ffe6;
  text-decoration: underline;
}
.next-steps {
  margin-top: 24px;
}

/* --- SERVICES PAGE --- */
.service-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.service-categories li {
  background: #23334f;
  color: #41ffe6;
  padding: 7px 14px;
  border-radius: 9px;
  font-weight: 600;
  font-family: 'Montserrat';
  font-size: 1rem;
}
.service-descriptions {
  margin-bottom: 28px;
}

.benefits-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.benefits-section ul li {
  background: #202F49;
  border-radius: 11px;
  padding: 18px 14px;
  min-width: 180px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #41ffe6;
  font-weight: 500;
  font-family: 'Montserrat';
  font-size: 1.04rem;
}
.process-overview {
  margin-top: 20px;
  background: #1C2534;
  border-radius: 12px;
  padding: 14px 10px;
  color: #e5edf7;
  font-size: 0.98rem;
  box-shadow: 0 2px 7px #2967B022;
}
.process-overview h3 {
  color: #41ffe6;
  margin-bottom: 8px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-list > div {
  background: #202F49;
  border-radius: 11px;
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 350px;
  padding: 16px;
  box-shadow: 0 2px 6px #2967B022;
  color: #e5edf7;
  margin-bottom: 12px;
  transition: box-shadow 0.13s, transform 0.12s;
}
.faq-list > div:hover {
  box-shadow: 0 8px 24px #41ffe622;
  transform: scale(1.02);
}
.faq-list h3 {
  color: #41ffe6;
  font-size: 1.07rem;
}

/* --- USP (Dlaczego my) --- */
.usps-section .usps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 10px;
}
.usps-section .usps-grid li {
  background: #202F49;
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  padding: 22px 12px;
  color: #e5edf7;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 9px #2967B022;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.11s;
}
.usps-section .usps-grid li:hover {
  box-shadow: 0 6px 24px #41ffe644;
  transform: scale(1.02);
}
.usps-section .usps-grid strong {
  color: #41ffe6;
  font-size: 1.08rem;
}

.metrics-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  color: #e5edf7;
}
.metrics-section li {
  background: #202F49;
  border-radius: 11px;
  padding: 10px 14px;
  font-family: 'Montserrat';
  font-size: 1.09rem;
}

.timeline-overview {
  margin-top: 12px;
  background: #183469;
  color: #41ffe6;
  border-radius: 8px;
  padding: 10px;
}

/* --- TEAM, CERTIFICATIONS --- */
.certifications-section ul, .team-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.certifications-section ul li, .team-section ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.02rem;
}
.certifications-section img, .team-section img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* --- JOBS (KARIERA) --- */
.jobs-list-section ul {
  margin-bottom: 18px;
}
.jobs-list-section li {
  background: #202F49;
  border-radius: 6px;
  color: #e5edf7;
  padding: 10px 12px;
  margin-bottom: 11px;
  box-shadow: 0 2px 8px #41ffe611;
  font-size: 1rem;
}
.jobs-list-section h3 {
  color: #41ffe6;
  margin-top: 18px;
}

/* --- LEGAL / POLICY PAGES --- */
.privacy-policy-section, .cookies-policy-section, .rodo-policy-section, .terms-section {
  background: #183469;
  border-radius: 15px;
  padding: 38px 20px;
  margin-bottom: 38px;
  box-shadow: 0 2px 22px #2967B022;
  color: #e5edf7;
}
.privacy-policy-section h2, .cookies-policy-section h2, .rodo-policy-section h2, .terms-section h2 {
  color: #41ffe6;
  margin-bottom: 9px;
}

/* ---- BUTTONS & FORMS ---- */
button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 24px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
  background: #2967B0;
  color: #fff;
  box-shadow: 0 2px 8px #2967B044;
  margin: 8px 0;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #41ffe6;
  color: #152243;
  box-shadow: 0 6px 22px #41ffe644;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #2967B0;
  padding: 8px 12px;
  outline: none;
  margin-bottom: 16px;
  width: 100%;
  background: #f4f8fc;
  color: #1E293B;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #41ffe6;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #203355;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 18px;
  box-shadow: 0 -2px 24px #41ffe622;
  font-size: 1rem;
  animation: slideInUpCookie 0.45s cubic-bezier(.75,.12,.33,1.08);
}
@keyframes slideInUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  background: #41ffe6;
  color: #203355;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 3px 12px #2967B088;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #2967B0;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #2967B0;
  border: 1px solid #41ffe6;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #41ffe6;
  color: #203355;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,41,59,0.78);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalCookie 0.28s;
}
@keyframes fadeInModalCookie {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #f6faff;
  color: #183469;
  border-radius: 18px;
  padding: 34px 26px 18px 26px;
  min-width: 310px; max-width: 98vw;
  width: 410px;
  box-shadow: 0 6px 40px #2967B088, 0 2px 8px #41ffe633;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@media(max-width: 500px) {
  .cookie-modal { width: 98vw; min-width: unset; padding: 18px 5vw; }
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #2967B0;
  margin-bottom: 10px;
}
.cookie-modal .cookie-setting {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-setting label {
  color: #183469;
  font-weight: 600;
  font-family: 'Montserrat';
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #e5edf7;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .17s;
  border: 1px solid #2967B0;
}
.cookie-modal .cookie-toggle:checked {
  background: #41ffe6;
  border-color: #41ffe6;
}
.cookie-modal .cookie-toggle::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #2967B0;
  transition: transform .17s;
}
.cookie-modal .cookie-toggle:checked::before {
  background: #152243;
  transform: translateX(18px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 8px; right: 13px;
  background: none; border: none;
  color: #2967B0;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #41ffe6;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .feature-grid li, .service-list > div, .faq-list > div, .testimonial-card, .usps-grid li, .metrics-section li {
  transition: box-shadow 0.17s, transform 0.15s;
}
.cta-primary, .cookie-btn, .button, button {
  transition: background 0.16s, color 0.13s, box-shadow 0.14s, transform 0.12s;
}
a {
  transition: color 0.15s;
}

/* --- UTILITY CLASSES (spacing, alignment) --- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-12 { margin-bottom: 12px !important; }
.mt-18 { margin-top: 18px !important; }
.gap-8 { gap: 8px !important; }
.gap-24 { gap: 24px !important; }
.text-center { text-align: center !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.align-start { align-items: flex-start !important; }
.align-center { align-items: center !important; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: #1E293B;
}
::-webkit-scrollbar-thumb {
  background: #2967B0;
  border-radius: 8px;
}

/* --- FOCUS (Accessibility) --- */
:focus-visible {
  outline: 2px dashed #41ffe6;
  outline-offset: 2px;
}

/* ---- END OF CSS ---- */
