/* --- 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F6F1;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #231d59;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
a {
  color: #3B2D7D;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.25, .8, .25, 1);
}
a:hover, a:focus {
  color: #F3B962;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #3B2D7D;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p, .text-section {
  font-size: 1rem;
  color: #231d59;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: #3B2D7D;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(59,45,125,0.05), 0 1.5px 3px rgba(59,45,125,0.03);
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #F3B962;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 25px;
  position: relative;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 10px;
  align-items: center;
}
nav a {
  display: block;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3B2D7D;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: #F3B962;
  color: #3B2D7D;
  text-decoration: none;
}

.cta-button {
  font-family: 'Quicksand', Arial, sans-serif;
  display: inline-block;
  color: #fff;
  background: #3B2D7D;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 8px rgba(59, 45, 125, 0.12);
  transition: background 0.2s cubic-bezier(.33,1,.68,1), box-shadow 0.18s;
  margin-left: 16px;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #F3B962;
  color: #3B2D7D;
  box-shadow: 0 4px 16px rgba(243,185,98,0.10);
  text-decoration: none;
}

button, .btn {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  background: #3B2D7D;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
button:hover, .btn:hover, button:focus {
  background: #F3B962;
  color: #3B2D7D;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3B2D7D;
  color: #fff;
  border: none;
  border-radius: 40px;
  height: 48px;
  width: 48px;
  font-size: 2rem;
  margin-left: 20px;
  cursor: pointer;
  z-index: 302;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F3B962;
  color: #3B2D7D;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 50px rgba(59, 45, 125, 0.09);
  z-index: 301;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 0 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.33,1,.68,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #3B2D7D;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  padding: 16px;
  margin-bottom: 30px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3B962;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: #3B2D7D;
  background: #F7F6F1;
  padding: 14px 0;
  border-radius: 14px;
  text-align: left;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3B962;
  color: #3B2D7D;
}

@media (max-width: 1024px) {
  .cta-button {
    margin-left: 6px;
    padding: 12px 22px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  background: #3B2D7D;
  color: #fff;
  border-radius: 0 0 48px 48px;
  padding: 60px 0 40px 0;
  text-align: left;
  margin-bottom: 60px;
  box-shadow: 0 10px 32px 0 rgba(59,45,125,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 620px;
  color: #fff;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero p {
  color: #fff;
  font-size: 1.15rem;
}
.hero .cta-button {
  background: #F3B962;
  color: #3B2D7D;
  margin-left: 0;
}
.hero .cta-button:hover {
  background: #fff;
  color: #3B2D7D;
}

/* --- FLEXBOX PATTERNS & SECTIONS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F6F1;
  padding: 28px 20px;
  border-radius: 20px;
  box-shadow: 0 1.5px 10px 0 rgba(59,45,125,0.06);
  min-width: 220px;
  min-height: 225px;
  max-width: 334px;
  flex: 1 1 240px;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #3B2D7D;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-item {
    min-width: 180px;
    padding: 18px 12px;
  }
}
@media (max-width: 580px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: unset;
    padding: 16px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0.5px 6px 0 rgba(59,45,125,.04);
  padding: 24px;
  max-width: 330px;
  flex: 1 1 250px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(59,45,125,0.04);
}
@media (max-width: 620px) {
  .section {
    margin-bottom: 28px;
    padding: 20px 6px;
    border-radius: 12px;
  }
  .content-wrapper {
    gap: 12px;
  }
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(59,45,125,0.10);
  padding: 16px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(59,45,125,0.10);
  min-width: 260px;
  max-width: 345px;
  flex: 1 1 290px;
  border-left: 8px solid #F3B962;
}
.testimonial-card p {
  color: #231d59;
  font-size: 1.05rem;
  margin-bottom: 0;
  font-weight: 500;
}
.testimonial-card span {
  color: #3B2D7D;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 10px 16px 14px;
    font-size: 0.97rem;
  }
}

.faq-list h3 {
  color: #3B2D7D;
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.faq-list p {
  font-size: 1rem;
  margin-bottom: 18px;
}

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

/* --- FOOTER --- */
footer {
  background: #3B2D7D;
  color: #fff;
  padding: 48px 0 24px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 38px;
  justify-content: space-between;
}
.footer-logo {
  flex: 1 1 160px;
  min-width: 120px;
}
.footer-logo img {
  width: 84px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: #F3B962;
  font-weight: 700;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  border-radius: 0;
  padding: 0;
  background: none;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.footer-contact a {
  color: #F3B962;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
}
@media (max-width: 700px) {
  footer {
    border-radius: 16px 16px 0 0;
    padding: 30px 0 12px 0;
    font-size: 0.98rem;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #3B2D7D;
  padding: 18px 16px 18px 16px;
  box-shadow: 0 -2px 16px rgba(59,45,125,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10000;
  transition: transform 0.5s cubic-bezier(.33,1,.68,1);
  border-radius: 28px 28px 0 0;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border-radius: 16px;
  font-size: 1rem;
  padding: 8px 20px;
  margin: 0;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #3B2D7D;
  border: 2px solid #3B2D7D;
  font-weight: 700;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #3B2D7D;
  color: #fff;
}
.cookie-banner .cookie-accept-btn {
  background: #3B2D7D;
  color: #fff;
}
.cookie-banner .cookie-accept-btn:hover, .cookie-banner .cookie-accept-btn:focus {
  background: #F3B962;
  color: #3B2D7D;
}
.cookie-banner .cookie-reject-btn {
  background: #F3B962;
  color: #3B2D7D;
}
.cookie-banner .cookie-reject-btn:hover, .cookie-banner .cookie-reject-btn:focus {
  background: #3B2D7D;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px 16px 0 0;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-buttons {
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
    width: 100%;
  }
}
/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(59,45,125,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px 0 rgba(59,45,125,0.11);
  padding: 36px 30px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  color: #3B2D7D;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #3B2D7D;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}
.cookie-modal label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #F7F6F1;
  border-radius: 16px;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  background: #3B2D7D;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  transition: left 0.18s, background 0.15s;
}
.cookie-toggle.enabled {
  background: #F3B962;
}
.cookie-toggle.enabled span {
  background: #F3B962;
  left: 16px;
}
/* Essential cookies always ON */
.cookie-modal .cookie-category.essential label {
  opacity: 0.6;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #d8d5ef;
}
.cookie-modal .cookie-category.essential span {
  background: #b2b2ca;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 7px;
    min-width: 0;
  }
}

/* --- BUTTONS & INTERACTIONS --- */
button, .btn {
  outline: none;
}
button:active, .btn:active {
  scale: 0.98;
}
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #F3B962;
  outline-offset: 2px;
}

/* --- DECORATIVE GEOMETRIC ACCENTS --- */
/* (Pure CSS geometric accent for style) */
@media (min-width: 900px) {
  .hero .container:before {
    content: '';
    display: block;
    position: absolute;
    top: -52px;
    left: -38px;
    width: 110px;
    height: 110px;
    background: #F3B962;
    opacity: 0.13;
    border-radius: 35px 24px 50px 14px;
    z-index: 0;
  }
}

/* --- UTILITY CLASSES --- */
.bg-primary {
  background: #3B2D7D !important;
  color: #fff !important;
}
.bg-secondary {
  background: #F3B962 !important;
  color: #3B2D7D !important;
}
.bg-accent {
  background: #F7F6F1 !important;
}
.rounded-large {
  border-radius: 36px !important;
}
.rounded-medium {
  border-radius: 18px !important;
}
.center {
  text-align: center !important;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .cta-button, button {
    font-size: 0.92rem;
    padding: 11px 18px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 1.13rem;
  }
  h2 {
    font-size: 1rem;
  }
}

/* --- MODERN BOLD MICRO-ANIMATIONS --- */
.cta-button, .card, .feature-item, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s cubic-bezier(.43, .84, .21, .96), transform 0.13s cubic-bezier(.43, .84, .21, .96);
}
.cta-button:active, .feature-item:active, .testimonial-card:active, .card:active {
  transform: scale(0.97);
}
.feature-item:hover, .testimonial-card:hover, .card:hover {
  box-shadow: 0 8px 24px 0 rgba(59,45,125,0.16);
}

/* --- END --- */
