/* --------------------------- */
/* Neon Peak Solutions         */
/* Vibrant Energetic UI 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #192858;
  background: #F4F4F7;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
}


/* ----------- BRAND COLORS ------------ */
:root {
  --primary: #192858;
  --secondary: #1DD8A1;
  --accent: #F4F4F7;
  --highlight: #F92873;
  --card-bg: #fff;
  --shadow: 0 4px 16px 0 rgba(25,40,88,0.10);
  --card-radius: 18px;
  --mobile-width: 768px;
}


/* ----------- TYPOGRAPHY -------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--primary);
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, li, span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
strong {
  font-weight: 900;
  color: var(--primary);
}


/* --------- LAYOUT & CONTAINERS -------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: transparent;
  border-radius: var(--card-radius);
}
.text-section {
  margin-top: 20px;
}


/* ----------- FLEXBOX LAYOUTS ----------- */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 32px 22px;
  flex: 1 1 300px;
  min-width: 250px;
  transition: box-shadow 0.2s,transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,40,88,0.16);
  transform: translateY(-2px) 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-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 32px 0 rgba(25,40,88,0.07);
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 500px;
  transition: box-shadow 0.2s,transform 0.14s;
}
.testimonial-card p {
  color: #232328;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--secondary);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(26, 216, 161, 0.16);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}


/* ----------- LISTS & ELEMENTS ---------- */
ul {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul li {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222340;
  font-size: 1rem;
}
ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
  margin-bottom: 20px;
  padding-left: 24px;
}
ol li {
  list-style: decimal inside;
  color: #383a54;
  font-weight: 500;
}

/* ----------- BUTTONS & CTAs ------------ */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 42px;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 1px 12px 0 rgba(29,216,161,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  margin: 16px 8px 0 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: #10b67c;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(25,40,88,0.16);
  transform: scale(1.03);
}
.cta-secondary {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.03);
}

/* ---------------- HEADER --------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(25,40,88,0.08);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  margin-right: 14px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 13px;
  border-radius: 20px;
  transition: background 0.19s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border: none;
  margin-left: 14px;
  cursor: pointer;
}


/* -------- MOBILE MENU --------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 990;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.6,.01,0,1),box-shadow 0.22s;
  box-shadow: 0 4px 32px 0 rgba(25,40,88,0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  margin: 20px 28px 0 0;
  color: var(--secondary);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 60px auto 0 auto;
  width: 88%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 20px 0 20px 14px;
  border-radius: 18px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}


/* ----------- MAIN HERO/COVER ----------- */
main > section:first-of-type {
  background: linear-gradient(90deg, #F92873 0%, #1DD8A1 90%);
  color: #fff;
  border-radius: 0 0 64px 64px;
  min-height: 220px;
  margin-bottom: 60px;
}
main > section:first-of-type h1,
main > section:first-of-type p,
main > section:first-of-type .cta-primary {
  color: #fff;
}
main > section:first-of-type .cta-primary {
  background: #192858;
  color: #1DD8A1;
  border: 2px solid #fff;
}
main > section:first-of-type .cta-primary:hover {
  background: #fff;
  color: #192858;
  border: 2px solid #1DD8A1;
}


/* ----------- FOOTER -------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 220px;
}
.footer-left img {
  height: 38px;
}
.footer-left p {
  font-size: 1rem;
  color: #F4F4F7;
  margin-top: 4px;
  line-height: 1.55;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 4px 0;
  flex: 3 1 440px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  opacity: 0.88;
  transition: color 0.14s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}


/* ----------- COOKIES CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(25,40,88,0.16);
  padding: 30px 24px;
  z-index: 1400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1),opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1rem;
  color: #222;
  flex: 2 1 220px;
  min-width: 180px;
  margin-bottom: 0;
}
.cookie-btn-group {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 28px;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.16s;
  margin-top: 5px;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #13ad7f;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--highlight);
  border: 2px solid var(--highlight);
}
.cookie-btn.reject:hover {
  background: var(--highlight);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--secondary);
}

/* ----- Cookie modal --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,40,88,0.4);
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .3s;
}
@keyframes fadein {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: #fff;
  padding: 38px 26px 24px 26px;
  border-radius: 24px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 32px 0 rgba(25,40,88,0.19);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  z-index: 1;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  appearance: none;
  background: #e5e5ef;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 24px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* --------------- UTILITY CLASSES & SPACING --------------- */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.pad-24 { padding: 24px; }
.pad-32 { padding: 32px; }
.flex-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* --------------- RESPONSIVE DESIGN ----------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 992px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-nav {
    gap: 8px 16px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 30px;
  }
  .card-container, .card-grid, .footer-nav, .footer-left {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 18px 8px 12px 8px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav,
  header .cta-primary {
    display: none !important;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  main > section:first-of-type {
    border-radius: 0 0 40px 40px;
  }
  .footer-nav {
    font-size: 0.91rem;
    gap: 6px 6px;
  }
  .cookie-banner p {
    min-width: auto;
    font-size: 0.95rem;
  }
  .cookie-banner {
    padding: 16px 7px;
    gap: 12px 8px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 7px 12px 7px;
  }
}

/* ----------------- ANIMATIONS & MICROINTERACTIONS ------------------- */
.cta-primary, .cta-secondary, .cookie-btn, .mobile-nav a {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.18s;
}
.mobile-menu {
  will-change: transform;
  transition: transform 0.32s cubic-bezier(.6,.01,0,1),box-shadow 0.2s;
}
.mobile-nav a {
  transition: background 0.12s, color 0.12s;
}


/* ----------------- SCROLLBAR (for overlays) ------------------ */
.cookie-modal::-webkit-scrollbar {
  width: 7px;
  background: #ececec;
}
.cookie-modal::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}

/* Summary of MANDATORY selectors (flex only):
.section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item */

/* ENDS */
