/* RESET & NORMALIZATION */
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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #22223b;
  background: #F3F7FA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2D2D54;
  text-decoration: none;
  transition: color .18s cubic-bezier(.46,.03,.52,.96);
}
a:focus {
  outline: 2px dashed #06B29B;
  outline-offset: 2px;
}
strong {
  font-weight: 700;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* BRAND FONTS - playful and energetic */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.13;
  margin-bottom: 12px;
  color: #2D2D54;
  text-shadow: 0 3px 16px rgba(45, 45, 84, 0.08);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #06B29B;
}
h3 {
  font-size: 1.15rem;
}

/* CONTAINER & WRAPPER */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 2px rgba(45, 45, 84, 0.07);
  padding: 36px 26px;
}

/* ----- HEADER & NAVIGATION ------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 2px rgba(45,45,84,0.06);
  position: relative;
  z-index: 80;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 0;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: #06B29B;
  color: #fff;
}
.main-nav img {
  margin-right: 8px;
  width: 40px;
  height: auto;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #06B29B;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 13px;
  margin-left: auto;
  transition: background .18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #e0fbfa;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(45, 45, 84, 0.90);
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform .38s cubic-bezier(.56,.27,.54,1.25), opacity .38s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  color: #fff;
  background: #06B29B;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 18px 10px 18px;
  align-self: flex-end;
  box-shadow: 0 2px 8px 2px rgba(6, 178, 155, 0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 32px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #ffe;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 8px;
  border-radius: 8px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #06B29B;
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(114deg,#f9e8ff 0%,#d3fff4 100%);
  padding: 52px 0 42px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36px 2px rgba(45,45,84,.13);
  padding: 44px 28px 38px 28px;
  gap: 18px;
  min-width: 0;
  position: relative;
  margin: 0 auto;
  max-width: 650px;
  animation: heroPop .6s cubic-bezier(.53,-0.22,.39,1.1);
}
@keyframes heroPop {
  0% { transform: translateY(40px) scale(.96); opacity:0; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.hero h1 {
  font-size: 2.6rem;
  color: #2D2D54;
  margin-bottom: 10px;
}
.hero p {
  color: #4E4E70;
  font-size: 1.09rem;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffe962;
  color: #2D2D54;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 32px;
  border: none;
  padding: 16px 34px;
  margin-top: 8px;
  box-shadow: 0 2px 12px 1px rgba(255, 216, 62, 0.15);
  cursor: pointer;
  letter-spacing: .03em;
  transition: background 0.22s cubic-bezier(.54,0.02,.63,1.06), color 0.22s, box-shadow 0.19s;
  text-shadow: none;
}
.cta.primary {
  background: #06B29B;
  color: #fff;
  box-shadow: 0 2px 12px 1px rgba(6,178,155,0.18);
}
.cta:hover,
.cta:focus {
  background: #2D2D54;
  color: #ffe962;
  box-shadow: 0 2px 24px 4px rgba(45,45,84,0.16);
}

/* SECTION PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features,
.services,
.testimonials,
.legal,.about {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px 1px rgba(45,45,84,0.06);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.brand-promise {
  background: #ffe962;
  color: #2D2D54;
  padding: 24px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  margin-top: 12px;
  box-shadow: 0 2px 14px 2px rgba(255, 216, 62, 0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features & services list icons */
.features ul,
.services ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features ul li,
.services ul li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(45,45,84,0.07);
  padding: 13px 18px 13px 15px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  gap: 13px;
  line-height: 1.5;
  min-height: 60px;
  transition: background 0.21s;
}
.features ul li:hover,
.services ul li:hover {
  background: #f2fffa;
}
.features ul li img,
.services ul li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-top: 2px;
}
.services ul li span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #06B29B;
  margin-left: 6px;
  font-size: 1rem;
}

/* Ordered lists for process steps */
.services ol {
  margin-top: 12px;
  margin-bottom: 13px;
  padding-left: 18px;
}
.services ol li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 12px;
  line-height: 1.45;
}
.services ol li strong {
  color: #2D2D54;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(90deg, rgba(6, 178, 155, .12) 0%, #fff 100%);
  border-radius: 24px;
  box-shadow: 0 2px 24px 2px rgba(6, 178, 155, 0.08);
}
.testimonials .container {
  padding-bottom: 0;
}
.testimonials h2 {
  color: #2D2D54;
  margin-bottom: 24px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 14px 2px rgba(45,45,84,0.10);
  padding: 20px 24px 18px 22px;
  border-radius: 18px;
  min-width: 260px;
  max-width: 340px;
  color: #23213a;
  font-size: 1.04rem;
  position: relative;
  margin-bottom: 10px;
  border-left: 6px solid #06B29B;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px 4px rgba(45,45,84,0.15);
  transform: translateY(-2px) scale(1.035);
}
.testimonial-card .author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #06B29B;
  font-size: 1rem;
  margin-top: 2px;
}

/* LEGAL/TEXT BLOCKS */
.legal .container,
.about .container {
  padding-top: 32px;
  padding-bottom: 24px;
}
.legal h1, .about h1 {
  color: #2D2D54;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.legal .last-updated,
.about .last-updated {
  font-size: .93rem;
  color: #9997ca;
  margin-top: 12px;
  display: inline-block;
}

/* FOOTER */
footer {
  background: #2D2D54;
  color: #fff;
  padding: 39px 0 27px;
  position: relative;
  font-size: 1rem;
  z-index: 50;
}
footer .container {
  max-width: 1250px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #ffe962;
  text-decoration: underline;
  font-size: 1.01rem;
  font-weight: 500;
  padding: 3px 0;
  transition: color .14s;
}
.footer-nav a:hover { color: #fff; }
.brand-info span, .brand-info strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.brand-info strong {
  color: #ffe962;
}
.brand-info img {
  display: block;
  width: 60px;
  margin-bottom: 6px;
}
.contact-info {
  font-size: 1.01rem;
  line-height: 1.75;
}
.contact-info a {
  color: #ffe962;
  word-break: break-all;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.social-links a { transition: transform .17s; }
.social-links a:hover { transform: scale(1.15); }
.social-links img {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  padding: 22px 18px 18px 18px;
  background: #fffbe7;
  box-shadow: 0 -8px 24px 0 rgba(45,45,84,0.11);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-top: 4px solid #06B29B;
  animation: cookiePop .5s cubic-bezier(.49,1.08,.54,.98);
}
@keyframes cookiePop {  0% { transform: translateY(48px); opacity:0;}  100% {transform: translateY(0); opacity:1;} }
.cookie-banner p {
  color: #2D2D54;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 10px 28px;
  margin-right: 1px;
  background: #2D2D54;
  color: #ffe962;
  transition: background 0.18s, color 0.2s;
  box-shadow: 0 2px 10px 0 rgba(45,45,84,0.09);
}
.cookie-banner .cookie-accept {
  background: #06B29B;
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #2D2D54;
  color: #ffe962;
}
.cookie-banner .cookie-reject {
  background: #ffe962;
  color: #2D2D54;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #edc242;
  color: #2D2D54;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #2D2D54;
  border: 2px solid #06B29B;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #e0fbfa;
  color: #06B29B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #fff;
  z-index: 2500;
  border-radius: 24px;
  box-shadow: 0 14px 52px 0 rgba(45,45,84,0.21);
  min-width: 330px;
  max-width: 95vw;
  padding: 38px 30px 22px 30px;
  animation: modalFadeIn .45s cubic-bezier(.59,.32,.32,.95);
}
@keyframes modalFadeIn {
  0% { transform: translate(-50%,-40%) scale(.91); opacity:0; }
  100% {transform: translate(-50%,-50%) scale(1); opacity:1;}
}
.cookie-modal h3 {
  color: #2D2D54;
  font-size: 1.28rem;
  margin-bottom: 16px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.cookie-modal ul li span {
  font-weight: 600;
  margin-left: 2px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 24px;
  background: #d6f7ef;
  border-radius: 15px;
  position: relative;
  margin-right: 9px;
  transition: background 0.19s;
}
.cookie-modal .cookie-switch input {
  display: none;
}
.cookie-modal .cookie-switch::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  background: #fff;
  box-shadow: 0 1px 5px 0 #2D2D5422;
  transition: left 0.18s;
}
.cookie-modal .cookie-switch input:checked + .cookie-switch::before {
  left: 16px;
  background: #06B29B;
}
.cookie-modal .cookie-switch input:checked + .cookie-switch {
  background: #06B29B;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: #06B29B;
  color: #fff;
  transition: background .17s;
  margin-left: 7px;
}
.cookie-modal .modal-actions button:hover{ background: #2D2D54; color: #ffe962; }
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #efefef;
  color: #06B29B;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background .13s;
}
.cookie-modal .close-modal:hover { background: #06B29B; color: #fff; }

/* MISC */
.next-steps {
  background: #f3ede7;
  color: #2D2D54;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 26px;
  font-size: 1.01rem;
}
.next-steps a {
  color: #06B29B;
  font-weight: bold;
  text-decoration: underline;
}
.next-steps a:hover { color: #2D2D54; }

/* Contact details inside hero and features sections */
.contact-details {
  background: #f2fffa;
  padding: 18px 19px;
  border-radius: 12px;
  margin-top: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 9px 1px rgba(6,178,155,0.09);
}
.contact-details p {
  color: #23213a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 7px;
}
.contact-details a {
  color: #06B29B;
  word-break: break-all;
}

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.card,
.testimonial-card,
.features ul li,
.services ul li {
  transition: box-shadow .21s, transform .18s, background .16s;
}
.card:hover,
.features ul li:hover,
.services ul li:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 6px 26px 6px rgba(45,45,84,0.07);
}

/* --- SPACING BETWEEN BLOCKS --- */
.section:not(:last-child),
.features:not(:last-child),
.services:not(:last-child),
.testimonials:not(:last-child),
.legal:not(:last-child),
.about:not(:last-child) {
  margin-bottom: 60px;
}
.card-container, .content-grid, .testimonials .content-wrapper {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
/* Card min spacing */
.card, .testimonial-card, .brand-promise, .next-steps, .contact-details {
  margin-top: 16px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 7vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 20px;
  }
  .testimonial-card {
    min-width: 200px;
    max-width: 98%;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 21px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 1020;
  }
  .brand-info img {
    width: 48px;
  }
  .container {
    padding: 0 9px;
    max-width: 99vw;
  }
  .hero .content-wrapper, .text-section, .brand-promise, .next-steps {
    border-radius: 15px;
    padding: 22px 8px;
    font-size: .98rem;
  }
  .hero .content-wrapper { padding: 26px 7px 24px 7px; }
  .content-wrapper {
    gap: 16px;
  }
  .footer-nav, .contact-info, .brand-info, .social-links {
    font-size: .99rem;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .legal .container, .about .container {
    padding-top: 22px;
    padding-bottom: 16px;
  }
  .next-steps { padding: 13px 8px; }
  .brand-promise, .contact-details { padding: 13px 8px; }
}
@media (max-width: 560px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.16rem; }
  .footer-nav, .contact-info, .brand-info, .social-links {
    font-size: .95rem;
  }
  .cta, .cta.primary {
    min-width: 152px;
    font-size: .99rem;
    padding: 12px 16px;
  }
  .testimonial-card, .brand-promise { padding: 14px 7px; }
}
@media (max-width: 425px) {
  .hero .content-wrapper, .text-section { padding: 11px 4px; }
  .cta, .cta.primary {
    padding: 10px 10px;
  }
  .footer-nav { gap: 7px; }
}

/* --- Scrollbar Styling for playful feel --- */
::-webkit-scrollbar {
  width: 12px;
  background: #f7f7fd;
}
::-webkit-scrollbar-thumb {
  background: #f3ce3e;
  border-radius: 8px;
  border: 2px solid #f7f7fd;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffe962;
}

/* --- Fun font combo for random headings and playful dynamic feel --- */
h1, h2, .cta, .cookie-banner button, .mobile-nav a, .brand-promise, .next-steps {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: .02em;
}

/* Misc Fixes/Finishing Touches */
.card-content, .testimonial-card, .contact-details, .brand-promise, .features ul li, .services ul li {
  background-clip: padding-box;
}

/* Playful subtle floating effect */
.testimonial-card {
  animation: floatcard 2.8s ease-in-out infinite alternate;
}
@keyframes floatcard {
  0% { box-shadow: 0 2px 14px 2px rgba(45,45,84,0.10); }
  100% { box-shadow: 0 12px 34px 4px rgba(45,45,84,0.13); }
}

/* Error prevention: never grid/columns anywhere! */
/* All layouts are flexbox only and checked for proper spacing! */
