/*-------------------------------------------------
  RESET & BASIC STYLES
---------------------------------------------------*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2FAF5;
  color: #25603C;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #25603C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CBD5E;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b {
  font-weight: bold;
}

/*-------------------------------------------------
  BRAND COLORS & FONTS
---------------------------------------------------*/
:root {
  --primary: #25603C;
  --secondary: #7CBD5E;
  --accent: #F2FAF5;
  --bright-yellow: #FFE15D;
  --bright-blue: #4C9EEB;
  --fun-pink: #FF50B8;
  --playful-orange: #FFA14A;
  --white: #fff;
  --black: #212121;
  --shadow: 0 4px 16px 0 rgba(39,80,57,0.10);
  --radius: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
.section h2, h2.section-title {
  color: var(--bright-blue);
}
p, ul, ol, li {
  font-size: 1rem;
}

/*-------------------------------------------------
  LAYOUT CONTAINERS
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Hero Section (energetic & playful)
---------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #FFE15D 0%, #4C9EEB 100%);
  border-radius: var(--radius);
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.hero .content-wrapper {
  min-height: 280px;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.hero p {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}

/*-------------------------------------------------
  NAVIGATION & HEADER
---------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(124,189,94,0.09);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-left: 14px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--bright-yellow);
  color: var(--primary);
}
.main-nav>a {
  display: flex;
  align-items: center;
  height: 52px;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 30px;
  background: var(--bright-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 4px 14px rgba(76,158,235,0.12);
  transition: background 0.18s, box-shadow 0.2s, transform .15s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--playful-orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,161,74,.20);
  transform: translateY(-2px) scale(1.03);
}

/*-------------------------------------------------
  MOBILE NAVIGATION
---------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: var(--bright-yellow);
  border: none;
  border-radius: 12px;
  padding: 8px 14px;
  margin-left: 8px;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 1px 6px rgba(37,96,60,0.12);
  transition: background 0.2s, transform .15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  box-shadow: 0 8px 30px rgba(37,96,60,0.30);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.64,-0.04,.36,1.13);
  display: flex;
  flex-direction: column;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 22px;
  right: 30px;
  background: var(--bright-blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 151;
  cursor: pointer;
  transition: background 0.18s, transform .13s;
}
.mobile-menu-close:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: rotate(6deg) scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 90px;
  height: 100vh;
  background: #fff;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
  text-align: center;
  padding: 17px 0px;
  border-radius: 16px;
  width: 90vw;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--bright-yellow);
  color: var(--fun-pink);
}

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

/*-------------------------------------------------
  FLEX SPACING PATTERNS
---------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  flex: 1 1 280px;
  min-width: 270px;
  padding: 24px;
  transition: transform .15s, box-shadow .18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(37,96,60,.15);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
}

.content-wrapper > * {
  margin-bottom: 0;
}

/*-------------------------------------------------
  FEATURES & CARDS (Playful)
---------------------------------------------------*/
.features {
  background: #fffbe7;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(255, 225, 93, 0.07);
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}
.feature {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(76,158,235,0.07);
  flex: 1 1 230px;
  min-width: 210px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform .13s, box-shadow .14s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1.5px 4px rgba(124,189,94,0.24));
  animation: pop-in-icon 0.8s cubic-bezier(.38,1.06,.64,1.14) both;
}
@keyframes pop-in-icon {
  from { transform: scale(.7) rotate(-12deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.feature h3 {
  color: var(--fun-pink);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature p {
  color: var(--primary);
  font-size: .99rem;
  opacity: .84;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 22px rgba(76,158,235,0.16);
  transform: scale(1.03) rotate(-2deg);
}

/*-------------------------------------------------
  ABOUT, VALUE, PROCESS & SERVICES
---------------------------------------------------*/
.about, .values, .services-overview, .services-detail, .about-process, .contact-details, .cookies-policy, .privacy-policy, .rodo-info, .terms-of-service, .thank-you {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about ul, .values ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values ul li, .about ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--secondary);
}
.values ul li img, .about ul li img {
  width: 30px; height: 30px;
  filter: drop-shadow(0 1px 3px rgba(124,189,94,0.08));
}
.services-overview ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.services-overview ul li {
  font-size: 1.08rem;
  position: relative;
  padding-left: 1.5em;
  color: var(--bright-blue);
}
.services-overview ul li::before {
  content: '\2022';
  position: absolute;
  left: 0.3em;
  color: var(--fun-pink);
  font-size: 1.6em;
  line-height: 1;
  top: -.14em;
}
.services-detail h2, .about-process h2, .about h2 {
  color: var(--playful-orange);
}
.about-process ol {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
.about-process ol li {
  font-size: 1.06rem;
  color: var(--bright-blue);
  position: relative;
  padding-left: 1.5em;
}
.about-process ol li::before {
  counter-increment: step;
  content: counter(step, decimal) '. ';
  position: absolute;
  left: 0;
  color: var(--playful-orange);
  font-size: 1.18em;
  top: -.19em;
}
.about-process ol {
  counter-reset: step;
}
.trust-signals {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-signals p {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bright-yellow);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 11px;
  font-size: .99rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(255,225,93,0.14);
}
.trust-signals img {
  width: 22px;
  height: 22px;
}

/*-------------------------------------------------
  TESTIMONIALS (fun shadowed cards)
---------------------------------------------------*/
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonials .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 22px 32px 18px 18px / 24px 14px 36px 20px;
  box-shadow: 0 10px 32px 0 rgba(76,158,235,0.09), 0 1px 4px rgba(255,80,184,0.08);
  margin-bottom: 20px;
  padding: 20px 26px 18px 26px;
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow 0.23s, transform .15s;
  border-left: 6px solid var(--bright-blue);
  position: relative;
}
.testimonial-card p {
  color: var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: var(--fun-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Montserrat', cursive, sans-serif;
  color: var(--playful-orange);
  font-size: 3.5rem;
  opacity: .13;
  position: absolute;
  left: 12px; top: 10px;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: 0 16px 38px 0 rgba(76,158,235,0.13), 0 3px 10px rgba(255,80,184,0.08);
  transform: translateY(-3px) scale(1.025);
}
.testimonials .testimonial-card {
  margin-bottom: 22px;
}

/*-------------------------------------------------
  CONTACT & FOOTER
---------------------------------------------------*/
footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 20px 0;
}
footer .container {
  max-width: 1240px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-logo img {
  width: 124px;
  height: auto;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--bright-yellow);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline dotted #ffd70033;
  margin-bottom: 3px;
  transition: color 0.18s, text-decoration 0.16s;
}
.footer-nav a:hover {
  color: var(--bright-blue);
  text-decoration: underline solid var(--fun-pink);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  color: var(--accent);
  gap: 10px;
}
.contact-info img {
  width: 21px; height: 21px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.social-links a img {
  width: 32px; height: 32px;
  filter: drop-shadow(0 1px 3px rgba(124,189,94,0.10));
  transition: filter 0.13s, transform .12s;
}
.social-links a:hover img {
  filter: drop-shadow(0 4px 12px rgba(255,225,93,0.21));
  transform: scale(1.13) rotate(-6deg);
}

/*-------------------------------------------------
  FORMS (only for thank-you)
---------------------------------------------------*/
input, textarea, select, button {
  font-size: 1rem;
  font-family: inherit;
}
button, .button {
  cursor: pointer;
  border: none;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  padding: 12px 32px;
  font-weight: 700;
  transition: background 0.16s, transform .13s;
}
button:hover, .button:hover {
  background: var(--primary);
  transform: translateY(-2px) scale(1.04);
}
button:focus, .button:focus {
  outline: 2px solid var(--bright-yellow);
}

/*-------------------------------------------------
  RESPONSIVE DESIGN
---------------------------------------------------*/
@media (max-width: 1100px) {
  .footer .content-wrapper {
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .feature-grid {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .content-wrapper { gap: 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    min-width: unset;
    width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 14px 14px 14px;
  }
  .testimonials .content-wrapper {
    gap: 15px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    width: 94vw;
    padding: 14px 0;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 578px) {
  .hero {
    min-height: 170px;
  }
  .testimonial-card {
    padding: 12px 7px 10px 15px;
    border-radius: 17px 21px 12px 14px / 18px 13px 25px 12px;
  }
}

/*-------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: var(--primary);
  box-shadow: 0 0 48px rgba(37,96,60,.07), 0 -2px 10px #f2faf5;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  z-index: 1200;
  border-radius: 26px 26px 0 0 / 14px 14px 0 0;
  font-size: 1.07rem;
  animation: cookie-slide-up .8s cubic-bezier(.21,1.32,.69,1) both;
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  cursor: pointer;
  border: none;
  border-radius: 15px;
  padding: 10px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  transition: background 0.2s, color 0.14s, transform .14s;
  background: var(--bright-blue);
  color: #fff;
  margin-right: 6px;
  box-shadow: 0 2px 7px rgba(124,189,94,.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--playful-orange);
  color: #fff;
  transform: scale(1.045);
}
.cookie-btn.setting {
  background: var(--bright-yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--fun-pink);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,68,21,0.15);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: modal-fade-in .25s;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.cookie-modal-content {
  background: #fffbe7;
  padding: 36px 28px 28px 28px;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(124,189,94,0.17);
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-modal-scale-up .27s cubic-bezier(.63,1.38,.42,1) both;
}
@keyframes modal-modal-scale-up {
  from { transform: scale(.78); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--bright-blue);
  margin-bottom: 11px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 1.6rem;
  background: var(--fun-pink);
  color: #fff;
  border: none;
  border-radius: 100px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform .13s;
}
.cookie-modal-close:hover {
  background: var(--playful-orange);
  color: #fff;
  transform: scale(1.09) rotate(-8deg);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #d3eefd;
  border-radius: 12px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--bright-blue);
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .20s cubic-bezier(.54,1.18,.59,1);
  box-shadow: 0 1px 4px rgba(76,158,235,.08);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/*-------------------------------------------------
  PLAYFUL & ENERGETIC EFFECTS/ANIMATIONS
---------------------------------------------------*/
.section, .feature, .card, .testimonial-card, .about, .services-detail, .values, .contact-details {
  animation: playful-fadein 0.7s cubic-bezier(.82,-0.01,.15,1.05) both;
}
@keyframes playful-fadein {
  0% { opacity: 0; transform: translateY(35px) scale(.97) rotate(-2deg); }
  56%{ opacity: .9; }
  100% { opacity: 1; transform: none; }
}
.cta-btn, .cookie-btn, button, .feature, .testimonial-card {
  transition: background 0.19s, box-shadow 0.20s, color 0.13s, transform .14s;
}
@media (pointer: coarse) {
  .cta-btn:hover, .cookie-btn:hover, button:hover, .feature:hover, .testimonial-card:hover {
    filter: none;
    transform: none;
  }
}

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