/* === 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, textarea, select {
  font: inherit;
  border-radius: 0;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; }

/* === BRAND COLORS & FONTS === */
:root {
  --primary: #0D3C55;
  --secondary: #F6C600;
  --accent: #FFFFFF;
  --brand-pink: #FE5E74;
  --brand-blue: #29B6F6;
  --brand-green: #38D996;
  --brand-orange: #FE9C3F;
  --text-dark: #0D3C55;
  --text-light: #FFFFFF;
  --bg-light: #FCFAFF;
  --card-bg: #FFFFFF;
  --shadow: 0 6px 24px rgba(13, 60, 85, 0.10);
  --radius: 18px;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  letter-spacing: 0.02em;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  text-shadow: 2px 3px 0 var(--secondary), 0px 4px 12px rgba(255,195,0,0.04);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 11px;
}
.subtitle {
  font-size: 1.25rem;
  color: var(--brand-pink);
  margin-bottom: 25px;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
}
p {
  margin-bottom: 12px;
}
strong {
  color: var(--primary);
  font-weight: bold;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Dynamic playful section backgrounds */
.hero {
  background: linear-gradient(105deg, var(--secondary) 0%, var(--brand-pink) 100%);
  color: var(--text-dark);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 46px;
  animation: floatInDown 0.9s cubic-bezier(.38,-0.06,.77,1.01) 1;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 1px 1px 0 var(--accent), 0 2px 8px #F6C60040;
}
.hero .subtitle {
  color: var(--brand-blue);
}
.cta {
  background: var(--brand-green);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  animation: pulse-bg 2.2s infinite alternate;
}
@keyframes floatInDown {
  0% { transform: translateY(-80px); opacity: 0; }
  60% { transform: translateY(16px); opacity: 1; }
  100% { transform: none; }
}
@keyframes pulse-bg {
  0% { background-color: var(--brand-green); }
  100% { background-color: #76FFD4; }
}


/* === FLEXBOX UTILITY LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s;
  min-width: 250px;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.045) rotate(-1deg);
  box-shadow: 0 8px 28px rgba(253,72,129,.13), 0 4px 40px #10A8C0 0.07;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 275px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .13s;
  position: relative;
  border-left: 6px solid var(--brand-blue);
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px var(--brand-blue)24, 0 4px 32px #10A8C0 0.11;
  transform: scale(1.03) rotate(1.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow .17s, transform .19s;
}
.feature-block img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature-block h3 {
  color: var(--brand-orange);
  font-size: 1.08rem;
}
.feature-block:hover {
  box-shadow: 0 10px 40px rgba(246,198,0,.11), 0 4px 16px #FE9C3F 0.09;
  transform: scale(1.043);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  min-width: 200px;
  max-width: 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.12s;
}
.team-member:hover {
  transform: rotate(2deg) scale(1.03);
  box-shadow: 0 10px 40px #fe5e7427, 0 4px 16px #f6c60023;
}

/* === NAVIGATION === */
header {
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 2px 15px #0D3C5511;
  padding: 20px 0 16px 0;
  z-index: 35;
  position: relative;
  display: flex;
  align-items: center;
}
.logo img {
  width: 165px;
  height: auto;
  margin-right: 16px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  transition: color 0.13s;
  padding: 7px 3px;
  border-radius: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-pink);
  background: var(--secondary);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--text-light);
  background: var(--primary);
  border-radius: 30px;
  padding: 11px 32px;
  margin-left: 22px;
  box-shadow: 0 2px 10px #0d3c5515;
  border: 2px solid var(--primary);
  transition: background 0.13s, color 0.13s, box-shadow 0.18s, transform .09s;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-pink);
  color: var(--accent);
  border-color: var(--brand-pink);
  transform: scale(1.067);
  box-shadow: 0 4px 22px #fe5e7445;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  padding: 8px 17px;
  color: var(--brand-pink);
  margin-left: 22px;
  background: var(--secondary);
  border-radius: 10px;
  line-height: 1;
  border: none;
  transition: background .12s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-orange);
  color: var(--accent);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 92vw;
  max-width: 320px;
  background: var(--primary);
  z-index: 9999;
  box-shadow: -2px 0 32px var(--primary)25;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(.47,1.64,.41,.8);
  overflow-y: auto;
  padding: 32px 28px 18px 25px;
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 17px;
  right: 16px;
  font-size: 2.1rem;
  color: var(--secondary);
  border: none;
  background: transparent;
  z-index: 10001;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--brand-pink); background: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 58px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.22rem;
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-weight: 700;
  padding: 11px 0 11px 4px;
  border-radius: 7px;
  background: none;
  transition: background .15s, color .13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-pink);
  background: var(--secondary);
}

/* === HERO TITLE RESPONSIVENESS === */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero { min-height: 220px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
}

/* === TESTIMONIALS === */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.star-rating {
  margin-left: 10px;
  font-size: 1.14rem;
  color: var(--brand-orange);
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.client-logos img {
  height: 58px;
  opacity: 0.8; filter: drop-shadow(0 1px 6px #29b6f66a);
  transition: transform .15s;
}
.client-logos img:hover {
  transform: scale(1.11) rotate(-5deg);
  opacity: 1;
}

.success-stats {
  margin-top: 24px;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--primary);
  box-shadow: var(--shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.before-after-stories {
  background: var(--brand-blue);
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  margin-top: 20px;
}


/* === SERVICE / BLOG / PRICING BLOCK LAYOUTS === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
}
.service-list li {
  padding: 20px 14px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  margin-bottom: 14px;
  transition: box-shadow .14s, transform .13s;
}
.service-list li:hover {
  box-shadow: 0 8px 40px #f6c60042, 0 4px 13px #fe5e7417;
  transform: scale(1.017) rotate(-0.5deg);
}
.service-list img {
  width: 40px;
  height: 40px;
  margin-top: 3px;
}
.service-list .price {
  background: var(--brand-blue);
  color: var(--accent);
  border-radius: 14px;
  padding: 2px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 10px;
}
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.pricing-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 14px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  transition: box-shadow .12s, transform .10s;
}
.pricing-row:hover {
  box-shadow: 0 9px 36px #29b6f65a, 0 4px 8px #fe5e7413;
  transform: scale(1.012);
}
.pricing-row > div:nth-child(2) {
  color: var(--brand-orange);
  font-size: 1.1rem;
  font-weight: 800;
  margin-right: 16px;
}
.package-highlights {
  margin-top: 17px;
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}
.article-list article {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  min-width: 210px;
  width: 240px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .145s, transform .13s;
}
.article-list article:hover {
  box-shadow: 0 8px 40px var(--brand-orange)29, 0 1px 15px #f6c60013;
  transform: scale(1.05) rotate(-1deg);
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 19px;
}
.category-filters,
.search-bar {
  display: flex;
  align-items: center;
  gap: 11px;
}
.search-bar input {
  border: 1.5px solid var(--brand-pink);
  border-radius: 13px;
  padding: 8px 14px;
  font-size: 1rem;
  min-width: 120px;
}
.search-bar button {
  background: var(--primary);
  color: var(--accent);
  border-radius: 12px;
  padding: 7px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background .13s, color .13s;
}
.search-bar button:hover {
  background: var(--brand-pink);
  color: var(--accent);
}
.category-filters select {
  border-radius: 13px;
  border: 1.5px solid var(--brand-orange);
  padding: 8px 12px;
  font-size: 1rem;
  min-width: 90px;
  background: var(--accent);
}


/* === CONTACT SECTION === */
.contact-details, .map-location, .office-hours {
  background: var(--brand-blue);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 16px 17px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
}
.contact-details a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
}
.office-hours {
  background: var(--brand-green);
  color: var(--primary);
}
.faq-snippets {
  background: var(--brand-orange);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 16px 14px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}


/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 16px 0;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-logo img {
  width: 105px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  transition: color .13s;
  letter-spacing: 0.01em;
}
.footer-nav a:hover { color: var(--brand-blue); }
.footer-contact, .footer-legal {
  font-size: 0.97rem;
  margin-top: 4px;
}
.footer-contact a {
  color: var(--brand-pink);
  font-weight: 700;
  word-break: break-all;
}
.footer-legal a {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.97rem;
}
.footer-legal a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}
.newsletter-signup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.newsletter-signup input[type="email"] {
  padding: 7px 15px;
  border-radius: 15px;
  border: 1.7px solid var(--brand-blue);
  font-size: 1rem;
  margin-right: 8px;
}
.newsletter-signup button {
  background: var(--brand-blue);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 15px;
  border: none;
  font-family: 'Montserrat', Arial;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background .13s, color .13s;
}
.newsletter-signup button:hover {
  background: var(--secondary);
  color: var(--text-dark);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 13px;
  align-items: center;
  margin-top: 16px;
}
.social-links img {
  width: 30px;
  height: 30px;
  filter: grayscale(0.2) brightness(1.3);
  transition: transform .14s, filter .15s;
  border-radius: 50%;
}
.social-links img:hover {
  transform: scale(1.08) rotate(-7deg);
  filter: none;
  background: var(--brand-pink);
}
.footer-copy {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* === LEGAL (DSGVO, Datenschutz, Cookies, Nutzungsbedingungen Pages) === */
.legal {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 23px;
  margin-bottom: 60px;
  font-size: 1.06rem;
  line-height: 1.7;
}
.legal h1, .legal h2 {
  color: var(--brand-pink);
  margin-bottom: 13px;
}
.legal a {
  color: var(--brand-blue);
  text-decoration: underline;
  font-weight: 600;
}
.legal a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

/* === THANK YOU PAGE === */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 40px 0;
  gap: 20px;
}
.thank-you h1 {
  color: var(--brand-green);
  text-align: center;
}
.thank-you p {
  font-size: 1.2rem;
  text-align: center;
  color: var(--primary);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--secondary);
  color: var(--primary);
  z-index: 12000;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -8px 40px #0d3c551b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.05rem;
  animation: floatInUp 0.6s cubic-bezier(.27,1.35,.27,1.01);
}
@keyframes floatInUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--brand-pink);
  color: var(--accent);
  border-radius: 15px;
  border: none;
  padding: 9px 18px;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  box-shadow: 0 1px 8px #fe5e7440;
  transition: background .12s, color .12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner .cookie-settings {
  background: var(--primary) !important;
  color: var(--secondary) !important;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--brand-blue) !important;
  color: var(--accent) !important;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,14,32,0.42);
  z-index: 12999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 48px #0D3C55cc;
  padding: 32px 27px 18px 27px;
  max-width: 350px;
  width: 94vw;
  margin-bottom: 20px;
  font-size: 1.05rem;
  animation: floatInUp 0.54s cubic-bezier(.27,1.35,.27,1.01);
}
.cookie-modal h2 {
  color: var(--brand-pink);
  margin-bottom: 13px;
  font-size: 1.12rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 23px;
  background: var(--brand-orange);
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
  border: none;
}
.cookie-modal .toggle:checked {
  background: var(--brand-green);
}
.cookie-modal .toggle::before {
  content: '';
  display: block;
  width: 17px; height: 17px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 3px; top: 3px;
  transition: transform .18s;
}
.cookie-modal .toggle:checked::before {
  transform: translateX(15px);
}
.cookie-modal .category label {
  min-width: 126px;
  font-weight: 600;
}
.cookie-modal .toggle[disabled] {
  background: var(--brand-blue);
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  padding: 8px 19px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  background: var(--brand-pink);
  color: var(--accent);
  transition: background .14s, color .11s;
}
.cookie-modal-actions button:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* === LISTS, UL, OL === */
ul, ol {
  margin: 0 0 14px 0;
  padding: 0 0 0 18px;
  font-size: 1.06rem;
}
ul li, ol li {
  margin-bottom: 11px;
  position: relative;
  padding-left: 9px;
  line-height: 1.5;
}
ul li::before {
  content: '\25B8';
  color: var(--brand-blue);
  margin-right: 7px;
  font-weight: bold;
  font-size: 1.03em;
  display: inline-block;
  position: absolute;
  left: -18px;
}

/* === ANIMATIONS === */
@media (pointer: fine) {
  a, button, .btn-primary, .feature-block, .service-list li, .team-member, .card, .testimonial-card, .pricing-row, .article-list article {
    transition: background .13s, color .13s, box-shadow .17s, transform .16s;
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .feature-grid, .team-list, .testimonial-slider, .testimonial-list, .article-list, .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .team-list, .testimonial-slider, .testimonial-list, .article-list, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .pricing-row, .service-list li {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-signup {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .social-links {
    gap: 13px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .before-after-stories, .success-stats { margin-top: 16px; }
}
@media (max-width: 530px) {
  .container { padding: 0 7px; }
  .hero, .cta, .section, .legal {
    padding-left: 7px; padding-right: 7px;
  }
  .cookie-modal { padding: 18px 7px 9px 7px; }
}

/* === PLAYFUL DYNAMIC ICON SHADOW EFFECTS === */
.feature-block img, .service-list img, .social-links img, .client-logos img {
  box-shadow: 0 4px 18px #10A8C020;
  background: var(--accent);
  border-radius: 13px;
  background-repeat: no-repeat;
  margin-right: 6px;
}
.feature-block img {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-pink) 100%);
  padding: 7px;
}
.service-list img {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-orange) 100%);
  padding: 7px;
}

/* === MISC FORM ELEMENTS === */
input[type="email"]:focus, input[type="text"]:focus, select:focus {
  outline: 2px solid var(--brand-blue);
  border-color: var(--brand-pink);
}
label { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.03rem; }

/* === SCROLLBAR (DYNAMIC/PLAYFUL) === */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-pink);
}

/* === OVERRIDES FOR COLOR CONTRAST (TESTIMONIALS) === */
.testimonial-card, .testimonial-list .testimonial-card {
  background: var(--accent);
  color: var(--primary);
}
.testimonial-card p, .testimonial-card strong {
  color: var(--primary);
}

/* === UTILS === */
.hide { display: none !important; }
.visually-hidden {
  position: absolute!important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* === END === */
