/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F7F8F8;
  color: #1a222e;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #154889;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #1CB085;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
main {
  flex: 1;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
address {
  font-style: normal;
  color: #154889;
}

/* PLAYFUL DYNAMIC COLOR PALETTE */
:root {
  --primary: #154889;
  --secondary: #1CB085;
  --accent: #F7F8F8;
  --text-main: #1a222e;
  --text-dark: #17273f;
  --text-light: #fff;
  --card-bg: #fff;
  --highlight: #FFD246;
  --fun-pink: #FF50B4;
  --fun-orange: #FF8A3C;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }

p, li, address {
  font-size: 1rem;
  color: var(--text-main);
}
strong {
  color: var(--secondary);
}
blockquote {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.25rem;
  color: var(--fun-pink);
  margin-top: 32px; margin-bottom: 16px;
  padding-left: 20px;
  border-left: 5px solid var(--highlight);
  background: rgba(255, 250, 199, 0.3);
  border-radius: 12px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LAYOUT SECTIONS & FLEXBOX PATTERNS */
.section,
.hero-section,
.features-section,
.services-section,
.testimonials-section,
.about-section,
.contact-section,
.contact-teaser-section,
.privacy-section,
.rodo-section,
.cookie-policy-section,
.thank-you-section,
.terms-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 28px;
  position: relative;
}
@media (max-width: 768px) {
  .section,
  .hero-section,
  .features-section,
  .services-section,
  .testimonials-section,
  .about-section,
  .contact-section,
  .contact-teaser-section,
  .privacy-section,
  .rodo-section,
  .cookie-policy-section,
  .thank-you-section,
  .terms-section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 20px;
  }
}

/* FLEX SPACING (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(21,72,137,0.11), 0 1.5px 5px 0 rgba(255,138,60,0.03);
  padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  min-width: 230px;
  flex: 1 1 250px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,80,180,0.18), 0 2px 8px 0 rgba(28,176,133,0.07);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbea;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(28,176,133, 0.08);
  margin-bottom: 20px;
  border-left: 6px solid var(--primary);
  transition: box-shadow 0.3s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card > div {
  color: var(--fun-orange);
  font-family: 'Montserrat', sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(255,80,180,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg,#F7F8F8 70%,#FF8A3C 120%);
  margin-bottom: 60px;
  position: relative;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0 #FFD2462F, 0 2px 4px #FF8A3C15;
  animation: jumpIn 1s cubic-bezier(.89,-0.22,.68,1.51) both;
}
@keyframes jumpIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.92) rotate(-4deg); }
  80% { opacity: 1; transform: translateY(-8px) scale(1.04) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
.hero-section p {
  color: var(--secondary);
  font-size: 1.18rem;
  margin-bottom: 6px;
  font-weight: 500;
}

/* NAVBAR */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(21,72,137, 0.10);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.logo img {
  height: 50px; width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.02rem;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border 0.2s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--fun-pink);
  border-bottom: 2.5px solid var(--highlight);
}
.cta-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), var(--fun-pink) 70%);
  border-radius: 30px;
  padding: 12px 34px;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px 0 rgba(21,72,137,0.11);
  margin-left: 18px;
  margin-right: 12px;
  transition: background 0.23s, color 0.16s, transform .18s;
  border: none;
  letter-spacing: 0.5px;
  outline: none;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160%; height: 250%;
  background: radial-gradient(circle,rgba(255,210,70,0.10) 45%,transparent 70%);
  transform: translate(-50%, -50%) scale(0.9) rotate(-5deg);
  pointer-events: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, var(--fun-pink), var(--secondary) 80% );
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 2rem;
  z-index: 9003;
  transition: box-shadow 0.17s, background 0.14s;
  box-shadow: 0 2px 8px rgba(21,72,137,0.07);
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,72,137, 0.97);
  color: #fff;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 9900;
  transition: transform 0.41s cubic-bezier(.4,1.1,.6,1), opacity 0.27s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 10px 0;
  font-size: 2.2rem;
  color: #FFD246;
  background: none;
  border: none;
  z-index: 3;
  transition: color 0.21s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FF50B4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  align-items: center;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  background: rgba(28,176,133,0.19);
  border-radius: 24px;
  padding: 15px 36px;
  width: 80%;
  text-align: center;
  transition: background 0.21s;
  margin: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255,80,180,0.19);
  color: #FFD246;
}

/* MAIN CONTENT AREA SPACING */
.text-section {
  margin-bottom: 20px;
}
.usp-descriptions {
  margin-top: 18px;
}

span.achievement-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #ffe5fc;
  color: #154889;
  border-radius: 16px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 18px;
  box-shadow: 0 2px 12px 0 rgba(255,80,180,0.06);
  align-items: center;
  margin-top: 18px;
}

/* OFFER & SERVICES ICONS */
.services-section ul li img,
.features-section ul li img,
.text-section ul li img {
  height: 36px; width: 36px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.service-price {
  display: inline-block;
  font-size: 1rem;
  background: var(--highlight);
  color: var(--primary);
  border-radius: 15px;
  padding: 3px 12px;
  margin-left: 10px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 900;
  letter-spacing: 0.25px;
  vertical-align: middle;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #154889 80%, #FFD246 120%);
  color: #fff;
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 0;
  box-shadow: 0 -1px 8px #1548891b;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 20px 16px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD246;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.20s, border 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF50B4;
}
.footer-info {
  color: #fff;
  font-size: 0.98rem;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffde8;
  color: #154889;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -2px 18px 0 rgba(21,72,137,0.10);
  padding: 18px 12px 16px 12px;
  z-index: 9999;
  animation: slideUp 0.4s cubic-bezier(.24,.84,.62,1.11);
}
@keyframes slideUp {
  0% { transform: translateY(120px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.07rem;
  color: #154889;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(21,72,137,0.11);
  margin: 5px 0;
  transition: background 0.2s, color 0.16s, transform 0.21s;
  outline: none;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #1CB085 90%, #FFD246 120%);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg, #FFD246, #FF50B4 80% );
  color: #154889;
  transform: scale(1.04) rotate(2deg);
}
.cookie-btn.reject {
  background: #FF50B4;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1CB085;
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}
.cookie-btn.settings {
  background: #FFD246;
  color: #154889;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FF8A3C;
  color: #fff;
  transform: scale(1.05);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,72,137,0.62);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 32px 24px 24px 24px;
  max-width: 340px;
  width: 95vw;
  color: var(--text-main);
  box-shadow: 0 4px 32px 0 rgba(21,72,137,0.22);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: #1CB085;
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.cookie-category {
  margin: 8px 0 0 0;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1.02rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #154889;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  width: 0; height: 0;
  opacity: 0;
}
.cookie-switch span {
  display: block;
  width: 36px; height: 18px;
  background: #e5e7ec;
  border-radius: 20px;
  margin-left: 5px;
  position: relative;
  transition: background 0.2s;
}
.cookie-switch input[type="checkbox"]:checked + span {
  background: linear-gradient(90deg, #1CB085 70%, #FFD246 110%);
}
.cookie-switch span::after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1px 4px rgba(28,176,133,0.16);
}
.cookie-switch input[type="checkbox"]:checked + span::after {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  color: var(--fun-pink);
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
}

/* LISTS & UL/OL SPACING */
.features-section ul,
.about-section ul,
.services-section ul,
.text-section ul,
.privacy-section ul,
.cookie-policy-section ul,
.terms-section ul,
.rodo-section ul {
  margin-bottom: 14px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-section ul li, .about-section ul li, .services-section ul li, .text-section ul li {
  background: #fff;
  border-radius: 17px;
  padding: 12px 20px;
  box-shadow: 0 1px 7px 0 rgba(21,72,137,0.07);
  font-size: 1.08rem;
  color: var(--primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.features-section ul li strong,
.services-section ul li strong {
  color: var(--fun-pink);
}
.features-section ul li::before,
.services-section ul li::before,
.text-section ul li::before {
  content: '';
}
.services-section ul li {
  gap: 14px;
  background: #eafdff;
  border-left: 5px solid var(--secondary);
  color: #188E6A;
  font-weight: 600;
  min-height: 68px;
}
.text-section ol,
.features-section ol,
.about-section ol {
  margin: 0 0 14px 15px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ol li,
.features-section ol li,
.about-section ol li {
  background: #fff;
  border-radius: 14px;
  padding: 8px 18px;
  color: #154889;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
}

/* USP DESCRIPTIONS */
.usp-descriptions ul,
.usp-descriptions li {
  background: #FFFAEE;
  color: #FF8A3C;
  border-radius: 13px;
  padding: 9px 16px;
  font-weight: 600;
}

/* BADGES, PRICES, LABELS */

/* FORM & INPUTS */
input, textarea, select {
  border: 2px solid #e5e7ec;
  padding: 11px 15px;
  border-radius: 13px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #1CB085;
  outline: none;
}

/* THANK YOU PAGE */
.thank-you-section {
  background: #eafdff;
  border: 2px dashed #FFD246;
  text-align: center;
}

/* ERROR & SUCCESS MESSAGES */
.success-message {
  color: var(--secondary);
  background: #f0fff4;
  padding: 11px 22px;
  border-radius: 12px;
  text-align: center;
}
.error-message {
  color: #FF50B4;
  background: #fff4fa;
  padding: 11px 22px;
  border-radius: 12px;
  text-align: center;
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 15px; }
  .footer-nav { gap: 14px; }
}
@media (max-width: 900px) {
  .hero-section h1 { font-size: 2.1rem; }
  .card { padding: 18px; }
  .footer-info { font-size: 0.88rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .card-container, .content-grid { flex-direction: column; gap: 12px; }
  .testimonial-card, .card { padding: 15px; }
  .about-section, .privacy-section, .contact-section, .hero-section, .section, .cookie-policy-section, .terms-section, .thank-you-section {
    padding: 12px 3vw;
  }
  .cta-btn { padding: 10px 20px; font-size: 1rem; }
  .mobile-nav a { padding: 11px 0; font-size: 1.12rem; }
  .testimonials-section .testimonial-card { font-size: 0.97rem; }
}

/* ANIMATIONS for Dynamic Playful Feel */
.cta-btn,
.button,
.cookie-btn,
.mobile-menu-toggle {
  transition: background 0.18s, color 0.14s, transform 0.19s, box-shadow 0.12s;
}
.cta-btn:active,
.button:active,
.cookie-btn:active,
.mobile-menu-toggle:active {
  transform: scale(0.97) rotate(-1deg);
  box-shadow: 0 1px 2px 0 #FFD24649;
}

/* FUN MICRO-INTERACTIONS */
.cta-btn::before {
  content: '';
  position: absolute;
  left: -12%; top: -12%;
  width: 42%; height: 120%;
  background: rgba(255,80,180,0.13);
  border-radius: 40% 100% 60% 100%/80% 80% 80% 80%;
  transform: rotate(-10deg);
  filter: blur(16px);
  z-index: 0;
  opacity: 0.7;
}

/* Scrollbar Styles for Playful Feel */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F8F8;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #1CB085 50%, #FF50B4 100%);
  border-radius: 8px;
}

/* Accessibility - Focus Outlines */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed #FFD246;
  outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }

/* Prevent absolute for content: only decorative elements allowed! */

/* Z-index for overlays/windows/menus */
.mobile-menu { z-index: 9900; }
.cookie-modal-overlay { z-index: 10000; }
.cookie-banner { z-index: 9999; }

/* END CSS */
