/* ==== CSS RESET & BASE ==== */
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, main, 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 {
  line-height: 1.15;
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2ECE1;
  color: #203354;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #253e77;
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: #FF8F3F;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ==== BRAND & PLAYFUL DYNAMIC COLORS ==== */
:root {
  --primary: #203354;
  --secondary: #6AB187;
  --accent: #F2ECE1;
  --bright-yellow: #FFE346;
  --bright-coral: #FF8F3F;
  --bright-blue: #34A6F6;
  --bright-green: #5CF2BB;
  --white: #fff;
  --shadow-main: 0 4px 16px rgba(62,119,180,.09), 0 1.5px 6px rgba(106,177,135,.05);
  --radius: 18px;
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.23;
  text-shadow: 0 3px 0 rgba(255, 227, 70, 0.08);
}
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }

p, ul, ol, dl {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.headline {
  font-size: 1.33rem;
  font-weight: 700;
  color: var(--bright-coral);
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.subheadline {
  font-size: 1.08rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-main);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px 2px rgba(50, 152, 220, 0.08);
  position: relative;
  transition: box-shadow 0.25s, transform 0.3s cubic-bezier(.65,-0.05,.18,1.12);
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(106,177,135,0.19);
  transform: translateY(-5px) rotate(-1.5deg) scale(1.021);
}
.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 {
  background: var(--bright-green);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(50,152,220,0.09);
  position: relative;
  min-width: 0;
  color: #203354;
}
.testimonial-card p {
  color: #1a2332;
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.testimonial-meta {
  font-size: 1rem;
  font-weight: 700;
  color: #0e1a2f;
  opacity: .86;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: stretch;
  list-style: none;
}
.features-list li {
  background: var(--bright-yellow);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  min-width: 230px;
  box-shadow: 0 2px 8px 0 rgba(255,227,70,0.07);
  border-radius: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  transition: background .2s;
  margin-bottom: 16px;
}
.features-list li img {
  width: 38px;
  height: 38px;
}
.features-list li:hover {
  background: #FFF8B2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list, .service-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-block {
  background: var(--bright-blue);
  padding: 26px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(50,152,220,0.08);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-block img {
  width: 42px;
  height: 42px;
}
.service-block:hover {
  box-shadow: 0 8px 20px rgba(106, 177, 135, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.service-block h2 { font-size: 1.25rem; color: #fff; margin-bottom: 7px; }
.service-block p { color: #fff; margin-bottom: 8px; }
.service-price { font-size: 1.08rem; font-weight: 700; background: #FFF8B2; color: var(--primary); padding: 3px 12px; border-radius: 14px; }

.text-section { margin-bottom: 24px; }
.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
  color: var(--primary);
}
.contact-details li {
  margin-bottom: 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
}

/***** FAQ *****/
.faq-list { margin-bottom: 10px; }
.faq-list dt {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--bright-coral);
}
.faq-list dd {
  margin-bottom: 14px;
  font-size: 1rem;
}

/***** PRICING TABLE *****/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 1.06rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-main);
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.price-note {
  color: var(--secondary);
  font-size: 0.93rem;
  margin-top: 10px;
  font-style: italic;
}

/***** HEADER + NAVIGATION *****/
header {
  width: 100%;
  background: linear-gradient(90deg, var(--bright-yellow) 0%, var(--accent) 80%);
  padding: 0;
  box-shadow: 0 7px 14px rgba(255,227,70,.05);
}
.header-branding {
  display: flex;
  align-items: center;
  gap: 13px;
}
.header-branding img {
  height: 46px;
  animation: logoPop 1s cubic-bezier(.6,1.3,.6,1) 1;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.main-nav a {
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--bright-blue);
  color: #fff;
}
.cta-btn.primary {
  background: var(--bright-coral);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 38px;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(255,143,63,0.11);
  transition: background .18s, box-shadow .23s, transform .16s;
  margin-left: 34px;
  text-shadow: 0 1px 5px rgba(255,227,70,.08);
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: var(--bright-yellow);
  color: var(--primary);
  transform: scale(1.06) rotate(-1.4deg);
}
.cta-btn.secondary {
  background: var(--bright-blue);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 11px 32px;
  box-shadow: 0 2px 8px 0 rgba(50,152,220,0.11);
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background .19s, transform .13s;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.04) rotate(1.4deg);
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  padding: 8px 16px;
  border-radius: 12px;
  margin-left: 24px;
  cursor: pointer;
  transition: background .18s, color .21s;
  box-shadow: 0 2px 8px rgba(106,177,135,.10);
  z-index: 1040;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--bright-yellow);
  color: var(--primary);
}

header .container {
  flex-direction: row;
  align-items: center;
  gap: 0px;
  padding-top: 13px;
  padding-bottom: 13px;
  justify-content: space-between;
}

/***** MOBILE MENU + OVERLAY *****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform 0.5s cubic-bezier(.85,0,.13,1.01);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 2px 80px 10px rgba(255,227,70,.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--bright-coral);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 27px;
  right: 27px;
  padding: 6px 14px;
  border-radius: 18px;
  z-index: 1100;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 70px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  padding: 14px 0;
  border-bottom: 2px solid #EEE;
  width: 90vw;
  max-width: 360px;
  transition: color .15s, background .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--bright-yellow);
  color: var(--bright-coral);
}

/***** FOOTER *****/
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 15px 0;
  margin-top: 42px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
}
.footer-branding img {
  height: 40px;
  display: block;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}
.footer-nav a {
  color: var(--accent);
  opacity: 0.85;
  transition: color .16s, opacity .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--bright-yellow);
  opacity: 1;
}
footer p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--bright-yellow);
  opacity: 0.92;
}

/***** ANIMATIONS (playful) *****/
@keyframes logoPop {
  0% { transform: scale(.82) rotate(-11deg); opacity: 0.7; }
  75% { transform: scale(1.05) rotate(2deg); }
  100% { transform: none; opacity: 1; }
}
@keyframes jellyWiggle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(.98,1.07) rotate(-2deg); }
  66% { transform: scale(1.04,.98) rotate(2deg); }
}
.cta-btn.primary, .cta-btn.secondary, .service-block, .features-list li, .testimonial-card {
  animation: jellyWiggle 1.18s cubic-bezier(.6,1,.63,1.3) 1;
}

/***** FORMATING FOR MODALS & OVERLAYS *****/
.modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(32,51,84, 0.17);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: #fff;
  padding: 26px 20px 22px 20px;
  border-radius: 18px;
  max-width: 96vw;
  width: 350px;
  box-shadow: 0 2px 24px 2px rgba(106,177,135,0.13);
  z-index: 1250;
  animation: logoPop .9s cubic-bezier(.76,1.43,.45,1.18) 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bright-yellow);
  color: var(--primary);
  font-size: 1.05rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 20px 10px 18px 10px;
  z-index: 2000;
  box-shadow: 0 -2px 18px rgba(255,227,70,0.13);
  animation: logoPop .7s;
  border-radius: 18px 18px 0 0;
}
.cookie-banner button {
  margin: 0 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  transition: background .15s, color .19s;
}
.cookie-accept {
  background: var(--bright-coral);
  color: #fff;
}
.cookie-accept:hover { background: var(--bright-blue); color:var(--white);}
.cookie-reject {
  background: var(--secondary);
  color: #fff;
}
.cookie-reject:hover { background: var(--primary); color:var(--bright-yellow);}
.cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--bright-blue);
}
.cookie-settings:hover {
  background: var(--bright-blue);
  color: #fff;
  border: 2px solid var(--bright-blue);
}

.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 38px 6px rgba(32,51,84,0.13);
  padding: 30px 24px 22px 24px;
  max-width: 98vw;
  width: 380px;
  color: var(--primary);
  z-index: 2100;
  animation: logoPop .8s cubic-bezier(.7,1.42,.55,1.18) 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  margin: 7px 0 17px 0;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: var(--bright-coral);
  width: 25px;
  height: 25px;
}

/***** SMOOTH TRANSITIONS *****/
* {
  transition: background 0.16s, color 0.17s, box-shadow 0.19s, border 0.13s, transform 0.14s;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1050px) {
  .container { max-width: 96vw; }
  .footer-nav { gap: 11px; }
}
@media (max-width: 900px) {
  header .container, footer .container { flex-direction: column; gap: 13px; align-items: flex-start; }
  .footer-nav { margin-top: 8px; }
}
@media (max-width: 768px) {
  .container { padding: 0 4vw; }
  .section {
    padding: 22px 4vw;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .headline { font-size: 1.13rem; }
  .main-nav { display: none; }
  .cta-btn.primary { margin-left: 0; font-size: 1rem; padding: 11px 24px; }
  .mobile-menu-toggle { display: block; }
  .footer-branding { margin-bottom: 16px; }
  .content-grid, .card-container, .features-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .service-summary, .service-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-block {
    font-size: .98rem;
    padding: 14px 11px;
  }
  .features-list li {
    min-width: 0;
    font-size: .95rem;
    padding: 14px 9px;
  }
  .pricing-table th, .pricing-table td { font-size: .95rem; padding: 10px 7px; }
  .footer-nav { flex-direction: column; gap: 2px; margin-top: 4px; }
  .mobile-nav { margin-top: 56px; padding-left: 13px; }
  .mobile-nav a {
    font-size: 1.07rem;
    width: 96vw;
    padding: 10px 0;
  }
}
@media (max-width: 520px) {
  .section, .cookie-modal { padding: 10px 2vw; }
  .footer-branding img { height: 31px; }
  .header-branding img { height: 33px; }
}

/***** OVERRIDES & PLAYFUL DETAILS *****/
.section {
  border: 3.8px dashed var(--bright-blue);
  background: linear-gradient(90deg,#fff 80%, #FFF8B2 100%);
}
.testimonial-card {
  border: 3.2px solid var(--secondary);
}
.features-list li {
  position: relative;
}
.features-list li::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bright-coral);
  opacity: .13;
}
.card::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bright-blue);
  opacity: .06;
  z-index: 1;
}
.card {
  z-index: 2;
}

/***** TRANSITION STATES FOR BUTTONS *****/
.cta-btn, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .14s, color .17s, transform .19s, box-shadow .19s;
}
.cta-btn:active, .cookie-banner button:active, .mobile-menu-toggle:active {
  transform: scale(.98);
}

/***** TESTIMONIAL SLIDER (simple horizontal scroll on desktop) *****/
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  scroll-behavior: smooth;
}

/***** ACCESSIBLE FOCUS STATES *****/
a:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-banner button:focus {
  outline: 2px solid var(--bright-blue);
  outline-offset: 1px;
}

/***** VISUAL HIERARCHY FOR HEADERS/LEADS *****/
.headline, .subheadline, h1, h2, h3 {
  text-shadow: 0 1px 2px rgba(106,177,135,0.10);
}

/***** MISCELLANEOUS *****/
::-webkit-scrollbar { width: 9px; background: #f7f7f7; }
::-webkit-scrollbar-thumb { background: #d0e2c1; border-radius: 8px; }

/***** PRINT STYLES (essential only) *****/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cta-btn, nav { display: none !important; }
  .section, .card, .service-block, .testimonial-card { box-shadow: none !important; background: #fff !important; }
  body, html { background: #fff; color: #000; }
}
