/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #15317E;
  background: #F7FAFF;
  min-height: 100vh;
}
a {
  color: #15317E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4FC16E;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 24px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #15317E;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
strong {
  color: #15317E;
}
p, li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: #212947;
  margin-bottom: 12px;
}
blockquote {
  background: #EFF8EA;
  border-left: 6px solid #4FC16E;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 12px 0 12px 0;
  font-style: italic;
  color: #10663c;
  box-shadow: 0 2px 8px rgba(79,193,110,0.08);
}
cite {
  display: block;
  margin-top: 10px;
  font-size: 0.99rem;
  color: #15317E;
  font-weight: bold; 
  letter-spacing: 0.02em;
}

/* SHARED SPACING & FLEX LAYOUTS (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(21,49,126,.08), 0 1.5px 8px rgba(0,0,0,0.05);
  padding: 28px 28px 18px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(21, 49, 126, 0.12);
  min-width: 240px;
  max-width: 360px;
  transition: transform 0.23s cubic-bezier(.23,1.02,.44,.98), box-shadow 0.23s;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(21,49,126,.14), 0 1.5px 8px rgba(79,193,110,0.07);
}
.testimonial-header {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(21,49,126,0.07);
  padding: 26px 22px 18px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
}
.features-grid > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 30px rgba(79,193,110, 0.14);
  background: #F3FFF8;
}
.features-grid img {
  margin-bottom: 10px;
  width: 38px;
  height: 38px; 
}

/* MAIN STRUCTURE */
.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 18px;
  box-sizing: border-box;
}
main {
  margin-bottom: 68px;
}
.content-wrapper {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* PLAYFUL DYNAMIC HERO BANNER */
.hero {
  background: #4FC16E;
  /* playful colored shape by pseudo */
  position: relative;
  overflow: hidden;
  min-height: 265px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -40px;
  top: -100px;
  width: 260px;
  height: 260px;
  background: #FEB948;
  opacity: 0.45;
  border-radius: 50%;
  filter: blur(1.5px);
  animation: hero-bubble 12s linear infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  background: #17ABE2;
  opacity: 0.29;
  border-radius: 44% 56% 64% 36%/64% 44% 56% 36%;
  filter: blur(0.7px);
  animation: hero-blob 16s linear infinite alternate-reverse;
}
@keyframes hero-bubble {
  to { left: 30px; top: -80px; }
}
@keyframes hero-blob {
  to { bottom: -30px; right: -22px; }
}
.hero h1, .hero p {
  color: #fff;
  filter: drop-shadow(0 2px 2px #178f4b33);
}
.hero h1 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px #41c16edd, 0 1px 4px #427FE455;
}
.hero p {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
}


/* BUTTONS - CTA + OTHER */
.cta-btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  margin: 10px 0 0 0;
  color: #fff;
  background: #15317E;
  border: none;
  border-radius: 2em 2em 1.4em 1.7em / 1.7em 1.6em 2em 1.9em;
  box-shadow: 0 2px 6px rgba(79,193,110,0.26);
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 2;
  transition: 
    background 0.18s, 
    box-shadow 0.28s ease,
    transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus, 
button:hover, button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #4FC16E;
  color: #15317E;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 24px #FEB94855, 0 1.5px 6px #15317E22;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 1.5px 12px rgba(21,49,126,0.07);
  position: relative;
  z-index: 1199;
}
header .container {
  display: flex;
  align-items: center;
  height: 72px;
  justify-content: space-between;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 19px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #15317E;
  padding: 7px 13px;
  border-radius: 20px;
  font-weight: 600;
  transition: 
    color 0.19s,
    background 0.19s;
}
header nav a:hover, header nav a:focus {
  color: #4FC16E;
  background: #E1F6E5;
}
header .cta-btn {
  margin-left: 13px;
  box-shadow: 0 2px 10px #4FC16E44;
  background: #4FC16E;
  color: #fff;
  font-size: 1.09rem;
}
header .cta-btn:hover,
header .cta-btn:focus {
  background: #15317E;
  color: #fff;
}
header .container a img {
  width: 145px;
  height: auto;
  margin-right: 24px;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: #15317E;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
  z-index: 1501;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #4FC16E;
  color: #fff;
  transform: scale(1.08) rotate(3deg);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2200;
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 2px 0 40px #4FC16E35;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #15317E;
  color: #fff;
  border: none;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2500;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #4FC16E;
  color: #fff;
}
.mobile-nav {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  padding: 70px 32px 24px 32px;
  gap: 18px;
  height: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15317E;
  font-size: 1.32rem;
  padding: 13px 0;
  width: 100%;
  border-radius: 16px;
  font-weight: 700;
  background: none;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4FC16E15;
  color: #4FC16E;
}

/* MAIN FLEX LAYOUTS (MANDATORY CLASSES) */
.team-member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.team-member-grid > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #FEB94814;
  padding: 18px 20px 16px 20px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-member-grid > div:hover {
  box-shadow: 0 12px 36px #17ABE222, 0 1px 12px #4FC16E22;
  transform: scale(1.035) rotate(-1deg);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  padding: 38px 0 25px 0;
  border-bottom: 1.5px solid #F0F3FA;
}
.footer-top > * {
  margin-bottom: 0;
}
footer {
  background: #fff;
  color: #15317E;
  font-size: 0.97rem;
  margin-top: 30px;
  box-shadow: 0 -2px 24px #FEB94807 inset;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-bottom {
  text-align: center;
  color: #646ea4;
  padding: 18px 0 11px 0;
  font-size: 0.99rem;
}

footer a {
  color: #15317E;
  transition: color 0.18s;
  font-weight: 600;
}
footer a:hover, footer a:focus {
  color: #4FC16E;
}
footer img {
  width: 54px;
  height: auto;
  margin-bottom: 11px;
}

/* PLAYFUL ELEMENTS & BADGES */
.feature-icons, .progress-tracking {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 20px 0 6px 0;
}
.feature-icons img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 3px #4fc16e36);
  transition: transform .15s cubic-bezier(.8,1.6,.8,1.2);
}
.feature-icons img:hover {
  transform: scale(1.17) rotate(-7deg);
}

.history-timeline ul {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
}
.history-timeline ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
}
.history-timeline ul li::before {
  content: '';
  display: inline-block;
  background: #FEB948;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
  box-shadow: 0 2px 6px #FEB94878;
}

/* PRICING/BADGES */
.pricing-overview ul {
  margin: 0 0 12px 0;
  padding: 0 0 0 22px;
}

.faq-list ul {
  margin: 0 0 0 0;
  padding: 0 0 0 18px;
}
.faq-list li {
  margin-bottom: 10px;
}

/* CARD & LIST LAYOUTS */
.testimonials,
.features-grid,
.team-member-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

/* Section - bottom border on last section */
main section:last-of-type {
  border-bottom: none;
}

/* Cookie Consent Banner (MANDATORY) */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #15317E;
  box-shadow: 0 -4px 32px #15317e16;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  padding: 22px 16px;
  min-height: 68px;
  gap: 28px;
  font-size: 1.03rem;
  animation: slideInBtmBanner .5s cubic-bezier(.62,1.25,.54,1.06);
}
@keyframes slideInBtmBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-consent-banner .cc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 17px;
  padding: 9px 20px;
  margin: 0 3px;
  background: #15317E;
  color: #fff;
  transition: background 0.15s, color 0.15s, box-shadow 0.25s;
  cursor: pointer;
}
.cookie-consent-banner button.accept {
  background: #4FC16E;
  color: #fff;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #15317E;
  color: #fff;
}
.cookie-consent-banner button.settings {
  background: #FEB948;
  color: #15317E;
  font-weight: 700;
}
.cookie-consent-banner button.settings:hover {
  background: #17ABE2;
  color: #fff;
}
.cookie-consent-banner button.reject {
  background: #E44D62;
  color: #fff;
}
.cookie-consent-banner button.reject:hover {
  background: #92002A;
}

/* Cookie Preferences Modal */
.cc-modal {
  position: fixed;
  z-index: 5700;
  left: 0; top: 0; right:0; bottom:0;
  height: 100vh;
  width: 100vw;
  background: rgba(21,49,126,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  animation: fadeBg .32s;
}
@keyframes fadeBg {
  from { background: rgba(21,49,126,0.0); }
  to { background: rgba(21,49,126,0.25); }
}
.cc-modal-content {
  background: #fff;
  padding: 36px 32px 28px 32px;
  border-radius: 23px 23px 24px 13px/21px 20px 27px 13px;
  box-shadow: 0 6px 60px #17ABE222, 0 2px 10px #FEB94811;
  min-width: 300px;
  max-width: 96vw;
  width: 430px;
  animation: popIn .29s cubic-bezier(.67,1.13,.8,1);
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.cc-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.46rem;
  margin-bottom: 14px;
}
.cc-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
}
.cc-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cc-category label {
  font-weight: 700;
}
.cc-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #4FC16E;
}
.cc-category.essential label {
  color: #18b35b;
  font-weight: 800;
}
.cc-close {
  position: absolute;
  right: 19px;
  top: 19px;
  width: 36px;
  height: 36px;
  background: #15317E;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  z-index: 5;
}
.cc-close:hover {
  background: #4FC16E;
}
.cc-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 24px;
}

/* Miscellaneous */
.progress-tracking h3 {
  color: #17ABE2;
  font-weight: 800;
}

/* FAQ and Pricing lists */
.pricing-overview h3,
.faq-list h3 {
  color: #15317E;
  font-size: 1.15rem;
}
.pricing-overview ul li,
.faq-list ul li {
  margin-bottom: 7px;
}

/*************** RESPONSIVE DESIGN ***************/
@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .team-member-grid,
  .features-grid,
  .testimonials {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-top {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 30px 0 15px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 7px;
  }
  .content-wrapper, .container {
    padding: 0 6px;
    min-width: 0;
  }
  .features-grid, .testimonials, .team-member-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .features-grid > div, .testimonial-card, .team-member-grid > div {
    min-width: 0;
    max-width: 100%;
    width: auto;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero {
    min-height: 130px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .hero p {
    font-size: 1rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.98rem;
    padding: 13px 6px 10px 6px;
  }
  .cookie-consent-banner .cc-actions {
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
  }
  .cc-modal-content {
    width: 98vw;
    padding: 16px 9px 12px 10px;
    min-width: 0;
    max-width: 99vw;
  }
}
@media (max-width: 500px) {
  .content-wrapper {gap: 13px;}
  .hero h1 { font-size:1.15rem; margin-bottom:6px; }
  .hero p { font-size:0.93rem; }
  h2 {font-size:1.19rem;}
  h3 {font-size:1.09rem;}
}

/************** MICRO-INTERACTION/ANIMATION ***************/
.cta-btn:active,
button:active,
input[type="submit"]:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px #17ABE255, 0 .5px 3px #4FC16E11;
}
.features-grid > div:active {
  transform: scale(.99);
}
.testimonial-card:active {
  transform: scale(.99);
}
.mobile-nav a:active {
  transform: scale(1.01) rotate(-1deg);
  color: #17ABE2;
}

/* Util Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }

/* END OF STYLE.CSS */
