/* ===== 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F7F8FB;
  color: #272643;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2071FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A46BFF;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
button, input[type="submit"] {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  background: #fff;
  font-size: 16px;
}
th {
  background: #EFEFFF;
  font-weight: 700;
}
tr:nth-child(even) td {
  background: #FBFBFF;
}
/* ===== BRAND FONTS ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #272643;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
p, ul, ol, li, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #353971;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(130deg, #F7F8FB 85%, #EDE5FF 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(188, 188, 255, 0.11);
}
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper
{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-banner {
  background: linear-gradient(110deg, #E9F8FF 65%, #FFE9FC 100%);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(84, 111, 255, 0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 12px 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #A46BFF;
  color: #fff;
  border-radius: 42px;
  padding: 13px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(132, 107, 255, 0.10);
  border: none;
  transition: background 0.19s, box-shadow 0.22s, transform 0.16s;
  margin: 14px 0;
  text-align: center;
}
.btn-primary:hover,.btn-primary:focus {
  background: #2071FF;
  color: #fff;
  box-shadow: 0 4px 20px rgba(32,113,255,0.13);
  transform: translateY(-3px) scale(1.035);
}
.btn-secondary {
  background: #fff;
  color: #2071FF;
  border: 2px solid #A46BFF;
  border-radius: 42px;
  padding: 12px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(125, 112, 180, 0.11);
  transition: background 0.17s, color 0.17s, border 0.17s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #F8F6FF;
  color: #A46BFF;
  border: 2px solid #2071FF;
}

/* ===== FLEXBOX LAYOUTS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff8fd;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(168, 107, 255, 0.07);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 222px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 20px 22px 20px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(144, 166, 255, 0.13);
  transform: translateY(-2px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(60, 103, 206, 0.09);
  margin-bottom: 20px;
  flex: 1 1 330px;
  min-width: 290px;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #1a1835;
  font-size: 1.02rem;
}
.testimonial-card span {
  color: #6D41C1;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  margin-left: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(164, 107, 255, 0.13);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-accordion {
  background: #f9f8ff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 6px;
  box-shadow: 0 1px 7px rgba(162, 191, 236, 0.06);
  font-size: 1.02rem;
}
/* ===== HEADER, NAV & FOOTER ===== */
header {
  background: #fff;
  border-bottom: 1px solid #e9eaf3;
  box-shadow: 0 2px 10px rgba(160, 120, 255, 0.03);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 16px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #272643;
  padding: 5px 10px;
  border-radius: 15px;
  transition: background 0.18s, color 0.17s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EFEFFF;
  color: #A46BFF;
}
.main-nav .btn-primary {
  min-width: 140px;
}
footer {
  background: #FFF;
  padding: 42px 0 32px 0;
  border-top: 1px solid #eaeaff;
  box-shadow: 0 -2px 25px rgba(168, 107, 255, 0.04);
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 22px;
  align-items: center;
  font-size: 1.01rem;
}
.footer-nav a {
  color: #6D41C1;
  font-weight: 500;
  transition: color 0.18s;
  line-height: 1.7;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #2071FF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #5c5775;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #2071FF;
  font-size: 0.99rem;
}
.footer-contact img {
  width: 17px;
  vertical-align: middle;
  margin-right: 7px;
}

/* ===== TABLES ===== */
table thead tr {
  background: #EFEFFF;
}
table th, table td {
  border-bottom: 1px solid #ece4f8;
}
table {
  margin-bottom: 10px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(160, 113, 255, 0.05);
}

/* ===== FORM ELEMENTS ===== */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
select {
  outline: none;
  border: 1.5px solid #E3DEFF;
  background: #FBF9FF;
  border-radius: 13px;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.15s;
  margin: 6px 0;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
  border: 1.5px solid #A46BFF;
}
::placeholder {
  color: #bdb8e2;
  opacity: 1;
}
label {
  font-size: 0.97rem;
  color: #7a789b;
  font-weight: 500;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #F8F6FF;
  border-radius: 16px;
  font-size: 2rem;
  color: #A46BFF;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border: 1.5px solid #EFEFFF;
  box-shadow: 0 1px 6px rgba(164, 107, 255, 0.09);
  transition: background 0.18s, color 0.18s, border 0.14s;
  position: relative;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #EDE5FF;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(247, 248, 251, 0.98);
  box-shadow: 0 0px 40px rgba(164, 107, 255, 0.10);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.46,.33,.36,.97);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  background: #fff;
  color: #A46BFF;
  border-radius: 50%;
  font-size: 2.08rem;
  border: 2px solid #EFEFFF;
  width: 44px;
  height: 44px;
  box-shadow: 0 1px 5px rgba(164,107,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border 0.16s;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #EDE5FF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 42px 28px 0 32px;
  font-size: 1.13rem;
}
.mobile-nav a {
  color: #22206a;
  background: #F8F8FF;
  border-radius: 16px;
  padding: 14px 0 14px 14px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.17s;
  min-width: 265px;
  min-height: 42px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #EDE5FF;
  color: #A46BFF;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F8F6FF;
  border-top: 2.5px solid #A46BFF;
  z-index: 1500;
  box-shadow: 0 -1px 22px rgba(164, 107, 255, 0.09);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1.05rem;
  transition: transform 0.31s cubic-bezier(.42,.04,.46,.97), opacity 0.17s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner p {
  flex: 2 1 320px;
  color: #393476;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 210px;
}
.cookie-btn,
.cookie-settings-btn {
  border-radius: 36px;
  padding: 10px 30px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  border: 2px solid #A46BFF;
  color: #A46BFF;
  background: #fff;
  font-weight: 600;
  margin: 0 4px 0 0;
  transition: background 0.19s, color 0.16s, border 0.16s;
}
.cookie-btn:hover, .cookie-settings-btn:hover,
.cookie-btn:focus, .cookie-settings-btn:focus {
  background: #A46BFF;
  color: #fff;
}
.cookie-btn.accept {
  background: #A46BFF;
  color: #fff;
  border-color: #A46BFF;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2071FF;
  border-color: #2071FF;
  color: #fff;
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(44, 29, 75, 0.25);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.19s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 6px 40px rgba(164,107,255,0.14);
  min-width: 320px;
  max-width: 92vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop .38s cubic-bezier(.57,-0.32,.66,1.33);
}
@keyframes modalPop {
  0% {transform: scale(0.89) translateY(30px); opacity: 0;}
  90% {opacity: 1;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  color: #A46BFF;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category-row label {
  color: #393476;
  font-weight: 500;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #2071FF;
  height: 20px;
  width: 20px;
  margin-right: 5px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 26px;
  top: 25px;
  background: #F8F6FF;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 1.5px solid #EFEFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #A46BFF;
  transition: background 0.17s, border 0.13s;
  z-index: 3;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A46BFF;
  color: #fff;
  border: 1.5px solid #2071FF;
}

/* ===== OTHER COMPONENTS ===== */
.filter-controls {
  margin: 18px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #7a789b;
}
.filter-controls a {
  color: #2071FF;
  font-weight: 500;
  margin: 0 3px;
  transition: color 0.13s;
}
.filter-controls a:hover {
  color: #A46BFF;
  text-decoration: underline;
}

/* ===== SOFT PASTEL PALETTE VARIANTS (used for backgrounds, accents) ===== */
.bg-pastel-violet {
  background: #FAF5FF;
}
.bg-pastel-blue {
  background: #E9F8FF;
}
.bg-pastel-pink {
  background: #FFE9FC;
}
.bg-pastel-mauve {
  background: #EFEFFF;
}

/* ===== ANIMATIONS & MICROS ===== */
.section,
.card,
.card-container,
.cta-banner,
.testimonial-card,
.feature-item {
  transition: box-shadow 0.18s cubic-bezier(.57,.09,.61,.93), transform 0.19s cubic-bezier(.48,-0.21,.43,1.16);
}
.card:hover, .testimonial-card:hover, .cta-banner:hover {
  box-shadow: 0 8px 26px rgba(172, 107, 255, 0.11);
  transform: translateY(-2px) scale(1.017);
  z-index: 1;
}
/* ===== UTILITIES ===== */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 26px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 26px; }
.text-center { text-align: center; }
.rounded-16 { border-radius: 16px; }
.box-shadow-1 { box-shadow: 0 1px 8px rgba(168, 107, 255, 0.06); }

/* ===== RESPONSIVE DESIGN (MOBILE-FIRST) ===== */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
  .footer-nav, .footer-contact {
    font-size: 0.93rem;
  }
}
@media (max-width: 900px) {
  footer .container, header .container {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .footer-nav {
    margin: 15px 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .container,
  .section,
  .cta-banner {
    padding: 20px 8px;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 38px;
    border-radius: 17px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-brand img {
    height: 36px;
  }
  .footer-contact {
    font-size: 0.90rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    min-width: unset;
    align-items: start;
    gap: 10px;
  }
  .card {
    min-width: unset;
    max-width: 100%;
  }
  .cta-banner {
    padding: 18px 11px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 8px 13px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  .mobile-nav a {
    min-width: unset;
    width: 95vw;
    font-size: 1.08rem;
    padding: 12px 0 12px 10px;
  }
}
@media (max-width: 450px) {
  .cookie-modal-content {
    padding: 22px 5vw 19px 5vw;
    min-width: unset;
  }
  .cookie-modal-close {
    right: 10px; top: 10px;
    width: 34px; height: 34px; font-size: 1.13rem;
  }
}

/* ===== PRINT HIDDEN ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
