/* ============================== */
/*        CSS RESET & BASE        */
/* ============================== */

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #101628;
  color: #E8E8E8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  /* Tech Futuristic background: subtle radiant gradient */
  background: linear-gradient(135deg, #101628 0%, #16213E 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #F6B93B;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.55,.08,.53,.95);
}
a:hover, a:focus {
  color: #fff380;
  text-decoration: underline;
}

ul, ol {
  margin-left: 28px;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ============================== */
/*       TYPOGRAPHY SCALE         */
/* ============================== */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #F6B93B;
  margin-bottom: 15px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.2rem;
  }
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F6B93B;
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.3rem;
  }
}
h4, .h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: #E8E8E8;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  color: #fff;
}
.text-section p,
.text-section ul {
  font-size: 1.07rem;
}

/* ============================== */
/*            CONTAINER           */
/* ============================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1200px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 992px) {
  .content-wrapper {
    gap: 38px;
  }
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* ============================== */
/*           HEADER/NAV           */
/* ============================== */
header {
  width: 100%;
  background: #101628;
  border-bottom: 1.5px solid #1b2644;
  position: sticky;
  top: 0;
  z-index: 111;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  flex-wrap: wrap;
  gap: 12px;
}
.logo img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  filter: drop-shadow(0 0 10px #F6B93B55);
  transition: filter 0.23s;
}
.logo img:hover {
  filter: drop-shadow(0 0 14px #F6B93B);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #E8E8E8;
  position: relative;
  padding: 2px 4px;
  transition: color 0.18s, border-bottom 0.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F6B93B;
}
.main-nav a.active {
  color: #F6B93B;
  border-bottom: 2px solid #F6B93B;
}

/* CTA BUTTON STYLE */
.cta-btn {
  background: #F6B93B;
  color: #16213E;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 26px;
  border: none;
  padding: 10px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 16px 0 #F6B93B33, 0 1px 4px #0001;
  transition: box-shadow 0.19s, transform 0.18s, background 0.12s;
  letter-spacing: 0.03em;
  outline: none;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffd27b;
  color: #281e59;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 32px 0 #F6B93B77;
}

.cta-link {
  color: #F6B93B;
  font-weight: 600;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-top: 8px;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid #F6B93B88;
  padding-bottom: 3px;
  transition: color 0.18s, border 0.18s;
  display: inline-block;
}
.cta-link:hover,
.cta-link:focus {
  color: #fff;
  border-color: #ffd27b;
  background: #F6B93B22;
}

/* Burger Mobile Menu */
.mobile-menu-toggle {
  background: #101628;
  color: #F6B93B;
  font-size: 2rem;
  border-radius: 9px;
  padding: 7px 18px 7px 13px;
  margin-left: 10px;
  border: 1.5px solid #F6B93B77;
  display: flex;
  align-items: center;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 1px 7px 0 #16161B44;
  z-index: 1003;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6B93B;
  color: #16213E;
  box-shadow: 0 0 22px 0 #F6B93B77;
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}

/* Hide main nav CTA on mobile so burger takes place */
@media (max-width: 991px) {
  .main-nav { display: none !important; }
  .cta-btn { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================== */
/*       MOBILE NAVIGATION        */
/* ============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,19,35,0.97);
  backdrop-filter: blur(6px);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.55,0,.13,1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #F6B93B;
  align-self: flex-end;
  background: none;
  border: none;
  margin: 26px 22px 12px 0;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff3ae;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 36px 40px 24px 36px;
}
.mobile-nav a {
  color: #F6B93B;
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.003em;
  padding: 8px 4px;
  border-radius: 5px;
  transition: background .18s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: #F6B93B33;
}

/* Hide on desktop */
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ============================== */
/*           HERO/SECTION         */
/* ============================== */
.hero {
  padding: 60px 0 60px 0;
  background: linear-gradient(110deg, #16213E 80%, #1c1e35 100%);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 8px #0d1122cc;
}
.hero p {
  font-size: 1.18rem;
  max-width: 500px;
  margin-bottom: 21px;
  color: #e8e8e8;
}
@media (min-width: 992px) {
  .hero {
    padding: 90px 0 80px 0;
  }
}

/* Feature grid, cards & sections */
.features {
  background: #13182a;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 #10121A33;
  margin-bottom: 60px;
  padding: 42px 14px 44px 14px;
}

.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature {
  background: #101628;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 #16213E33, 0 0.5px 1px #0002;
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #22294b;
}
.feature img {
  max-width: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #F6B93B77);
}
.feature h3 { color: #F6B93B; font-size: 1.18rem; }
.feature p { font-size: 1.04rem; color: #cfd3e2; }

@media (max-width: 950px) {
  .feature-grid{
    flex-direction: column;
    gap: 24px;
  }
  .feature {
    width: 100%;
    min-width: unset;
    margin-bottom: 0;
  }
}

/* Service cards / teaser cards */
.service-cards,
.inspiration-teasers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 19px;
}
.service-card, .teaser {
  background: #13182a;
  border-radius: 18px;
  box-shadow: 0 2px 13px #16213E33;
  padding: 26px 30px;
  flex: 1 1 208px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #22294b;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.11s;
}
.service-card:hover, .teaser:hover {
  box-shadow: 0 8px 42px #F6B93B33;
  z-index: 2;
  transform: translateY(-5px) scale(1.012);
}
.teaser h3, .service-card h3 {
  color: #F6B93B;
  font-size: 1.1rem;
}
.teaser p,
.service-card p {
  color: #faeecc;
  font-size: 1.02rem;
}
/* ============================== */
/*        CARDS & FLEX LAYOUT     */
/* ============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #101628;
  border-radius: 16px;
  box-shadow: 0 2px 12px #14162633;
  margin-bottom: 20px;
  padding: 23px 22px;
  position: relative;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

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

/* ============================== */
/*          TESTIMONIALS          */
/* ============================== */
.testimonials, .testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: left;
}
.testimonial-card {
  background: #fff;
  color: #11172b;
  border-radius: 13px;
  box-shadow: 0 3px 22px #F6B93B18, 0 0.5px 1.5px #bbb2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 215px;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #F6B93B25;
  transition: box-shadow .16s, transform .11s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 44px #F6B93B55;
  transform: translateY(-3px) scale(1.007);
  z-index: 2;
}
.testimonial-content p {
  font-size: 1.08rem;
  font-style: italic;
  color: #141831;
}
.client-name {
  font-weight: bold;
  color: #16213E;
  font-size: 1.01rem;
  margin-top: 11px;
}
.testimonial-rating {
  color: #F6B93B;
  font-size: 1.15rem;
  margin-left: 4px;
}

@media (max-width: 900px) {
  .testimonials, .testimonials-slider {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    max-width: unset;
    width: 100%;
  }
}

/* Testimonials on opinie.html */
.testimonials-section .testimonial-card {
  width: 100%;
  margin-bottom: 25px;
  background: #EFEFEF;
}

/* ============================== */
/*      OTHER FLEX PATTERNS       */
/* ============================== */
.blog-post-cards, .inspiration-entries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 19px;
}
.blog-card, .inspiration-entry {
  background: #13182a;
  color: #fff5e1;
  border-radius: 18px;
  box-shadow: 0 2px 13px #16213E33;
  padding: 26px 24px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #22294b;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.blog-card:hover, .inspiration-entry:hover {
  box-shadow: 0 5px 23px #F6B93B33;
  z-index: 1;
  transform: translateY(-2px) scale(1.012);
}

/* Tag / category / filter bar */
.tag-filters, .categories-list {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin: 9px 0 18px 0;
}
.tag-filters span, .categories-list span {
  color: #F6B93B;
  font-size: 1.03rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.tag-filters a, .categories-list a {
  background: #22294B;
  color: #fff;
  border-radius: 8px;
  padding: 2px 13px 4px 13px;
  font-size: 0.97rem;
  transition: background .13s, color .13s;
}
.tag-filters a:hover, .categories-list a:hover {
  background: #F6B93B;
  color: #16213E;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  margin: 12px 0 4px 0;
}
.pagination a {
  background: #22294B;
  color: #F6B93B;
  padding: 5px 13px;
  border-radius: 7px;
  font-size: 1.03rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.pagination a.active,
.pagination a:hover {
  background: #F6B93B;
  color: #16213E;
}

/* Load More Btn */
.load-more {
  background: #101628;
  border: 1.6px solid #F6B93B;
  color: #F6B93B;
  border-radius: 24px;
  padding: 7px 26px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 20px 0 8px 0;
  transition: background 0.16s, color 0.15s, transform .14s;
}
.load-more:hover, .load-more:focus {
  background: #F6B93B;
  color: #16213E;
  transform: translateY(-2px) scale(1.03);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(88deg, #1c1e35 67%, #F6B93B 83%, #1c1e35);
  box-shadow: 0 3px 22px #F6B93B29,0 0.5px 1.5px #bbb2;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 32px 18px;
}
.cta-banner h2 {
  color: #10151e;
  text-shadow: 0 3px 14px #fff2;
  margin-bottom: 14px;
}
.cta-banner .cta-btn {
  margin-left: 0;
  margin-top: 7px;
  background: #101628;
  color: #F6B93B;
  box-shadow: 0 2px 16px 0 #10162844, 0 1px 4px #F6B93B22;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #F6B93B;
  color: #16213E;
  box-shadow: 0 4px 32px 0 #F6B93B88;
}

/* ============================== */
/*   ABOUT, POLICY ETC SECTIONS   */
/* ============================== */
.about-section, .policy-section {
  background: #101628;
  border-radius: 20px;
  box-shadow: 0 2px 11px #16213E22;
  margin-bottom: 60px;
  padding: 40px 18px;
}
.highlights {
  background: #141c29;
  border-radius: 19px;
  box-shadow: 0 2px 11px #16213E22;
  margin-bottom: 60px;
  padding: 34px 15px;
}
.brand-pillar {
  background: #eef5ff;
  color: #101628;
  border-radius: 12px;
  font-weight: bold;
  margin-top: 18px;
  padding: 14px 21px;
  font-size: 1.09rem;
  box-shadow: 0 2px 9px #F6B93B19;
}

/* ============================== */
/*             FOOTER             */
/* ============================== */
footer {
  width: 100%;
  background: #181E2B;
  padding: 38px 0 12px 0;
  box-shadow: 0 -2px 13px #0d112299;
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-section img {
  width: 48px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 21px;
  margin-bottom: 8px;
}
.footer-links a {
  color: #F6B93B;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: color 0.14s, text-decoration .18s;
}
.footer-links a:hover {
  color: #fff3ae;
}
.footer-contact {
  color: #E8E8E8;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.footer-contact a {
  color: #F6B93B;
  text-decoration: underline;
  transition: color .13s;
}
.footer-contact a:hover { color: #fff3ae; }

.footer-social {
  display: flex;
  gap: 11px;
  margin-bottom: 8px;
}
.footer-social a img {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 0 3px #F6B93B99);
  transition: filter .14s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 7px #F6B93B) brightness(1.3);
}

.newsletter-signup {
  color: #F6B93B;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-top: 12px;
}

@media (min-width: 840px) {
  .footer-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 34px 44px;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .footer-section {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}

/* ============================== */
/*         UTILITY CLASSES        */
/* ============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 17px;
}

/* ============================== */
/*      ANIMATIONS & EFFECTS      */
/* ============================== */
@media (hover: hover) and (pointer: fine) {
  .card, .card-container > *, .feature, .testimonial-card, .service-card, .teaser, .blog-card, .inspiration-entry {
    transition: transform .18s cubic-bezier(.44,.09,.51,1.35),
      box-shadow .18s cubic-bezier(.55,.08,.53,.95);
  }
  .card:hover, .feature:hover, .testimonial-card:hover, .service-card:hover, .teaser:hover, .blog-card:hover, .inspiration-entry:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 8px 36px #F6B93B33;
    z-index: 2;
  }
}

/* ============================== */
/*       RESPONSIVE LAYOUTS       */
/* ============================== */
@media (max-width: 991px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .card-container, .content-grid, .blog-post-cards, .inspiration-entries,
  .service-cards, .inspiration-teasers, .feature-grid, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .about-section, .policy-section, .features {
    padding: 24px 8px;
  }
  .cta-banner {
    padding: 18px 8px;
  }
}
@media (max-width: 530px) {
  h1 { font-size: 1.59rem; }
  .cta-btn { font-size: 0.99rem; padding: 8px 12px; }
  .container { padding-left: 3.5vw; padding-right: 3.5vw; }
}

/* ============================== */
/*      COOKIE CONSENT BANNER     */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181E2B;
  color: #E8E8E8;
  padding: 19px 8px 19px 8px;
  box-shadow: 0 -2px 22px #0d112299;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  z-index: 3000;
  animation: cookie-slide-in .66s cubic-bezier(.42,1.04,.46,1.11);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); }
  90% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #E8E8E8;
  font-size: 0.97rem;
  text-align: center;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 19px;
  border-radius: 24px;
  border: none;
  font-size: 0.98rem;
  transition: background 0.14s, color .14s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #F6B93B;
  color: #181E2B;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #ffd27b;
  color: #20163a;
}
.cookie-banner .reject {
  background: #101628;
  color: #F6B93B;
  border: 1.2px solid #F6B93B;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #F6B93B;
  color: #101628;
}
.cookie-banner .settings {
  background: #fff;
  color: #16213E;
  border: 1.2px solid #F6B93B;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #F6B93B;
  color: #16213E;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #101628cc;
  backdrop-filter: blur(5.5px);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in .38s cubic-bezier(.3,.68,.48,1.15);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #181E2B;
  color: #f6f8fc;
  border-radius: 17px;
  padding: 34px 22px 22px 22px;
  box-shadow: 0 10px 44px #0d112299;
  max-width: 410px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #F6B93B;
  font-size: 1.39rem;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-left: 0;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-category-toggle {
  position: relative;
  min-width: 43px;
  height: 23px;
  margin-left: auto;
  margin-right: 0;
  display: inline-flex;
  align-items: center;
}
.cookie-switch {
  display: inline-block;
  width: 40px;
  height: 23px;
  background: #22294b;
  border-radius: 11.5px;
  position: relative;
  transition: background .14s;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  top: 2px; left: 4px;
  width: 17px; height: 17px;
  background: #F6B93B;
  border-radius: 50%;
  transition: left .15s, background .15s;
}
.cookie-switch input:checked + .cookie-slider {
  left: 19px;
  background: #92f0ed;
}
.cookie-category-desc {
  color: #dadbe8;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  align-items: center;
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 21px;
  color: #F6B93B;
  font-size: 1.64rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close:hover { color: #fff3ae; }

/* ============================== */
/*         UTILITY COLORS         */
/* ============================== */
.bg-primary { background: #16213E; color: #E8E8E8; }
.bg-secondary { background: #F6B93B; color: #16213E; }
.bg-accent { background: #E8E8E8; color: #16213E; }

.text-primary { color: #16213E !important; }
.text-secondary { color: #F6B93B !important; }
.text-accent { color: #E8E8E8 !important; }

/* ============================== */
/*        SELECTION/FOCUS         */
/* ============================== */
:focus {
  outline: 2px solid #F6B93Bcc;
  outline-offset: 3px;
}
::selection {
  background: #F6B93B99;
  color: #16213E;
}

/* ============================== */
/*      THANK YOU SECTION         */
/* ============================== */
.thank-you-section {
  background: #101628;
  border-radius: 24px;
  box-shadow: 0 2px 14px #10121A33;
  text-align: center;
  padding: 54px 9px;
  margin-bottom: 60px;
}
.thank-you-section h1 { color: #F6B93B; }
.thank-you-section p { color: #fff; font-size: 1.12rem; margin: 17px auto 22px auto; }

/* ============================== */
/*         MISC PATCHES           */
/* ============================== */
@media (max-width: 400px) {
  .mobile-nav, .cookie-modal-content { padding-left: 14px; padding-right: 10px; }
  .testimonials-slider, .testimonials, .testimonials-section { padding-left: 2px; padding-right: 2px;}
}

/* ============================== */
/*            END                 */
/* ============================== */
