/* 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;
  scroll-behavior: smooth;
}

body, html {
  height: 100%;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #315965;
  min-height: 100vh;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

a {
  color: #315965;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #B09873;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

strong, b {
  font-weight: bold;
}

/* BRAND COLORS */
:root {
  --primary: #315965;
  --secondary: #E9EBE3;
  --background: #fff;
  --accent: #B09873;
  --deep-accent: #7b6128;
  --cta: #ea5b16;
  --electric-blue: #20c8ec;
  --hot-pink: #ff378a;
  --yellow: #ffe101;
  --text: #263238;
  --light: #ffffff;
  --shadow: rgba(49, 89, 101, 0.12);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(49,89,101,0.04);
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

p, li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

@media (min-width: 600px) {
  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}

@media (min-width: 900px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.35rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 14px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section,
.hero,
.features,
.services,
.articles,
.testimonials,
.cta,
.pricing,
.contact,
.about,
.legal,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 6px 32px var(--shadow);
  background: var(--secondary);
  position: relative;
}

@media (min-width: 700px) {
  .section, .hero, .features, .services, .articles, .testimonials, .cta,
  .pricing, .contact, .about, .legal, .thankyou {
    padding: 56px 38px;
  }
  .content-wrapper {
    gap: 32px;
  }
}

/* HEADER/NAV */
header {
  position: sticky;
  top: 0;
  background: var(--background);
  min-height: 66px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px var(--shadow);
  padding: 0 16px;
}
header img {
  height: 56px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a.active, header nav a:focus, header nav a:hover {
  background: var(--accent);
  color: #fff;
}

.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(90deg, var(--electric-blue), var(--hot-pink), var(--accent), var(--yellow));
  background-size: 320% 100%;
  background-position: 0 0;
  border: none;
  border-radius: 70px;
  padding: 13px 34px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(49,89,101,0.14);
  transition: background-position 0.35s, transform 0.18s, box-shadow 0.25s;
  outline: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background-position: 90% 0;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 26px 0 rgba(32,200,236,0.13), 0 0px 54px rgba(255,55,138,0.09);
  color: #fff;
}
.cta-button.secondary {
  background: linear-gradient(90deg, var(--accent), var(--electric-blue));
  background-size: 250% 100%;
  color: #fff;
}

/* Hamburger for Mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 48px;
  background: transparent;
  border: none;
  font-size: 2.15rem;
  color: var(--primary);
  margin-left: 10px;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  border-radius: 7px;
  z-index: 1202;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 1050px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Desktop nav show/hide for breakpoints */
@media (max-width: 1049px) {
  header nav,
  header .cta-button {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(49,89,101,0.98);
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(0.71,0,0.48,1);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1203;
  border-radius: 10px;
  transition: background 0.14s;
  padding: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 74px 0 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: none;
  padding: 8px 0 8px 4px;
  border-radius: 7px;
  transition: color 0.18s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--yellow);
}

@media (min-width: 1050px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(99deg, var(--electric-blue) 0%, var(--yellow) 60%, var(--hot-pink) 100%);
  background-size: 180% 100%;
  color: var(--primary);
  min-height: 350px;
  margin-bottom: 40px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.09);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero .content-wrapper {
  background: rgba(233,235,227,0.77);
  padding: 28px 22px 28px 22px;
  border-radius: 23px;
  box-shadow: 0 2px 32px rgba(49,89,101,0.12);
  align-items: flex-start;
}
.hero h1, .hero p, .hero .cta-button {
  color: var(--primary);
}
.hero .cta-button {
  margin-top: 24px;
}

@media (min-width: 700px) {
  .hero {
    min-height: 450px;
    margin-bottom: 58px;
  }
}

/* FEATURE LIST SECTION */
.features ul,
.value-list,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.features ul li, .value-list li, .feature-list li,
.client-benefits ul li {
  background: #fff;
  color: var(--primary);
  border-radius: 13px;
  box-shadow: 0 4px 15px var(--shadow);
  padding: 16px 18px 16px 16px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 7px;
  min-width: 210px;
}
.features ul li img {
  width: 28px;
  height: 28px;
}

@media (max-width: 600px) {
  .features ul, .value-list, .feature-list, .client-benefits ul {
    flex-direction: column;
    gap: 12px;
  }
  .features ul li, .value-list li, .feature-list li, .client-benefits ul li {
    min-width: 0;
    width: 100%;
  }
}

/* SERVICE CARD STYLE (index+services) */
.service-list, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 30px 0;
  justify-content: space-between;
}
.service-list > div, .service-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px var(--shadow);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 240px;
}
.service-list > div h3, .service-block h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .service-list, .services-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ARTICLE/QUICK-TIP STYLES (Ratgeber) */
.category-filters {
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-filters button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1em;
  background: var(--electric-blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 14px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.12s;
  box-shadow: 0 2px 10px rgba(32,200,236,.09);
}
.category-filters button:hover, .category-filters button:focus {
  background: var(--hot-pink);
  color: var(--yellow);
  transform: translateY(-2px);
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.article-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 17px var(--shadow);
  padding: 18px 15px;
  flex: 1 1 260px;
}
.article-list h3 {
  color: var(--primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 4px;
}
.quick-tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.quick-tips-list li {
  background: var(--yellow);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

@media (max-width: 900px) {
  .article-list {
    flex-direction: column;
    gap: 10px;
  }
}

/* PRICING TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 17px var(--shadow);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1.5px solid var(--secondary);
  font-size: 1rem;
}
.price-table thead {
  background: var(--accent);
  color: #fff;
}
.price-table tbody tr:hover {
  background: var(--secondary);
  transition: background 0.16s;
}
.price-table th:last-child, .price-table td:last-child {
  text-align: right;
}
.price-table tr:last-child td {
  border-bottom: none;
}

.service-comparison-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 12px 0;
}
.service-comparison-list li {
  padding: 12px 14px;
  background: var(--electric-blue);
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.guarantee-badge img {
  height: 37px;
  filter: drop-shadow(1px 2px 3px rgba(225,161,32,0.16));
}

@media (max-width: 800px) {
  .price-table,
  .service-comparison-list {
    font-size: 0.98rem;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: var(--electric-blue);
  background: linear-gradient(101deg, var(--electric-blue) 63%, var(--accent) 112%);
  color: var(--primary);
}
.testimonials h2 {
  color: #fff;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 24px var(--shadow);
  margin-bottom: 20px;
  padding: 22px 22px 18px 22px;
  min-width: 200px;
  border-left: 7px solid var(--hot-pink);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.7;
}
.testimonial-card div {
  color: var(--primary);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (min-width: 600px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex: 1 1 310px;
    margin-bottom: 0;
  }
}

/* CTA SPECIAL STYLES */
.cta {
  background: var(--hot-pink);
  background: linear-gradient(95deg, var(--hot-pink) 30%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  border-radius: 28px;
  box-shadow: 0 7px 45px rgba(255,55,138,0.08);
  margin-top: 36px;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .cta-button{
  margin-top: 18px;
  background: linear-gradient(90deg, var(--yellow), var(--electric-blue));
}

/* THANK-YOU/LEGALS */
.thankyou {
  background: var(--yellow);
  color: var(--primary);
  box-shadow: 0 3px 19px var(--shadow);
  text-align: center;
}
.thankyou .follow-up-info {
  margin: 18px auto 12px auto;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  max-width: 580px;
  box-shadow: 0 2px 11px var(--shadow);
  text-align: left;
}
.legal {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 18px;
}
.legal h2 {
  color: var(--primary);
}

/* CONTACT */
.contact-data-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 17px;
}
.contact-data-list a {
  color: var(--electric-blue);
}
.map-placeholder {
  background: #f4f4f4;
  border: 1.5px dashed var(--primary);
  padding: 16px;
  border-radius: 8px;
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}

/* PROCESS STEPS (Kontakt) */
.process-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.process-steps ul li {
  background: var(--hot-pink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 42px 0 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
footer img {
  height: 48px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.14s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--yellow);
  opacity: 1;
}
.footer-contact {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  font-size: 0.98rem;
  opacity: 0.78;
}
.footer-contact a {
  color: var(--electric-blue);
  text-decoration: underline;
}

/* FLEXBOX UTILS (MANDATORY PATTERNS) */
.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; }

/* RESPONSIVE ALIGNMENT */
@media (max-width: 768px) {
  .text-image-section   { flex-direction: column; align-items: center; }
  .content-grid        { flex-direction: column; }
  .features ul         { flex-direction: column; }
  .service-list        { flex-direction: column; }
  .services-grid       { flex-direction: column; }
  .testimonial-card    { flex-direction: column; }
  .footer-contact      { align-items: flex-start; }
}

/* SPACING BETWEEN ALL CARDS/SECTIONS */
.section > *,
.features > *,
.services > *,
.articles > *,
.about > *,
.cta > *,
.pricing > *,
.contact > *,
.legal > *,
.thankyou > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.features > *:last-child,
.services > *:last-child,
.articles > *:last-child,
.about > *:last-child,
.cta > *:last-child,
.pricing > *:last-child,
.contact > *:last-child,
.legal > *:last-child,
.thankyou > *:last-child {
  margin-bottom: 0;
}

/* BUTTONS & INTERACTION */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  background: var(--cta);
  color: #fff;
  transition: background 0.16s, box-shadow 0.18s, color 0.16s, transform 0.12s;
  box-shadow: 0 2px 8px var(--shadow);
}
button:hover, button:focus {
  background: var(--hot-pink);
  color: var(--yellow);
  outline: none;
}

/* COOKIES CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 -1px 18px var(--shadow);
  padding: 19px 16px 19px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 5000;
  font-size: 1rem;
  animation: slideUpBanner 0.65s cubic-bezier(0.65, 0, 0.32, 1);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.04rem;
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cookie-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  border-radius: 7px;
  padding: 11px 16px;
  transition: background 0.13s, color 0.13s, transform 0.11s;
}
.cookie-banner .accept {
  background: var(--electric-blue);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--hot-pink);
}
.cookie-banner .reject {
  background: var(--hot-pink);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--electric-blue);
}
.cookie-banner .settings {
  background: var(--yellow);
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: #fff;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-bg {
  position: fixed;
  z-index: 6000;
  inset: 0;
  background: rgba(49,89,101,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBG 0.25s;
}
@keyframes fadeInModalBG {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 17px;
  max-width: 430px;
  width: 93vw;
  padding: 34px 22px 27px 22px;
  box-shadow: 0 12px 44px 0 rgba(32,200,236,0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideInModal 0.34s cubic-bezier(0.85,0,0.5,1);
}
@keyframes slideInModal {
  from { transform: translateY(60px) scale(.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  cursor: pointer;
  padding: 8px 4px 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}
.cookie-switch {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #E9EBE3;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.13s;
}
.cookie-switch:checked {
  background: var(--accent);
}
.cookie-switch:disabled {
  background: #B7B7B7;
}
.cookie-switch::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s;
}
.cookie-switch:checked::after {
  transform: translateX(16px);
}
.cookie-modal .cookie-info {
  font-size: 0.98rem;
  color: #5d6578;
  margin: 0 0 0 1.4em;
  padding-top: 0;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 7px;
}
.cookie-modal .modal-actions .accept {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-modal .modal-actions .accept:hover,
.cookie-modal .modal-actions .accept:focus {
  background: var(--hot-pink);
}
.cookie-modal .modal-actions .cancel {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-modal .modal-actions .cancel:hover,
.cookie-modal .modal-actions .cancel:focus {
  background: var(--electric-blue);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 14px;
  font-size: 1.3em;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  border-radius: 8px;
  transition: background 0.11s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 9px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 10px;
}

/* MISC/ACCESSIBILITY */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.001s !important;
  }
}

/* ELECTRIC HOVER ANIMATIONS */
.card,
.service-block,
.article-list li,
.testimonial-card {
  transition: box-shadow 0.19s, transform 0.13s, background 0.13s;
}
.card:hover, .service-block:hover, .article-list li:hover,
.testimonial-card:hover {
  box-shadow: 0 9px 30px 2px var(--hot-pink);
  background: var(--yellow);
  transform: translateY(-3px) scale(1.021);
}

/* DYNAMIC EFFECTS */
.cta-button::after {
  content: '';
  display: block;
  position: absolute;
  left: 25%;
  top: 10%;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  filter: blur(7px);
  transition: opacity 0.19s;
  pointer-events: none;
  opacity: 0.7;
}
.cta-button:hover::after {
  opacity: 1;
}

/* END */

