/* RESET & BASE -------------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background: #FCFAFF;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #242426;
  background: #FCFAFF;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.55,0,.1,1);
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', 'Roboto', Arial, sans-serif;
  color: #242426;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #7B55B0;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 1.15em;
}

/* Layout Containers ---------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.main, main {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(123, 85, 176, 0.060), 0 2px 8px 0 rgba(0,0,0,0.04);
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.55,0,.1,1), box-shadow 0.22s;
  min-width: 240px;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 35px 0 rgba(123,85,176,0.14), 0 4px 16px 0 rgba(0,0,0,0.07);
  z-index: 2;
}

.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;
  background: #FCFAFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,36,38,0.10);
  padding: 20px;
  margin-bottom: 24px;
  margin-top: 24px;
  position: relative;
  min-width: 220px;
  color: #26212a;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.12rem;
  color: #242426;
}
.testimonial-details, .testimonial-card span {
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #7B55B0;
  margin-left: 5px;
  letter-spacing: 0.04em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 204px;
}

.features-list, .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.features-list li, .features-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(123,85,176,0.05);
  padding: 18px 20px 18px 16px;
  min-width: 180px;
  gap: 10px;
  font-size: 1.06rem;
}
.features-grid > div {
  align-items: center;
  text-align: center;
  min-width: 180px;
}
.features-list img, .features-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}

.cta-block {
  background: #7B55B0;
  padding: 40px 0;
  border-radius: 32px;
  margin-bottom: 60px;
  color: #fff;
  box-shadow: 0 4px 32px rgba(123,85,176,0.12);
}
.cta-block .content-wrapper, .cta-block h2, .cta-block a {
  text-align: center;
  color: #fff;
}
.cta-block h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #fff;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.service-list li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(123,85,176,0.07);
  padding: 18px 20px 14px 16px;
  min-width: 200px;
}

.text-section {
  margin-bottom: 48px;
  padding: 40px 20px 20px 20px;
}
.map-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  background: #E9E9EB;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* SPACING ------------------------------------------------------------------------------------ */
main > section {
  margin-bottom: 60px;
}
.container:not(:last-child) {
  margin-bottom: 24px;
}

/* HEADER & NAVIGATION ------------------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(36,36,38,0.04);
  z-index: 30;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
nav a {
  color: #7B55B0;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav a:hover, .footer-nav a:hover {
  background: #E9E9EB;
  color: #242426;
}
.cta-primary {
  background: #7B55B0;
  color: #fff !important;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, transform 0.15s cubic-bezier(.8, .2, .2, 1);
  box-shadow: 0 3px 18px rgba(123,85,176,0.11);
  text-shadow: 0 1px 4px rgba(123,85,176,0.09);
}
.cta-primary:hover, .cta-primary:focus {
  background: #54397A;
  transform: translateY(-3px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: #7B55B0 !important;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-weight: 700;
  border: 2px solid #7B55B0;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.19s, border 0.19s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #E9E9EB;
  color: #54397A !important;
  border-color: #54397A;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #7B55B0;
  cursor: pointer;
  margin-left: 18px;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9E9EB;
}

/* MOBILE NAVIGATION --------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FCFAFF;
  z-index: 200;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.74,.02,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 4px 0 20px rgba(36,36,38,0.10);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #7B55B0;
  font-size: 2.2rem;
  align-self: flex-end;
  padding: 18px 22px 0 0;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #54397A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  gap: 10px;
  padding: 0 24px 18px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 1.14rem;
  color: #242426;
  padding: 14px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9E9EB;
  color: #7B55B0;
}
/* Hide desktop nav on mobile */
@media (max-width: 1000px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION -------------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(115deg, #E9E9EB 30%, #EBD2F8 100%);
  min-height: 350px;
  border-radius: 0 0 54px 54px;
  box-shadow: 0 14px 48px rgba(123,85,176,0.12);
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 330px;
  gap: 24px;
}
.hero h1 {
  color: #7B55B0;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 2.6rem;
  margin-top: 46px;
  text-shadow: 0 2px 8px #e1d6eb99;
}
.hero .subheadline {
  color: #242426;
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .cta-primary {
  margin-top: 0;
  margin-bottom: 10px;
}

/* FOOTER ------------------------------------------------------------------------------------- */
footer {
  margin-top: 80px;
  background: #FCFAFF;
  color: #242426;
  padding: 48px 0 32px 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -6px 36px rgba(123,85,176,0.07);
}
.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 58px;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #7B55B0;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 13px;
  transition: background 0.13s, color 0.13s;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.03rem;
}
.footer-contact img {
  width: 20px; height: 20px; margin-right: 8px;
  vertical-align: middle;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* UTILS & ARTISTIC DECOR ---------------------------------------------------------------------- */
.note {
  font-size: .92rem;
  color: #7B55B0;
  background: #E9E9EB;
  padding: 8px 14px;
  border-radius: 8px;
}
/* Artistic accents: drop-shadow for icons */
.features-grid img, .features-list img, .footer-contact img, .service-list img {
  filter: drop-shadow(0 3px 8px #e1d6eb55);
}

/* FORMATS FOR TEXT GRIDS, CONTACT DETAILS ----------------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 18px 0 20px 0;
  box-shadow: 0 2px 6px rgba(123,85,176,0.07);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 22px 0;
}
.category-list li {
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(123,85,176,0.045);
  padding: 11px 16px 9px 13px;
}

/* BUTTONS ------------------------------------------------------------------------------------- */
button, .cta-primary, .cta-secondary {
  outline: none;
  font-family: inherit;
}
button:focus, .cta-primary:focus, .cta-secondary:focus {
  box-shadow: 0 0 0 2px #7B55B033, 0 0 0 4px #54397A1a;
}

/* COOKIE CONSENT BANNER & MODAL --------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #242426;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 900;
  padding: 18px 30px 18px 22px;
  box-shadow: 0 -6px 26px 0 #0001;
  font-size: 1.05rem;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideUp .6s cubic-bezier(.64,-0.2,.23,1) both;
}
@keyframes cookieSlideUp {
  0% {transform: translateY(120%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 10px 22px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-btn.accept {
  background: #7B55B0;
  color: #fff;
}
.cookie-btn.accept:hover { background: #54397A; }
.cookie-btn.reject {
  background: #fff;
  color: #7B55B0;
  border: 2px solid #7B55B0;
}
.cookie-btn.reject:hover { border-color: #54397A; color: #54397A; }
.cookie-btn.settings {
  background: #E9E9EB;
  color: #242426;
}
.cookie-btn.settings:hover { background: #d2c8e6; }

.cookie-modal {
  position: fixed;
  z-index: 1001;
  background: rgba(36,36,38,0.85);
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade .4s cubic-bezier(.64,-0.2,.23,1);
}
@keyframes cookieModalFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 44px rgba(123,85,176,0.13);
  padding: 38px 36px 28px 38px;
  color: #242426;
  min-width: 340px;
  max-width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.08rem;
  animation: modalBounce .38s cubic-bezier(.8,-0.2,.23,1);
}
@keyframes modalBounce {
  0% { transform: scale(0.85) translateY(18px); opacity: 0; }
  80% { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: #7B55B0;
  margin-bottom: 10px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 18px; top: 14px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #7B55B0;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.16s;
}
.cookie-modal-content .close-modal:hover {
  color: #54397A;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #7B55B0;
}
.cookie-category label {
  font-size: 1rem;
  color: #242426;
  margin-right: 5px;
}
.cookie-category.essential label {
  color: #a9a9a9;
  font-weight: 600;
}

/* ANIMATION CLASSES --------------------------------------------------------------------------- */
.slide-in-right { animation: slideInRight .29s cubic-bezier(.7,.06,.19,.98); }
@keyframes slideInRight {
  from { transform: translateX(120%); }
  to { transform: translateX(0); }
}
.slide-out-right { animation: slideOutRight .27s cubic-bezier(.7,.06,.19,.98); }
@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(120%); }
}

/* RESPONSIVE DESIGN --------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .container { max-width: 98vw; }
  .content-wrapper { gap: 16px; }
  .features-list, .features-grid, .service-list, .card-container {
    gap: 12px 8px;
  }
}
@media (max-width: 768px) {
  .section, .text-section, .hero, .cta-block { padding: 26px 6px; }
  main > section { margin-bottom: 36px; }
  h1 { font-size: 1.5rem; margin-bottom: 15px; }
  h2 { font-size: 1.18rem; margin-bottom: 13px; }
  .cta-block { border-radius: 18px; }
  .footer-logo img { width: 37px; }
  .footer-contact { font-size: .99rem; }
  .features-list li, .features-grid > div, .service-list li, .category-list li {
    min-width: unset;
    flex: 1 1 100%;
    width: 95%;
    padding: 14px 10px 12px 8px;
  }
  .contact-details { padding: 10px 10px; }
  .mobile-menu {
    padding-top: 70px;
  }
}
@media (max-width: 650px) {
  .container { padding: 0 8px; }
  .content-wrapper, .features-list, .features-grid, .service-list, .card-container {
    gap: 8px;
  }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 15px 5px; }
  .card { padding: 18px 12px; }
  .cta-primary, .cta-secondary { padding: 10px 18px; font-size: .98rem; }
  .footer-contact { font-size: .93rem; }
}
/* Flex direction for text-image sections on mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ARTISTIC TOUCHES: Unique visual elements! --------------------------------------------------- */
.hero {
  position: relative;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  top: 42px; right: 2%;
  width: 120px; height: 120px;
  border-radius: 44% 56% 68% 32%;
  background: #F3ECF7;
  opacity: 0.92;
  z-index: 0;
  filter: blur(6px);
}
.hero .container, .hero .content-wrapper { position: relative; z-index: 1; }

.features-list li:before, .features-grid > div:before {
  content: '';
  display: block;
  width: 30px;
  height: 6px;
  background: #7B55B0;
  border-radius: 8px;
  margin-bottom: 7px;
  opacity: 0.08;
}
.features-list li:hover, .features-grid > div:hover {
  box-shadow: 0 8px 32px #c9b6df2f, 0 4px 10px #7b55b01a;
  transform: rotate(-1deg) scale(1.03);
  z-index: 2;
}

.section, .cta-block, .card, .testimonial-card, .features-list li, .features-grid > div, .service-list li, .category-list li {
  box-shadow: 0 2px 10px rgba(123,85,176,0.05);
  transition: box-shadow .18s, transform .17s;
}

/* TYPOGRAPHY SCALE & ARTISTIC FONT COMBO ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body { font-family: 'Roboto', Arial, sans-serif; }
h1, h2, h3 { font-family: 'Montserrat', Arial Black, Arial, sans-serif; }

/* MICRO-INTERACTIONS (card, button, navigation links) ---------------------------------------- */
.card, .features-list li, .features-grid > div {
  cursor: pointer;
}
.card:active, .features-list li:active, .features-grid > div:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px #a193af2f;
}

nav a::after, .mobile-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2.5px;
  border-radius: 3px;
  background: #7B55B0;
  transition: width 0.22s cubic-bezier(.8,.12,.15,1);
  margin-top: 4px;
}
nav a:hover::after, nav a.active::after, .mobile-nav a:hover::after, .mobile-nav a.active::after {
  width: 74%;
}

/* MISC & ACCESSIBILITY ------------------------------------------------------------------------ */
::-webkit-scrollbar { width: 7px; background: #e9e9eb33; }
::-webkit-scrollbar-thumb { background: #E9E9EB; border-radius: 4px; }
::selection { background: #7B55B0; color: #fff; }

[tabindex="0"]:focus {
  outline: 2px solid #7B55B0;
  outline-offset: 2px;
}

/* END OF CSS ---------------------------------------------------------------------------------- */
