/* -------------------- 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;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAFBFE;
  color: #25233b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  color: #8643dd;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #22d2fe;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  background: #fff6fa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(80,100,120,0.07);
}
th, td {
  padding: 16px;
  text-align: left;
}
th {
  background: #f3eeff;
  color: #6d4fa1;
  font-weight: 700;
}
tr { border-bottom: 1px solid #ecd9fc; }
/* -------------------- BRAND FONTS -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 700; color: #4C2A99; margin-bottom: 18px; line-height: 1.15; }
h2 { font-size: 2rem; font-weight: 600; color: #503980; margin-bottom: 16px; line-height: 1.22; }
h3 { font-size: 1.25rem; font-weight: 600; color: #684ebb; margin-bottom: 10px; }
h4, h5, h6 { color: #967ecb; margin-bottom: 10px; }
strong, b { font-weight: 700; color: #3a307d; }
p { margin-bottom: 18px; color: #4c4370; }

/* -------------------- CONTAINERS & LAYOUT -------------------- */
.container {
  width: 100%;
  max-width: 1172px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(142,170,195,0.10);
  background: #fff9fb;
  padding: 32px 24px;
  transition: box-shadow 0.18s, background 0.18s;
}
.card:hover {
  background: #f2f0fe;
  box-shadow: 0 10px 32px rgba(120,110,255,0.09);
}
.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 28px;
  margin-bottom: 20px;
  background: #fff8fd;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(122,151,184,0.08);
  color: #271c42;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #271c42;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature-grid > div {
  background: #f6f2ff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(120,90,200,0.07);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 6px 28px rgba(90,75,220,0.10);
}

.text-section {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 24px auto;
  color: #4c4370;
  font-size: 1.1rem;
}

.footer-contact p, .footer-contact img {
  vertical-align: middle;
  font-size: 0.96em;
}


/* ----------- HEADER & NAVIGATION ----------- */
header {
  background: #fef8fd;
  box-shadow: 0 2px 12px rgba(60,30,100,0.05);
  position: relative;
  z-index: 30;
  border-bottom: 1.5px solid #ede3f7;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04em;
  color: #4c2a99;
  padding: 7px 13px;
  border-radius: 9px;
  transition: background 0.18s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #f3edff;
  color: #22d2fe;
}
.cta-primary {
  background: linear-gradient(100deg, #dcf9ff 14%, #f3edff 86%);
  color: #4C2A99;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 700;
  padding: 12px 32px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 14px rgba(140,160,200,0.10);
  transition: background 0.16s, color 0.18s, box-shadow 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22d2fe;
  color: #fff;
  box-shadow: 0 8px 30px rgba(39,210,254,0.12);
}

/* ----------- HERO SECTIONS ----------- */
.hero {
  background: linear-gradient(120deg, #f0e9ff 0%, #cff6fa 100%);
  padding: 60px 0 40px 0;
  text-align: center;
}
.hero h1 {
  color: #4c2a99;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.21rem;
  color: #6e5d99;
  max-width: 700px;
  margin: 0 auto 22px auto;
}

/* ----------- FEATURE/LIST/SECTION LAYOUTS ----------- */
.how-it-works ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 0;
  list-style-type: decimal-leading-zero;
  margin-left: 12px; /* visually align */
}
.how-it-works ol li {
  flex: 1 1 180px;
  min-width: 150px;
  max-width: 240px;
  background: #e8fafc;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(40,200,230,0.07);
  color: #534687;
}
.how-it-works ol li h3 {
  margin-bottom: 7px;
  color: #22d2fe;
}

/* USP/unordered list (icon + text) */
.usps ul,
.compliance ul,
.tips ul,
.tools ul,
.about-mission .text-section ul,
.milestones ul,
.register .text-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
  margin-bottom: 0;
}
.usps ul li, .compliance ul li, .tools ul li, .about-mission .text-section ul li, .milestones ul li, .register .text-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ecf7fa;
  border-radius: 11px;
  padding: 14px 15px;
  color: #4c4370;
  font-size: 1.08rem;
}
.usps ul li img, .compliance ul li img, .tools ul li img, .register .text-section ul li img {
  width: 34px;
  min-width: 24px;
  height: 34px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 5px #dcf9ff66);
  border-radius: 6px;
}

.tips ul li {
  background: #fbeaff;
  color: #715891;
}

/* Buttons & Interactions */
button, .cta-primary {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  outline: none;
}

button {
  border: none;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

/*  ----------- FAQ Accordions ----------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 14px 0;
}
.faq-accordion > div {
  background: #f2f4fd;
  border-radius: 12px;
  padding: 18px 22px;
  position: relative;
  box-shadow: 0 2px 10px rgba(110,108,192,0.07);
  transition: box-shadow 0.14s, background 0.16s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 22px rgba(100,90,170,0.12);
  background: #f9f5ff;
}
.faq-accordion h3 {
  color: #5d48b3;
  font-size: 1.07rem;
}

/* ----------- CTA Section ----------- */
.cta {
  background: linear-gradient(121deg, #cff6fa 0%, #f3edff 100%);
  padding: 44px 0;
  text-align: center;
}
.cta h2 {
  color: #22d2fe;
}

/* ----------- TABLES, FILTERS ----------- */
.price-table {
  width: 100%;
  margin: 0 0 24px 0;
  overflow-x: auto;
}
.price-table table {
  min-width: 320px;
}
.trend-filter {
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trend-filter select {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid #e6e4ec;
  background: #fafaff;
  font-size: 1.04em;
  color: #4c2a99;
  outline: none;
  transition: border-color 0.17s;
}
.trend-filter select:focus { border-color: #22d2fe; }

/* ----------- FOOTER ----------- */
footer {
  background: #f9f4ff;
  padding: 48px 0 28px 0;
  border-top: 1.5px solid #ede3f7;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  width: 100%;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-links {
  margin: 12px 0 0 0;
  color: #8a7bc7;
  font-size: 0.96em;
  text-align: center;
}
.footer-links a {
  color: #7565b7;
  font-size: 1em;
  padding: 2px 7px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  padding: 8px 0;
  color: #6851b7;
  font-size: 0.97em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #e8f7fd;
  padding: 5px;
  transition: box-shadow 0.15s, background 0.15s;
}
.footer-social a:hover img {
  background: #f9eaff;
  box-shadow: 0 4px 15px #ddd6f6;
}
footer small {
  margin-top: 18px;
  color: #8472b4;
  display: block;
  text-align: center;
  font-size: 0.89em;
}

/* -------------------- MOBILE BURGER NAVIGATION -------------------- */
.mobile-menu-toggle {
  background: #f6ebff;
  border-radius: 10px;
  font-size: 1.9em;
  color: #4c2a99;
  padding: 8px 14px;
  display: none;
  z-index: 120;
  position: relative;
  border: 0;
  box-shadow: 0 2px 7px rgba(80,90,200,0.07);
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #dbefff;
  color: #22d2fe;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242, 238, 246, 0.98);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.6,.11,.49,.99);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  overflow-y: auto;
  box-shadow: 0 10px 32px rgba(120,110,255,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2em;
  background: #ffe6ff;
  color: #4c2a99;
  border-radius: 10px;
  border: 0;
  padding: 7px 17px;
  z-index: 210;
  box-shadow: 0 1px 7px #e3e3f8;
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #dbefff;
  color: #22d2fe;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 19px;
  margin-top: 52px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 600;
  padding: 20px 18px;
  margin: 0 25px;
  border-radius: 10px;
  color: #4c2a99;
  background: #ecf3fd;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:last-child {
  background: #22d2fe;
  color: #fff;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22d2fe;
  color: #fff;
}

@media (max-width: 1020px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 180px;
    max-width: 220px;
    padding: 14px 8px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
  .content-wrapper, footer .content-wrapper {
    gap: 18px;
  }
  .section { padding: 30px 7px; margin-bottom: 34px; }
  .feature-grid { gap: 12px; }
  .card-container { gap: 12px; }
  .content-grid { gap: 11px; }
}

@media (max-width: 800px) {
  .container { padding: 0 6px; }
  .hero { padding: 35px 0 20px 0; }
  .feature-grid > div { min-width: 120px; max-width: 100%; }
  .feature-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
  .how-it-works ol {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: auto;
    padding: 0 7px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  main, .container { padding: 0 2vw; }
  .section { padding: 18px 2vw; }
  .feature-grid, .content-grid, .card-container, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 14px; }
  footer .content-wrapper { gap: 15px; }
}

@media (max-width: 450px) {
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .cta-primary { font-size: 0.99em; padding: 10px 12px; }
  .hero, .cta { padding: 18px 0; }
  .how-it-works ol li, .feature-grid > div, .card {
    padding: 13px 9px;
  }
}

/* ----------- COOKIE BANNER ----------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 5000;
  background: #fff7ef;
  box-shadow: 0 -2px 14px rgba(220,170,200,0.13);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 22px 18px 19px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookieFadeIn 0.84s;
}
@keyframes cookieFadeIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #4c4370;
  font-size: 1.01em;
  margin-bottom: 0;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-btn {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98em;
  padding: 9px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #e8ebfa;
  color: #4c2a99;
  margin-right: 4px;
  box-shadow: 0 0.5px 7px #e2d7f6;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept {
  background: #22d2fe;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:hover {
  background: #18b8e2;
}
.cookie-btn.reject {
  background: #ffe7fd;
  color: #4c2a99;
}
.cookie-btn.reject:hover {
  background: #ffd2f5;
}
.cookie-btn.settings {
  background: #f7f5ff;
  color: #9271ba;
}
.cookie-btn.settings:hover {
  background: #d2c7fc;
}

/* -------------------- COOKIE MODAL -------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 6000;
  background: rgba(58,40,76,0.10);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: cookieModalFadeIn 0.19s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff6fa;
  border-radius: 19px 19px 0 0;
  padding: 36px 26px 26px 26px;
  box-shadow: 0 3px 24px rgba(100,80,120,0.14);
  max-width: 400px;
  width: 96vw;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: cookieModalPop 0.33s cubic-bezier(.17,.67,.53,1.29);
}
@keyframes cookieModalPop {
  from { transform: translateY(40px) scale(.84); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #4C2A99;
  font-size: 1.26em;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-modal .cookie-category {
  margin-bottom: 15px;
  background: #f7f3ff;
  border-radius: 9px;
  padding: 17px 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 0.99em;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.cookie-modal .cookie-category.essential {
  background: #dcf9ff;
}
.cookie-modal .cookie-category.disabled {
  opacity: 0.7;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px; right: 15px;
  font-size: 1.6em;
  background: #fffcef;
  color: #967ecb;
  border: none;
  border-radius: 7px;
  padding: 2px 11px;
  transition: background 0.17s, color 0.18s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #4c2a99;
  background: #ffe6ff;
}
.cookie-modal .modal-actions {
  margin-top: 17px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ----------- MICRO-INTERACTIONS (Hover, Transitions) ----------- */
.card, .feature-grid > div, .testimonial-card, .faq-accordion > div, .cta-primary, .footer-social a img,
.mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-btn, .cookie-modal .close-cookie-modal {
  transition: box-shadow 0.17s, background 0.17s, color 0.18s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover {
  transform: translateY(-2px) scale(1.026);
  box-shadow: 0 7px 32px rgba(120,90,200,0.12);
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}
.mobile-nav a:active {
  transform: scale(0.98);
}

/* ------------- SCROLLBARS ------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #f5effc;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #d8d2ef;
  border-radius: 11px;
}
body {
  scrollbar-color: #d8d2ef #f5effc;
  scrollbar-width: thin;
}

/* ------------- ACCESSIBILITY & UTILS ------------- */
:focus {
  outline: 2px solid #22d2fe;
  outline-offset: 2px;
}
.hide { display: none !important; }

/* ------------- VISUAL HIERARCHY SPACING ------------- */
.section, .hero, .cta, .register, .thank-you, .privacy, .gdpr, .cookie-policy, .terms {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------- CUSTOM CLASSES FOR BRAND COLOR ACCENTS ------------- */
.accent { color: #22d2fe; }
.bg-accent { background: #22d2fe; color: #fff; }
.bg-primary { background: #f3edff; }
.bg-secondary { background: #cff6fa; }

/* --- END --- */
