/* ---------------------- 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #161b2d;
  color: #E2E8F0;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

/* ---------------------- FONT FACES ---------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* ---------------------- ROOT VARIABLES ---------------------- */
:root {
  --color-primary: #1A2742;
  --color-secondary: #F2B705;
  --color-accent: #E2E8F0;
  --color-bg: #161b2d;
  --color-surface: #222846;
  --color-neon: #00FFC3;
  --color-cta: #F2B705;

  --shadow-1: 0 2px 12px rgba(44, 255, 237, 0.06), 0 1.5px 5px 0 rgba(26,39,66,0.18);
  --shadow-glow: 0 0 8px 2px var(--color-neon);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ---------------------- LAYOUT CONTAINERS ---------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

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

/* Card and Flex containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 22px;
  min-width: 280px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 0 15px 2px var(--color-neon), var(--shadow-1);
  transform: translateY(-3px) scale(1.02);
}

.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  color: #1A2742;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(44,255,237,.09), 0 4.5px 20px 0 rgba(26,39,66,0.10);
  min-width: 270px;
  max-width: 360px;
  font-size: 1.04rem;
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-secondary);
}
.testimonial-card p {
  color: #1A2742;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 1em;
  font-weight: 600;
  text-align: right;
  align-self: flex-end;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 22px 16px 20px 16px;
  min-width: 240px;
  flex: 1 1 250px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 5px var(--color-neon));
}
.feature-item h3 {
  font-size: 1.12em;
  color: var(--color-neon);
  font-family: var(--font-display);
}
.feature-item:hover {
  box-shadow: var(--shadow-glow), var(--shadow-1);
  transform: translateY(-2px) scale(1.02);
}

.faq-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

/* ---------------------- TYPOGRAPHY ---------------------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: -1px;
  color: var(--color-accent);
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  color: var(--color-neon);
  margin-bottom: 12px;
  line-height: 1.1;
  text-shadow: 0 2px 16px #00FFC377;
}
h2 {
  font-size: 2.0rem;
  color: var(--color-accent);
  margin-bottom: 10px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.subheadline {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 1.17rem;
  margin-bottom: 20px;
}
p, ul, li, ol, blockquote {
  font-family: var(--font-body);
  font-size: 1.075rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}
blockquote {
  border-left: 2.5px solid var(--color-secondary);
  padding-left: 16px;
  font-style: italic;
  color: var(--color-accent);
  opacity: .89;
}
strong {
  color: var(--color-neon);
}

/* Spacing for lists */
ul,
ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
ul li,
ol li {
  margin-bottom: 7px;
  font-size: 1.04em;
}

/* HR for separation */
hr {
  border: 0;
  border-top: 1.5px solid var(--color-accent);
  margin: 32px 0;
  width: 80%;
}

/* ---------------------- BUTTONS & CTAS ---------------------- */
.button-primary, .cta {
  background: linear-gradient(90deg, #00FFC3 14%, #F2B705 86%);
  color: #13172b;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 1.09rem;
  padding: 13px 34px;
  box-shadow: var(--shadow-glow);
  border: none;
  text-shadow: 0 0 8px #fff8;
  cursor: pointer;
  transition: transform .15s, box-shadow .18s, background .18s;
  margin-top: 14px;
  display: inline-block;
  letter-spacing: .05em;
}
.button-primary:hover, .cta:hover {
  background: linear-gradient(90deg, #F2B705 12%, #00FFC3 88%);
  color: #222846;
  transform: scale(1.045) translateY(-2px);
  box-shadow: 0 0 14px 2.5px #00FFC3bb, 0 2px 12px #161b2dbb;
}
a.cta {
  margin-left: 20px;
}

.button-secondary {
  background: var(--color-bg);
  color: var(--color-accent);
  padding: 11px 30px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-neon);
  font-size: 1.02rem;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 2px 10px #00ffc320;
  cursor: pointer;
  transition: box-shadow .16s, color .16s, background .14s;
}
.button-secondary:hover {
  background: var(--color-neon);
  color: #13172b;
  box-shadow: 0 0 9px #00ffc3,
    0 2px 14px #161b2d70;
}

.button-link {
  color: var(--color-neon);
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.13s;
}
.button-link:hover { color: var(--color-secondary); }

/* ---------------------- HEADER & NAV ---------------------- */
header {
  background: #181e36;
  width: 100%;
  padding: 0;
  box-shadow: 0 2.5px 13px #10121c22;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.06rem;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  transition: background 0.16s, color 0.14s, box-shadow 0.11s;
}
header nav a:hover {
  background: var(--color-neon);
  color: #161b2d;
  box-shadow: 0 0 8px #00FFC388;
}
header nav a.cta {
  background: var(--color-secondary);
  color: #222846;
  font-weight: 700;
  margin-left: 18px;
  box-shadow: var(--shadow-glow);
  transition: background 0.15s, color 0.14s;
}
header nav a.cta:hover {
  background: var(--color-neon);
  color: #13172b;
}
header img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 16px #00FFC355);
}

/* Mobile nav trigger */
.mobile-menu-toggle {
  display: none;
  background: var(--color-neon);
  color: #181e36;
  font-size: 2.1rem;
  padding: 6px 20px 4px 20px;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 3px 12px #00FFC344;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.13s, box-shadow 0.13s;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #222846;
}

/* ---------------------- MOBILE MENU ---------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,27,45,0.99);
  transform: translateX(100vw);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.32s cubic-bezier(.54,1.6,.58,1);
  box-shadow: -8px 0 40px #00FFC32C;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  font-size: 2.55rem;
  border: none;
  padding: 16px 22px;
  margin-top: 8px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 36px;
  transition: background 0.13s, color 0.11s;
}
.mobile-menu-close:hover {
  background: var(--color-secondary);
  color: #222846;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--color-neon);
  font-size: 1.28rem;
  font-family: var(--font-display);
  padding: 11px 0;
  width: 100%;
  transition: color 0.13s, background 0.13s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #1a2742;
  padding-left: 12px;
}

/* ----------- HERO/SECTIONS ----------- */
main section {
  margin-top: 0;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #181e36 70%, #00FFC320 148%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  position: relative;
}

/* Distinct CTAs */
section .button-primary {
  margin-top: 22px;
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: #181e36;
  padding: 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0 24px 0;
}
footer img {
  height: 38px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px #00FFC322);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1em;
  border-radius: 7px;
  padding: 4px 8px;
  transition: background 0.16s, color 0.15s;
}
footer nav a:hover {
  background: var(--color-neon);
  color: #181e36;
}
footer .text-section {
  color: var(--color-accent);
  font-size: 0.98em;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer .text-section a {
  color: var(--color-neon);
  text-decoration: underline;
}

/* ---------------------- COOKIE CONSENT BANNER ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #151e32;
  color: #fff;
  box-shadow: 0 -4px 28px #00FFC322, 0 1.5px 16px #181e3622;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 28px;
  font-size: 1.02rem;
  animation: banner-in .43s cubic-bezier(.52,1.7,.36,.96);
}
.cookie-banner__text {
  flex: 1 1 280px;
  color: var(--color-accent);
  margin-right: 24px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .button-secondary {
  min-width: 120px;
}
.cookie-banner .button-tertiary {
  background: transparent;
  color: var(--color-neon);
  border: 1.5px solid var(--color-neon);
  border-radius: var(--radius-sm);
  padding: 9px 22px;
  transition: background 0.15s, color 0.10s;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-banner .button-tertiary:hover {
  color: #181e36;
  background: var(--color-neon);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,39,66,0.95);
  z-index: 2100;
  animation: fadeInModal .27s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal {
  background: #222846;
  color: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 4px 32px #00FFC344, 0 2px 22px #171b2d69;
  padding: 38px 30px;
  max-width: 420px;
  width: 90vw;
  font-size: 1.03rem;
  animation: pop-in .38s cubic-bezier(.71,1.7,.45,.92);
}
@keyframes pop-in {
  0% { transform: scale(.7) translateY(60px); opacity: 0.2; }
  70% { transform: scale(1.02) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-neon);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-settings {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 24px;
  right: 36px;
  background: none;
  color: var(--color-neon);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}
.cookie-modal .close-modal:hover {
  color: var(--color-secondary);
  background: var(--color-surface);
}

/* ------------- ICON & SVG COLORS ------------- */
img[src*='icon-'] {
  filter: drop-shadow(0 0 4px #00FFC390) brightness(1.02);
}

/* ------------- OL Steps CTA ------------- */
ol {
  counter-reset: step;
}
ol li {
  font-weight: 600;
  position: relative;
  padding-left: 36px;
  min-height: 32px;
  margin-bottom: 11px;
  color: var(--color-accent);
}
ol li:before {
  counter-increment: step;
  content: counter(step);
  background: var(--color-neon);
  color: #181e36;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.05em;
  box-shadow: 0 2px 7px #00FFC344;
}

/* -------- Text links ---- */
a {
  color: var(--color-neon);
  text-underline-offset: 0.14em;
}
main a:not(.button-primary):not(.cta):not(.button-secondary):not(.button-link) {
  text-decoration: underline;
  color: var(--color-neon);
  transition: color 0.13s;
}
main a:not(.button-primary):not(.cta):not(.button-secondary):not(.button-link):hover {
  color: var(--color-secondary);
}

/* ----------- RESPONSIVE DESIGN -------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-list{
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .section,
  main section {
    padding: 25px 6px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .testimonial-list, .faq-list, .content-grid, .card-container,
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .section,
  main section {
    padding: 16px 1vw;
    margin-bottom: 28px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .card {
    min-width: 0;
    max-width: 100%;
    font-size: .98em;
    padding: 18px 8px 16px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 8px;
    font-size: .97em;
    gap: 14px;
  }
  .cookie-banner__buttons {
    padding-bottom: 7px;
    gap: 11px;
  }
  .cookie-modal {
    padding: 19px 5px 25px 12px;
  }
}

@media (max-width: 440px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.19rem; }
  .testimonial-card, .feature-item, .card {
    padding: 9px 2vw 9px 2vw;
    font-size: .96em;
  }
  .cookie-modal {
    padding: 12px 1vw 25px 4vw;
    font-size: .97em;
 }
}

/* --------- ACCESSIBILITY & SELECTION --------- */
::selection { background: var(--color-neon); color: #181e36; }
::-webkit-scrollbar {
  width: 8px;
  background: #1a2742;
}
::-webkit-scrollbar-thumb {
  background: #00FFC3aa;
  border-radius: 12px;
}

/* ----------- FORM ELEMENTS (if present later) ----------- */
input, textarea, select {
  background: #1a2742; color: var(--color-accent);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1.5px solid #2cc7b9;
  box-shadow: 0 0 6px #00ffc355 inset;
  font-size: 1.08em;
  transition: border .13s, background .14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-neon);
  background: #181e36;
}

/* Remove number spinner arrows on input[type=number] */
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] { -moz-appearance: textfield; }

/* ---------- Z-INDEX GUARDRAIL ---------- */
header,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 1000;
}

/* --------------- EXTRAS: Animations & Micro-interactions --------------- */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.98);
}
.header nav a.active {
  background: var(--color-neon);
  color: #181e36;
}

/* -------------- Decorative Flicker/Neon Animations (subtle) -------------- */
@keyframes neon-flicker {
  0%, 100% { text-shadow: 0 2px 16px #00FFC377; }
  48% { text-shadow: 0 2px 24px #00FFC3cf; }
  52% { text-shadow: 0 2px 19px #00FFC388; }
  58% { text-shadow: 0 2px 18px #F2B705cc; }
}
h1, .button-primary, .cta, .feature-item h3 {
  animation: neon-flicker 7.2s infinite cubic-bezier(.52,.1,.28,1.27);
}

/* --------------- PRINT OPTIMIZATION --------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  main section, .container {
    box-shadow: none !important;
    background: #fff !important;
    color: #13172b !important;
    padding-left: 0;
    padding-right: 0;
  }
}
