/* === 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #EEF4F2;
  color: #285C5F;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #137276; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #EF709D; }
ul { list-style: disc inside; }
ol { list-style: decimal inside; }
section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 20px; box-shadow: 0 2px 12px 0 rgba(19,114,118,0.07), 0 1.5px 7px 0 rgba(44,183,169,0.035); position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 12px; }

/* === BRAND & PLAYFUL DYNAMIC COLORS === */
:root {
  --brand-primary: #137276;
  --brand-secondary: #EEF4F2;
  --brand-accent: #285C5F;
  --brand-pink: #EF709D;
  --brand-yellow: #FFF275;
  --brand-light-blue: #B8F3FF;
  --brand-fun-green: #6CD6B2;
  --brand-white: #fff;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Verdana, 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: var(--brand-primary);
}
h1 { font-size: 2.5rem; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li { font-size: 1rem; line-height: 1.7; }
strong, b { color: var(--brand-accent) }
.text-section h2, .content-wrapper > h2 {
  color: var(--brand-pink);
  font-family: 'Montserrat', cursive, sans-serif; /* Playful display font */
}

/* === UTILITY FLEX LAYOUTS === */
.header-flex, .footer-flex, .features-grid, .service-cards, .team-section, .testimonial-slider, .testimonial-list, .client-logos, .contact-details, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.features-grid, .service-cards, .team-section, .testimonial-slider, .testimonial-list, .client-logos, .contact-details, .blog-list {
  justify-content: flex-start;
}
.header-flex, .footer-flex {
  justify-content: space-between;
  align-items: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* === BUTTONS & CTA === */
.cta-primary {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(90deg, #FFF275 0%, #EF709D 100%);
  color: #285C5F;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(239,112,157,0.15);
  transition: transform .17s, box-shadow .25s, background .23s;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#EF709D 0%, #FFF275 100%);
  color: #137276;
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(255,242,117,0.22);
}
.readmore-link {
  color: var(--brand-pink);
  padding: 4px 18px 4px 0;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: color .2s, text-decoration .15s;
  border-radius: 8px;
}
.readmore-link:hover, .readmore-link:focus {
  color: var(--brand-accent);
  text-decoration: underline;
  background: #FFF27522;
}

/* === HEADER === */
header {
  background: var(--brand-primary);
  color: #fff;
  padding: 0;
}
.header-flex {
  padding: 24px 0 12px 0;
}
header img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 8px #B8F3FF44);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  z-index: 10;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 24px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-pink);
  color: #fff275;
}
.main-nav .cta-primary {
  color: var(--brand-accent);
  background: #fff275;
  font-size: 1rem;
  margin-left: 10px;
  box-shadow: 0 2px 12px rgba(255,242,117,0.13);
}
.main-nav .cta-primary:hover {
  background: #EF709D;
  color: #fff;
}

.mobile-menu-toggle {
  background: #fff275;
  color: var(--brand-primary);
  font-size: 2.2rem;
  height: 48px;
  width: 48px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(19, 114, 118, 0.06);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: rotate(10deg) scale(1.04);
}

/* === MOBILE NAVIGATION (OVERLAY MENU) === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 3001;
  box-shadow: -6px 0 32px #285c5f11;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.57,1.55,.52,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding: 0 0 0 12vw;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 26px 36px 0 0;
  cursor: pointer;
  transition: color .2s, transform .2s;
  z-index: 3020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-pink);
  transform: rotate(-14deg) scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  width: 240px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.25rem;
  font-family: 'Montserrat', cursive, sans-serif;
  background: #FFF27544;
  padding: 13px 0 13px 24px;
  border-radius: 25px 0 0 25px;
  width: 100%;
  transition: background .18s, color .16s, padding-left .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EF709D44;
  color: #EF709D;
  padding-left: 34px;
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(100deg, #B8F3FF 0%, var(--brand-secondary) 100%);
  position: relative;
  box-shadow: 0 2px 24px 0 #00b8d813;
  border-radius: 32px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.hero-section h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  letter-spacing: -0.04em;
  line-height: 1.13;
}
.hero-section p {
  color: #4b6e70;
  font-size: 1.22rem;
  max-width: 600px;
}

/* === FEATURES CARDS === */
.features-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}
.feature,
.service-card {
  background: #fff;
  flex: 1 1 220px;
  min-width: 205px;
  max-width: 278px;
  padding: 32px 20px 24px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 11px #6cd6b205, 0 1px 7px #eef4f299;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform .17s, box-shadow .17s;
  position: relative;
  overflow: visible;
}
.feature:hover, .service-card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 12px 34px #13727611;
  z-index: 2;
}
.feature img, .service-card img { height: 36px; width: 36px; margin-bottom: 12px; }

/* === TESTIMONIALS === */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px 16px 28px;
  min-width: 230px;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 26px #fff27517, 0 2px 8px #13727617;
  font-family: 'Montserrat', cursive, sans-serif;
  color: var(--brand-accent);
  font-size: 1.08rem;
  margin-bottom: 20px;
  border-left: 8px solid #EF709D;
  transition: box-shadow .22s, transform .16s;
}
.testimonial-card:hover {
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 18px 34px 0 #EF709D22, 0 3px 12px #13727611;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #185D61;
  font-size: 1.02rem;
  line-height: 1.7;
  font-family: 'Montserrat', cursive, sans-serif;
}
.testimonial-card span strong {
  color: #EF709D;
}

/* --- CLIENT LOGOS --- */
.client-logos {
  gap: 24px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.client-logos span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 18px 26px;
  background: #B8F3FF44;
  border-radius: 14px;
}
.client-logos img {
  height: 36px;
  width: auto;
  margin-right: 0;
}

/* === BLOG PREVIEW LIST === */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-preview {
  flex: 1 1 300px;
  max-width: 390px;
  min-width: 220px;
  background: #b8f3ff77;
  padding: 32px 24px 20px 24px;
  border-radius: 19px;
  box-shadow: 0 2px 16px #13727618;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow .2s, transform .15s;
  margin-bottom: 20px;
}
.blog-preview:hover {
  box-shadow: 0 8px 36px #EF709D11, 0 3px 13px #b8f3ff55;
  transform: translateY(-5px) scale(1.021) rotate(1.2deg);
}
.blog-preview h2 {
  color: #137276;
  font-size: 1.25rem;
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  min-width: 340px;
  background: #f9fafb;
  border-radius: 17px;
  box-shadow: 0 1px 8px #13727622;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 18px 0;
  font-family: 'Montserrat', cursive, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 1.08rem;
}
.pricing-table th {
  background: #EF709D;
  color: #fff;
  font-weight: 800;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #B8F3FF;
  background: #fff;
  transition: background .18s;
}
.pricing-table tbody tr:nth-child(odd) { background: #B8F3FF44; }
.pricing-table tbody tr:hover {
  background: #FFF27544;
}
.pricing-notes {
  margin-top: 14px;
  background: #b8f3ffee;
  border-radius: 11px;
  padding: 13px 18px 7px 18px;
  font-size: .95rem;
  color: #185D61;
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 0 0;
}
.trust-badges span {
  background: #FFF275;
  color: #285C5F;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 9px 19px 8px 15px;
  border-radius: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 9px #EBF3EE33;
}
.trust-badges img {
  height: 28px;
  width: 28px;
  margin-right: 0;
}

/* === FOOTER === */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 42px 0 39px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 19px #285C5F18;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 34px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}
.footer-flex > * {
  flex: 1 1 160px;
  min-width: 150px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: .93;
  font-family: 'Montserrat', sans-serif;
  transition: color .18s, opacity .16s;
  margin-bottom: 7px;
}
.footer-nav a:hover { color: #FFF275; opacity: 1; }
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: .95rem;
}
.footer-contact img {
  height: 18px; width: 18px; margin-right: 7px; }
.footer-social { flex-direction: row; gap: 17px; align-items: center; margin-top: 13px; }
.footer-social a img {
  background: #fff;
  border-radius: 9px;
  padding: 4px;
  box-shadow: 0 1px 6px #285C5F22;
  height: 32px; width: 32px;
  transition: transform .15s, box-shadow .17s;
}
.footer-social a:hover img {
  box-shadow: 0 2px 11px #fff27588;
  transform: scale(1.11) rotate(-3deg);
}

/* === LISTS, TABLES, TEXT === */
ul, ol { margin-left: 18px; margin-bottom: 16px; }
li { margin-bottom: 7px; }
table { border: none; background: transparent; }
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}

/* === CONTACT/LOCATION === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 10px;
}
.text-section ul img, .contact-details ul img {
  height: 19px; width: 19px; margin-right: 7px; margin-bottom: -3px; }
.location-map {
  background: #b8f3ff44;
  border-radius: 18px;
  padding: 16px 18px;
  min-width: 210px;
  max-width: 300px;
  font-size: .96rem;
  font-family: 'Montserrat', sans-serif;
}

/* === RESPONSIVE FLEXBOX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff275;
  color: #285C5F;
  font-family: 'Montserrat', cursive, sans-serif;
  box-shadow: 0 -2px 16px #EF709D22;
  padding: 26px 10px 22px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 4000;
  transition: transform .44s cubic-bezier(.6,.1,.53,1.18);
  transform: translateY(120%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 1.11rem;
  color: #137276;
  margin-bottom: 4px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.button-cookie {
  background: #EF709D;
  color: #fff;
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 11px 25px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background .18s, color .15s, transform .15s;
  margin: 0 3px;
}
.button-cookie.settings { background: #FFF275; color: #137276; border: 2px solid #EF709D; }
.button-cookie.reject {
  background: #B8F3FF;
  color: #285C5F;
  border: 2px solid #EF709D;
  font-weight: 600;
}
.button-cookie:hover {
  background: #fff;
  color: #EF709D;
  transform: scale(1.08);
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #b8f3ffcc;
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .29s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 98vw;
  padding: 36px 25px 28px 26px;
  border-radius: 22px;
  box-shadow: 0 3px 34px #13727617, 0 1px 16px #ef709d38;
  display: flex;
  flex-direction: column;
  gap: 21px;
  z-index: 4110;
  animation: modal-pop .34s cubic-bezier(.5,1.59,.48,1.07);
}
@keyframes modal-pop {
  0% { transform: scale(.92) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #137276;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.03rem;
  font-family: 'Montserrat', sans-serif; color: #285C5F;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #EF709D;
  margin-right: 8px;
}
.cookie-category input[disabled] {
  filter: grayscale(80%);
  opacity: .8;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal .button-cookie { min-width: 104px; }
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #EF709D;
  font-size: 2.0rem;
  cursor: pointer;
  font-weight: 700;
}

/* === SECTION & CARD SPACING (MANDATORY) === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.cta-primary, .card, .feature, .service-card, .testimonial-card, .blog-preview, .client-logos span {
  transition: box-shadow .19s, transform .18s, background .18s, color .12s;
}
.card:before, .feature:before, .service-card:before {
  content: '';
  display: block;
  position: absolute;
  right: -22px;
  top: -22px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #B8F3FF77 25%, #EF709D 88%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  animation: playful-bubble 2.9s infinite alternate cubic-bezier(.74,.10,.38,1.2);
}
@keyframes playful-bubble {
  0% { transform: scale(.93) translateY(0); }
  65% { transform: scale(1.01) translateY(13px); }
  100% { transform: scale(1.13) translateY(-6px); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 850px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero-section { padding-top:34px; padding-bottom:34px; }
  .features-grid, .service-cards, .blog-list, .testimonial-slider, .testimonial-list, .client-logos, .footer-flex {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section { padding: 32px 8px; }
  .footer-flex { gap: 23px 19px; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0; padding-right: 0;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-section h1 { font-size: 1.7rem; }
  h2 { font-size: 1.17rem; }
  .features-grid, .service-cards, .blog-list, .testimonial-slider, .testimonial-list, .client-logos, .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .feature, .service-card, .blog-preview, .testimonial-card {
    min-width: unset; max-width: 100%; width: 100%;
  }
  .footer-social { flex-direction: row; margin-top: 18px; }
  .testimonial-card { padding: 15px 10px 12px 13px; }
  .footer-flex > * { flex-basis: auto; min-width: 90px; }
  .contact-details { gap: 18px; }
  .location-map { min-width: 120px; }
  .section { padding: 24px 3vw; }
  .content-wrapper { gap: 18px; }
  .trust-badges { gap: 9px; }
  .client-logos span { padding: 9px 13px; font-size: .93rem; }
  .pricing-table, .trust-badges, .footer-contact, .footer-nav, .footer-social, .blog-preview { font-size: .95rem; }
}
@media (max-width: 500px) {
  body { font-size: 15px; }
  .hero-section h1 { font-size: 1.15rem; }
  .container { padding-left: 2px; padding-right: 2px; }
  .cta-primary,
  .cookie-actions .button-cookie, .cookie-modal .button-cookie { font-size: .94rem; padding: 10px 19px; }
}

/* == REMOVE GRID-ONLY, COLUMN-ONLY PROPERTIES (NONE USED) == */
/* No display:grid, grid-*, columns used anywhere */
