/* 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;
}

/* 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: #1F2530;
  color: #F6F6F2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #ECC940;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F6F2;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

b, strong {
  color: #ECC940;
  font-weight: 700;
}

small {
  color: #BFC9DB;
}

/* LINKS */
a {
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECC940;
}
.cta-primary {
  background: #ECC940;
  color: #234161;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px 0 rgba(236, 201, 64, 0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFE380;
  color: #234161;
  box-shadow: 0 4px 24px 0 rgba(236, 201, 64, 0.16);
  transform: translateY(-2px) scale(1.03);
}

/* MAIN NAVIGATION */
header {
  background: #232A3B;
  box-shadow: 0 2px 12px rgba(32,50,90,0.10);
  position: relative;
  z-index: 51;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  min-height: 70px;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F6F6F2;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav > a:not(.cta-primary):hover, .main-nav > a:not(.cta-primary):focus {
  background: #233C5A;
  color: #ECC940;
}
.main-nav > a.cta-primary {
  margin-left: auto;
  margin-right: 0;
}
.main-nav img {
  height: 40px;
  margin-right: 8px;
  vertical-align: middle;
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #ECC940;
  z-index: 101;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  outline: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(236,201,64,0.18);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1F2530;
  box-shadow: 0 0 30px 0 rgba(35,64,97,0.30);
  z-index: 111;
  padding-top: 44px;
  padding-bottom: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.46,0.03,0.52,0.96);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 12px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #ECC940;
  cursor: pointer;
  z-index: 120;
  border-radius: 8px;
  transition: background 0.15s;
  padding: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(236,201,64,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #F6F6F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ECC940;
  background: #2F4567;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232A3B;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(41,62,95,0.21);
  padding: 28px 24px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 30px 0 rgba(236,201,64,0.22);
  transform: translateY(-3px) scale(1.017);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F2;
  color: #232A3B;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(35,64,97,0.10);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(35,64,97,0.15);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card span {
  color: #ECC940;
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232A3B;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(35,64,97,0.08);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.stats > div {
  background: #232A3B;
  border-radius: 14px;
  padding: 26px 18px;
  min-width: 160px;
  box-shadow: 0 2px 14px rgba(35,64,97,0.10);
  flex: 1 1 155px;
  color: #ECC940;
  text-align: center;
}
.stats h3 {
  font-size: 2rem;
  color: #ECC940;
  margin-bottom: 6px;
}
.stats p {
  font-size: 1rem;
  color: #F6F6F2;
}

/* FEATURES GRID (Special for /) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 0px;
}
.features-grid > div {
  background: #232A3B;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(35,65,97,0.13);
  padding: 28px 19px 23px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 200px;
  flex: 1 1 150px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.features-grid img {
  height: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 7px #ECC940bb);
}
.features-grid h3 {
  color: #ECC940;
  font-size: 1.1rem;
}
.features-grid p {
  color: #F6F6F2;
}
.features-grid > div:hover {
  box-shadow: 0 2px 24px #ECC9402a;
  transform: translateY(-3px) scale(1.014);
}

/* FAQ ACCORDION / TEXT FORMATTING */
.faq-accordion > div {
  background: #232A3B;
  border-radius: 11px;
  padding: 22px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 11px rgba(35,64,97,0.11);
  transition: box-shadow 0.17s, transform 0.10s;
}
.faq-accordion > div h3 {
  color: #ECC940;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.faq-accordion > div p {
  color: #F6F6F2;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  box-shadow: 0 4px 22px 0 rgba(236,201,64,0.18);
  transform: translateY(-2px) scale(1.009);
}

/* HERO/SECTION BG, NEON ACCENTS (FUTURISTIC TOUCHES) */
section {
  background: linear-gradient(135deg, #234161 65%, #212C41 100%);
  border-radius: 26px;
  box-shadow: 0 6px 32px 0 rgba(27, 40, 61, 0.13);
  margin-bottom: 36px;
}
section:nth-of-type(even) {
  background: linear-gradient(127deg, #232A3B 55%, #234161 100%);
}

section .cta-primary {
  box-shadow: 0 0 24px 0 #ECC94065, 0 2px 24px 0 #23416125;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #232A3B;
  color: #F6F6F2;
  box-shadow: 0 -2px 30px rgba(35,65,97,0.18);
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: bannerIn 0.48s cubic-bezier(.46,.05,.31,1.08);
}
@keyframes bannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: #F6F6F2;
  font-size: 0.97rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  padding: 11px 28px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.14s, color 0.15s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #ECC940;
  color: #234161;
  box-shadow: 0 2px 16px #ECC94023;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFE380;
}
.cookie-btn.reject {
  background: #234161;
  color: #ECC940;
  box-shadow: 0 2px 10px #23416123;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #2F4567;
  color: #ECC940;
}
.cookie-btn.settings {
  background: transparent;
  color: #ECC940;
  border: 1.5px solid #ECC940;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ECC94013;
  color: #FFE380;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31, 37, 48, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.3s;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232A3B;
  border-radius: 18px;
  box-shadow: 0 4px 32px #ECC94033;
  padding: 38px 24px 28px 24px;
  max-width: 380px;
  width: 92vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #ECC940;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #ECC940;
  cursor: pointer;
  transition: background 0.13s;
  border-radius: 5px;
  padding: 5px 9px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #ECC94022;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  color: #F6F6F2;
}
.cookie-modal .category-label.essential {
  color: #ECC940;
  font-weight: 700;
}
.cookie-toggle {
  width: 40px; height: 22px;
  background: #233C5A;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 2px solid #ECC940;
  margin-left: 8px;
  flex-shrink: 0;
}
.cookie-toggle[aria-checked="true"] {
  background: #ECC940;
  border-color: #ECC940;
}
.cookie-toggle .cookie-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #F6F6F2;
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(.43,.43,.31,.96);
}
.cookie-toggle[aria-checked="true"] .cookie-knob {
  left: 20px;
  background: #234161;
}

/* FOOTER */
footer {
  background: #232A3B;
  color: #BFC9DB;
  padding: 40px 0 18px 0;
  margin-top: 54px;
  font-size: 1rem;
  position: relative;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -2px 22px rgba(35,65,97,0.10);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #ECC940;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFE380;
}
.footer-contact {
  text-align: center;
  color: #BFC9DB;
}
.footer-contact p {
  margin-bottom: 5px;
}

/* MEDIA QUERIES - MOBILE FIRST */
@media (max-width: 991px) {
  .main-nav {
    gap: 12px;
    font-size: 0.97rem;
  }
  .features-grid {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .features-grid, .content-grid, .stats {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 38px;
    min-width: 0;
  }
  section {
    border-radius: 12px;
    margin-bottom: 22px;
    padding: 0px;
  }
  .testimonial-card {
    min-width: 0;
    flex-direction: column;
    gap: 14px;
    padding: 15px 12px;
    font-size: 0.99rem;
  }
  .stats > div, .features-grid > div, .faq-accordion > div {
    min-width: 0;
    flex: 1 1 100%;
    padding: 18px 12px;
  }
  .text-image-section, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .footer-nav {
    gap: 9px;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
  .container {
    padding: 0 7px;
  }
}

/* UTILITIES FOR FLEXBOX LAYOUTS & NO OVERLAP */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Micro-interactions for Buttons & Cards */
button, .cta-primary, .cookie-btn {
  outline: none;
}
button:focus-visible, .cta-primary:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px #ECC940bb, 0 2px 16px #ECC94023;
}
.card:focus-within, .feature-item:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 0 0 3px #ECC940cc, 0 2px 22px #ECC94028;
}

/* Neon underline accent on section headings */
h2::after {
  content: '';
  display: block;
  width: 38px;
  height: 4px;
  border-radius: 2px;
  margin-top: 9px;
  background: #ECC940;
  box-shadow: 0 0 12px #ECC94066;
}

/* Responsive and visually distinct icons-in-text */
.text-section img, p img, li img {
  height: 1.2em;
  vertical-align: middle;
  margin-right: 7px;
  margin-left: 0;
  filter: drop-shadow(0 0 4px #ECC94077);
}

/* ACCENTS: Futuristic glowing highlights */
section, .card, .feature-item, .testimonial-card, .stats > div {
  border: 1.5px solid #233C5A;
  box-shadow: 0 0 0 1px #2F456730 inset;
}
section:focus-within, .card:focus-within, .feature-item:focus-within {
  box-shadow: 0 0 16px #ECC94044, 0 2px 22px #ECC9401f;
  border-color: #ECC940;
}

/* === END === */
