/* ===================================================
   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,
table, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
  height: auto;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #191E29;
  color: #E6EDF7;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(120deg, #23293A 0%, #1F3341 100%);
  min-height: 100vh;
  color: #E6EDF7;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================================
   VARIABLES
   =================================================== */
:root {
  --color-primary: #1F3341;
  --color-secondary: #FFD600;
  --color-accent: #FFFFFF;
  --color-dark: #191E29;
  --color-light: #E6EDF7;
  --neon-blue: #47C2FF;
  --neon-green: #0fff95;
  --shadow-main: 0 8px 32px 0 rgba(31,51,65,0.15);
  --shadow-card: 0 2px 10px 0 rgba(71,194,255,0.13), 0 8px 32px 0 rgba(31, 51, 65, 0.10);
  --radius-main: 18px;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.13;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; color: var(--neon-blue); }
h3 { font-size: 1.4rem; color: var(--color-secondary); }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol { margin-bottom: 16px; }
p, li { color: var(--color-light); font-size: 1rem; }
strong { color: var(--color-secondary); font-weight: 700; }
em { color: var(--neon-blue); font-style: normal; }

/* ===================================================
   LAYOUT CONTAINERS
   =================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(31,51,65, 0.85);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #23293A;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 20px 20px;
  color: var(--color-accent);
  flex: 1 1 275px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 2px 20px 0 var(--neon-blue);
  transform: translateY(-4px) scale(1.025);
}

.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;
  margin-bottom: 24px;
  background: #fff;
  border-left: 4px solid var(--neon-blue);
  border-radius: var(--radius-main);
  box-shadow: 0 12px 28px 0 rgba(31,51,65,0.10);
  color: #1F3341;
  flex-direction: column;
  min-width: 240px;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #284057;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.testimonial-card .testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon-blue);
}

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

/* FAQ List Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #23293A;
  border-left: 4px solid var(--neon-blue);
  border-radius: var(--radius-main);
  padding: 20px 22px;
  color: var(--color-light);
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(71,194,255,0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 2px 28px 0 var(--neon-blue);
}

.text-section {
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: flex-start;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
header {
  width: 100%;
  background: #1F3341;
  box-shadow: 0 2px 24px rgba(31, 51, 65, 0.10);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}
header img {
  height: 46px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
nav.main-nav a {
  color: #E6EDF7;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--neon-blue);
  color: #1F3341;
}
.cta-button {
  background: linear-gradient(90deg, var(--neon-blue) 30%, var(--color-secondary) 100%);
  color: #1F3341;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 26px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(71,194,255,0.17);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  outline: none;
  letter-spacing: 0.04em;
  margin-left: 12px;
  text-shadow: 0 1px 8px var(--color-light);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--neon-green) 30%, var(--neon-blue) 100%);
  color: var(--color-primary);
  box-shadow: 0 4px 24px 0 var(--neon-blue);
}

/* ========== MOBILE MENU NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.2rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none;
  z-index: 103;
  transition: background 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #2b425a;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,30,47,0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 28px 28px 28px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.23s cubic-bezier(.45,.11,.33,1), transform 0.30s cubic-bezier(.45,.11,.33,1);
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22405b; 
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-light);
  background: none;
  border: none;
  padding: 16px 0px 12px 0px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-primary);
  color: var(--neon-blue);
}

@media (max-width: 1040px) {
  nav.main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
    margin-left: auto;
  }
}
@media (min-width: 1041px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ====================================================================
   MAIN, SECTIONS, & CARDS
   ==================================================================== */
main {
  width: 100%;
  margin-top: 14px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section .container {
  align-items: stretch;
  justify-content: flex-start;
}
section .content-wrapper {
  margin-bottom: 0;
}

/* Card pattern for answers/testimonials */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Buttons in content (not nav) */
.content-wrapper > a.cta-button,
.content-wrapper a.cta-button {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  width: 100%;
  background: #1F3341;
  color: var(--color-light);
  border-top: 1px solid #23303e;
  padding: 38px 0 20px 0;
  margin-top: 24px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer img {
  height: 38px;
  margin-right: 18px;
}
footer p {
  margin: 0;
  color: #E6EDF7;
  font-size: 0.97rem;
}
footer nav.footer-nav a {
  color: var(--color-light);
  font-size: 1rem;
  transition: color 0.18s, text-decoration 0.18s;
}
footer nav.footer-nav a:hover, footer nav.footer-nav a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  z-index: 15000;
  background: #23293A;
  color: #E6EDF7;
  padding: 20px 10px 18px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 32px rgba(31,51,65,0.20);
  gap: 18px;
  transition: transform 0.25s cubic-bezier(.19,.69,.32,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-action-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 20px;
  margin-left: 12px;
  margin-right: 2px;
  border-radius: 26px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: var(--color-secondary);
  color: #1F3341;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 14px 0 rgba(255,214,0,0.04);
}
.cookie-action-btn.reject {
  background: var(--neon-blue);
  color: #1F3341;
}
.cookie-action-btn.settings {
  background: none;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
}
.cookie-action-btn:hover, .cookie-action-btn:focus {
  background: var(--neon-green);
  color: #1F3341;
  box-shadow: 0 4px 18px var(--neon-blue);
}
.cookie-consent-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,30,47,0.90);
  z-index: 20000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cookie-consent-modal.active {
  display: flex;
  animation: fadeIn 0.34s cubic-bezier(.35,.81,.27,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #23293A;
  color: #E6EDF7;
  padding: 36px 26px 28px 26px;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(71,194,255,0.14);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  font-size: 1.09rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #22405b;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category input[type=checkbox] {
  width: 29px;
  height: 17px;
  accent-color: var(--neon-blue);
  border-radius: 38px;
  outline: 2px solid var(--neon-blue);
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neon-blue);
}
.cookie-category .cookie-essential {
  color: var(--color-secondary);
  font-weight: 700;
}
/* Cookie modal action btns */
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}

/* =============================
   INTERACTIVE ELEMENTS
   ============================= */
a {
  transition: color 0.17s, text-decoration 0.2s;
}
a:focus {
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #ADC2DF; }
::-moz-placeholder { color: #ADC2DF; }
:-ms-input-placeholder { color: #ADC2DF; }
::placeholder { color: #ADC2DF; }

/* ==================
   UTILITIES
   ================== */
.gap-24 { gap: 24px !important; }
.gap-20 { gap: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* ==============================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ============================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 21px 10px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .container { max-width: 100vw; padding: 0 5px; }
  .content-wrapper { padding: 18px 4px; }
  section {
    padding: 28px 5px;
    margin-bottom: 34px;
    border-radius: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 7px;
  }
  footer .container, header .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .card-container, .content-grid, .feature-row { flex-direction: column; gap: 18px; }
  .card { min-width: 140px; padding: 16px 8px 14px 8px; }
  .testimonial-card { min-width: 180px; padding: 13px 8px; return: 8px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .faq-list { gap: 14px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.04rem; }
  .testimonial-card,
  .faq-item,
  .card {
    padding: 10px 4px;
    border-radius: 11px;
  }
  .cookie-modal-content {
    padding: 12px 6px 7px 6px;
    min-width: 90vw;
  }
}

/* ===============
   SCROLLBAR
   =============== */
::-webkit-scrollbar {
  width: 9px;
  background: #222b30;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--neon-blue), var(--color-secondary));
  border-radius: 24px;
}

/* ===============
  MICRO-ANIMATIONS
   =============== */
.card, .faq-item, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.4,.28,.7,.96), transform 0.18s cubic-bezier(.4,.28,.7,.96);
}
.card:focus, .faq-item:focus, .testimonial-card:focus {
  box-shadow: 0 4px 24px 0 var(--neon-blue);
  outline: none;
  transform: translateY(-2px) scale(1.016);
}

/* ===============
   SPECIAL EFFECTS
   =============== */
.section, .content-wrapper, .testimonial-card, .faq-item, .card {
  /* Neon glow on hover (only for cards/testimonials/faq) */
  box-shadow: 0 4px 18px 0 rgba(71,194,255,0.12);
}
.section:hover, .content-wrapper:hover, .testimonial-card:hover, .faq-item:hover, .card:hover {
  box-shadow: 0 6px 44px 0 var(--neon-blue);
}

/* ===============
   Z-INDEX
   =============== */
header, .mobile-menu, .cookie-consent-banner, .cookie-consent-modal {
  z-index: 99999;
}

/* End of CSS */
