/* --- CSS RESET & NORMALIZATION --- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; }
ol, ul { list-style: none; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }

/* --- BRAND FONTS + PLAYFUL FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&family=Fredoka+One&display=swap');

:root {
  --color-primary: #375063;
  --color-secondary: #a0b49b;
  --color-accent: #f6f4ed;
  --color-fun-pink: #ff7d8a;
  --color-fun-yellow: #ffe275;
  --color-fun-blue: #62b6e6;
  --color-fun-green: #56c596;
  --color-fun-orange: #ffb651;
  --color-white: #fff;
  --color-black: #222;

  --font-display: 'Montserrat', 'Fredoka One', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(.62,.01,.48,1.05);

  --radius-main: 24px;
  --radius-btn: 999px;
  --shadow-card: 0 4px 24px rgba(55,80,99,0.09);
  --shadow-fun: 0 2px 12px 0 rgba(255,125,138,0.15);
  --shadow-nav: 0 4px 12px rgba(120,186,198,.09);
}

body {
  font-family: var(--font-body);
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- LAYOUT & SPACING PATTERNS (FLEXBOX ONLY!) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-fun);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.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;
  margin-bottom: 20px;
  flex-direction: row;
  background: var(--color-fun-yellow);
  color: var(--color-black);
  border-radius: var(--radius-main);
  box-shadow: 0 4px 24px 0 rgba(55,80,99,0.11);
  position: relative;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVE FLEX --- */
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-nav);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 700;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 16px;
  gap: 24px;
}
.logo img {
  max-height: 56px;
  filter: drop-shadow(0 2px 4px rgba(255,125,138,0.10));
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 17px;
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-fun-yellow);
  color: var(--color-fun-pink);
  box-shadow: 0 2px 8px rgba(255,125,138,0.10);
  outline: none;
}
.cta-btn {
  background: var(--color-fun-pink);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 18px;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  border: none;
  font-weight: bold;
  letter-spacing: 0.015em;
  box-shadow: 0 2px 10px 0 rgba(255,125,138,0.16);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 10;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-fun-green);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 18px 0 rgba(86,197,150,0.18);
  outline: none;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  background: var(--color-fun-yellow);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  margin-left: 8px;
  display: none;
  z-index: 999;
  box-shadow: 0 2px 8px 0 rgba(255,226,117,0.16);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-fun-blue);
}
@media (max-width: 1100px) {
  .main-nav{
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: 0 0 0 100vw rgba(55,80,99,0.18);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7,.2,.43,1.17);
  z-index: 2000;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-fun-pink);
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  margin: 20px 26px 12px 0;
  padding: 4px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 3000;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-fun-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 12px 36px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-primary);
  padding: 12px 0;
  border-bottom: 2px dotted var(--color-fun-yellow);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun-yellow);
  color: var(--color-fun-pink);
}

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

/* --- HERO & SECTIONS --- */
.hero-section {
  background: linear-gradient(90deg, var(--color-fun-yellow) 86%, var(--color-fun-blue) 100%);
  padding-top: 64px;
  padding-bottom: 72px;
  border-radius: 0 0 36px 36px;
  margin-bottom: 52px;
  box-shadow: 0 8px 60px -16px rgba(98,182,230,0.08);
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1.15;
  text-shadow: 2px 2px 0 var(--color-fun-pink), 0 2px 16px rgba(255,125,138,0.07);
  letter-spacing: -1px;
}
.hero-section p {
  font-size: 1.3rem;
  color: var(--color-black);
  line-height: 1.6;
  font-family: var(--font-body);
}

.features-section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
.features-section h2 {
  font-size: 2rem;
  font-family: var(--font-display);
  margin-bottom: 28px;
  color: var(--color-primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0 -16px;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-main);
  padding: 24px 18px 30px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  transition: transform .34s cubic-bezier(.62,.29,.56,1.22);
  filter: drop-shadow(0 2px 8px rgba(86,197,150,0.12));
}
.feature:hover img {
  transform: rotate(-8deg) scale(1.08);
}
.feature h3 {
  font-family: var(--font-display);
  color: var(--color-fun-pink);
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.feature p {
  font-size: 16px;
  color: var(--color-primary);
}
.feature:hover, .feature:focus {
  transform: translateY(-3px) scale(1.03) rotate(1deg);
  box-shadow: 0 6px 28px 0 rgba(255,125,138,0.12);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }
  .feature {
    max-width: 100%;
  }
}

/* --- TESTIMONIALS --- */
.testimonials-section h2 {
  font-size: 2rem;
  color: var(--color-fun-green);
  font-family: var(--font-display);
  margin-bottom: 32px;
}
.testimonial-card {
  background: var(--color-fun-yellow);
  color: var(--color-black);
  margin-bottom: 20px;
  border-radius: var(--radius-main);
  box-shadow: 0 6px 24px 0 rgba(255,226,117,0.17);
  font-size: 1.13rem;
  line-height: 1.55;
  font-family: var(--font-body);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  min-width: 0;
}
.testimonial-card:before {
  content: '★';
  font-size: 1.9rem;
  color: var(--color-fun-pink);
  margin-right: 16px;
  display: block;
}
.testimonial-card .testimonial-meta {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 28px 0 rgba(255,125,138,0.14);
  transform: scale(1.025) rotate(-2deg);
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--color-fun-blue);
  padding: 44px 20px;
  border-radius: var(--radius-main);
  margin-bottom: 52px;
  margin-top: 36px;
  box-shadow: 0 2px 18px 0 rgba(98,182,230,0.12);
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta-section h2, .cta-section p {
  color: var(--color-primary);
  text-align: center;
  font-family: var(--font-display);
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 0px;
}

/* --- SERVICES (leistungen.html) --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 12px 0;
  justify-content: flex-start;
}
.service-card {
  padding: 26px 22px;
  border-radius: var(--radius-main);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  flex: 1 1 260px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
}
.service-card h2 {
  color: var(--color-fun-green);
  font-size: 1.18rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.service-card .service-price {
  display: inline-block;
  background: var(--color-fun-yellow);
  color: var(--color-black);
  padding: 5px 16px;
  border-radius: var(--radius-btn);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 4px;
}
.service-btn {
  display: inline-block;
  background: var(--color-fun-pink);
  color: var(--color-white);
  padding: 8px 22px;
  border-radius: var(--radius-btn);
  font-weight: bold;
  box-shadow: 0 1px 8px 0 rgba(255,125,138,0.11);
  font-family: var(--font-display);
  margin-top: 6px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-btn:hover, .service-btn:focus {
  background: var(--color-fun-green);
  color: var(--color-black);
  transform: scale(1.06) rotate(-2deg);
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 10px 32px 0 rgba(255,125,138,0.20);
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* --- SHARED TEXT: TYPOGRAPHY & LISTS --- */
h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.12;
  color: var(--color-fun-blue);
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -1px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.18;
  color: var(--color-fun-green);
  margin-bottom: 14px;
  font-weight: 700;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-fun-pink);
  font-weight: 600;
  margin-bottom: 7px;
}
p, ul li, ol li {
  font-size: 1.02rem;
  color: var(--color-primary);
  line-height: 1.7;
}
.text-section {
  background: none;
  padding: 0 0;
  border-radius: 0;
  margin-bottom: 44px;
}
ul, ol {
  margin-block: 18px;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 0.7em;
}
ul li:before {
  content: '\2022';
  color: var(--color-fun-pink);
  margin-right: 9px;
  display: inline-block;
}
.text-section ul li {
  font-weight: 400;
}

.expert-note {
  background: var(--color-fun-blue);
  color: var(--color-primary);
  border-radius: var(--radius-main);
  padding: 18px 24px;
  margin-top: 24px;
  box-shadow: 0 1px 6px rgba(98,182,230,0.12);
  font-size: 1.01rem;
  font-weight: 500;
}

.mini-case, .case-study {
  background: var(--color-fun-yellow);
  color: var(--color-black);
  border-left: 6px solid var(--color-fun-pink);
  padding: 14px 22px;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 1px 12px 0 rgba(255,226,117,0.09);
  margin-bottom: 20px;
  font-style: italic;
}

/* --- THANK YOU PAGE SECTION --- */
.thank-you-section {
  padding: 56px 0 48px 0;
  background: var(--color-fun-green);
  border-radius: var(--radius-main);
  margin-bottom: 48px;
  box-shadow: 0 4px 24px 0 rgba(86,197,150,0.12);
}
.thank-you-section h1 {
  color: var(--color-fun-pink);
}
.thank-you-section .cta-btn {
  margin-top: 14px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-accent);
  border-top: 4px solid var(--color-fun-blue);
  padding: 0 0 0 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 38px 16px 26px 16px;
}
.footer-brand img {
  max-height: 48px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 7px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 15px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-fun-pink);
  color: var(--color-white);
}
.footer-info {
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.footer-info a {
  color: var(--color-fun-pink);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-info a:hover,
.footer-info a:focus { color: var(--color-fun-blue); }
.footer-legal {
  color: var(--color-primary);
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
.footer-legal a {
  color: var(--color-fun-green);
  margin: 0 5px;
}
.footer-impressum {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-primary);
}

@media (max-width: 700px) {
  footer .container {
    padding: 24px 4px 15px 4px;
    gap: 7px;
  }
  .footer-nav {
    gap: 7px 7px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  color: var(--color-primary);
  border-top: 4px solid var(--color-fun-yellow);
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9000;
  box-shadow: 0 -2px 16px rgba(55, 80, 99, 0.09);
  animation: cookieSlideUp 0.6s cubic-bezier(.77,.01,.43,1.17);
  gap: 13px;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0;}
  to { transform: none; opacity: 1;}
}
.cookie-consent__text {
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-consent__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: var(--color-fun-blue);
  color: var(--color-white);
  font-weight: bold;
  border: none;
  border-radius: var(--radius-btn);
  padding: 9px 21px;
  font-size: 1rem;
  box-shadow: 0 1px 7px 0 rgba(98,182,230,0.13);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.cookie-btn.settings {
  background: var(--color-fun-yellow);
  color: var(--color-black);
}
.cookie-btn.accept {
  background: var(--color-fun-green);
}
.cookie-btn.reject {
  background: var(--color-fun-pink);
}
.cookie-btn:hover,
.cookie-btn:focus {
  transform: scale(1.06) rotate(-2deg);
  outline: none;
  background: var(--color-fun-pink);
  color: var(--color-white);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--color-fun-blue);
  color: var(--color-white);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(55,80,99,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: cookieModalAppear 0.5s cubic-bezier(.37,.96,.43,1.04);
}
@keyframes cookieModalAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__content {
  background: var(--color-white);
  padding: 32px 28px 26px 28px;
  border-radius: var(--radius-main);
  box-shadow: 0 6px 32px 0 rgba(55,80,99,0.20);
  max-width: 400px;
  min-width: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
}
.cookie-modal__title {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0;
}
.cookie-modal__option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-modal__option label {
  color: var(--color-fun-pink);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.08rem;
}
.cookie-modal__option input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-fun-blue);
}
.cookie-modal__close {
  position: absolute; right: 16px; top: 14px;
  background: var(--color-fun-pink);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--color-fun-green);
  color: var(--color-black);
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 15px;
}

/* --- ACCESSIBILITY FOCUS VISIBLE --- */
a:focus, button:focus, .cta-btn:focus, .service-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-fun-blue);
  outline-offset: 2px;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .feature, .service-card, .cta-btn, .cookie-btn, .mobile-menu, .testimonial-card {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

/* --- SCROLLBAR STYLING (optional playful) --- */
::-webkit-scrollbar { width: 9px; background: var(--color-accent); }
::-webkit-scrollbar-thumb { background: var(--color-fun-yellow); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-fun-pink); }

/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .hero-section { padding: 32px 0 36px 0; }
  .features-section, .cta-section, .thank-you-section { padding: 26px 6px; margin-bottom: 28px; }
  .feature { padding: 18px 8px 22px 8px; }
  .testimonial-card { padding: 14px 10px; font-size: 1rem; }
  .service-card { padding: 14px 8px; }
  .cookie-modal__content { padding: 17px 7px 13px 7px; }
}

/* --- PLAYFUL/DECORATIVE ELEMENTS (OPTIONAL) --- */
.hero-section:after {
  content: '';
  position: absolute;
  right: -24vw;
  top: -50px;
  width: 180px;
  height: 180px;
  background: var(--color-fun-pink);
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.hero-section .container, .features-section .container, .testimonials-section .container, .cta-section .container {
  position: relative;
  z-index: 1;
}

/* --- EXTRAS: FORM ELEMENTS --- */
input, textarea, select {
  background: var(--color-accent);
  border: 2px solid var(--color-fun-blue);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  font-size: 1rem;
  color: var(--color-primary);
  transition: border var(--transition);
  width: 100%;
  margin-bottom: 14px;
}
input:focus,
textarea:focus,
select:focus {
  border: 2px solid var(--color-fun-pink);
  outline: none;
}

::-moz-selection { background: var(--color-fun-pink); color: var(--color-white); }
::selection { background: var(--color-fun-pink); color: var(--color-white); }

/* ------ END OF STYLE ------ */
