/* === 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7FA;
  color: #27323A;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #00E0C6;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #008378;
  text-decoration: none;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding-left: 1.1em;
}
li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

/* =====================
   BRAND COLORS & FONTS
====================== */
:root {
  --primary: #27323A;
  --secondary: #00E0C6;
  --secondary-dark: #008378;
  --accent: #F4F7FA;
  --danger: #E54065;
  --warn: #F2913D;
  --gradient-vibrant: linear-gradient(90deg, #00E0C6 0%, #40CBFF 100%);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-energy: 0 4px 16px 0 rgba(39,50,58,0.18), 0 0px 0px 1.5px rgba(0,224,198,0.22);
  --radius: 16px;
}

/* ===================
   TYPOGRAPHY
=================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.13;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; letter-spacing: 0.01em; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.38rem; margin-bottom: 12px; }
h4 { font-size: 1.13rem; margin-bottom: 8px; }
p, li, td, th {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
}
p { margin-bottom: 16px; }
strong { font-weight: 600; }
em { color: var(--secondary-dark); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
}

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

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

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
  }
}

/* ===================
   HEADER & MAIN NAV
=================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(39,50,58,0.04);
  position: sticky;
  z-index: 20;
  top: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 74px;
  font-family: var(--font-display);
  background: none;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-left: 30px;
  align-items: center;
}
.main-nav ul li {
  margin: 0;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav .btn {
  margin-left: 28px;
}

/* Hide burger on desktop, show on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, box-shadow .2s;
  margin-right: 10px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary-dark);
  outline: none;
}

@media (max-width: 1000px) {
  .main-nav ul { gap: 10px; margin-left: 5px; }
  .main-nav .btn { margin-left: 4px; }
  .main-nav { padding-right: 4px; }
}

@media (max-width: 856px) {
  .main-nav ul, .main-nav .btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====================
   MOBILE NAV OVERLAY
==================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,50,58,0.95);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.5,1.6,.3,1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  padding: 18px 18px 6px 18px;
  cursor: pointer;
  align-self: flex-start;
  transition: color .2s;
  z-index: 10003;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  min-width: 260px;
  max-width: 92vw;
  min-height: 100vh;
  padding: 40px 24px 32px 28px;
  box-shadow: var(--shadow-energy);
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  z-index: 10002;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--primary);
  border-radius: 10px;
  padding: 14px 10px 14px 13px;
  text-decoration: none;
  transition: background 0.23s, color 0.17s;
  text-align: left;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 480px) {
  .mobile-nav {
    min-width: 100vw;
    border-radius: 0;
    padding: 40px 12px 24px 16px;
  }
}

/* =======================
   GENERIC BUTTONS
======================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: none;
  padding: 14px 38px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(39,50,58,0.08);
  position: relative;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  text-decoration: none;
  margin-top: 6px;
}
.btn:hover, .btn:focus {
  background: var(--secondary-dark);
  color: #fff;
  box-shadow: 0 5px 16px 0 rgba(0,224,198,0.14), 0 2px 16px 0 rgba(39,50,58,0.10);
  transform: translateY(-1.5px) scale(1.04);
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: #fff;
}
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-ghost {
  background: rgba(0,224,198,0.09);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

/* =======================
   HERO SECTION
======================= */
.hero {
  background: #fff;
  background-color: var(--primary);
  background-image: none;
  color: #fff;
  border-radius: 0 0 48px 48px;
  margin-bottom: 0;  /* overwritten by .section if present */
}
.hero .container {
  padding-top: 38px;
  padding-bottom: 64px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 580px;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2.95rem;
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(39,50,58,0.15);
}
.hero p {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero .container { padding-top: 14px; padding-bottom: 30px; }
  .hero .content-wrapper { max-width: 100%; gap: 18px; }
  .hero h1 { font-size: 2.1rem; }
}

/* ====================
   FEATURES & CARDS
==================== */
.features .feature-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  padding: 28px 22px 22px 22px;
  width: 260px;
  min-height: 235px;
  transition: box-shadow 0.18s, transform .17s;
  position: relative;
}
.feature-item img {
  height: 44px; width: 44px; margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.16rem;
  margin-bottom: 5px;
  color: var(--secondary-dark);
}
.feature-item p {
  font-size: 0.97rem;
  color: var(--primary);
}
.feature-item:hover { box-shadow: 0 8px 32px 0 rgba(0,224,198,0.16); transform: translateY(-2px) scale(1.01); }

@media (max-width: 1055px) {
  .feature-item { width: 49vw; min-width: 215px; max-width: 98vw; }
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 17px; }
  .feature-item { width: 100%; min-width: unset; }
}

/* ====================
   GENERIC CARD STYLES
==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover { box-shadow: 0 8px 32px 0 rgba(0,224,198,0.18); transform: translateY(-2px); }

/* ===================
   TESTIMONIALS
=================== */
.testimonials {
  background: var(--accent);
  padding-top: 48px;
  padding-bottom: 36px;
}
.testimonials h2 {
  text-align: left;
  margin-bottom: 30px;
  color: var(--primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px 16px 28px;
  margin-bottom: 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  max-width: 520px;
  font-family: var(--font-body);
  position: relative;
  color: #222e36;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-weight: 500;
  color: #222e36;
  margin-bottom: 7px;
}
.testimonial-person {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.testimonial-card img {
  height: 24px; width: 120px;
}

@media (max-width: 768px) {
  .testimonials { padding-top: 26px; padding-bottom: 18px; }
  .testimonial-card { max-width: 100%; padding: 19px 12px 12px 17px; }
}

/* ===================
   ABOUT SNIPPET
=================== */
.about-snippet {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
}
.about-snippet h2, .about-snippet p {
  color: #fff;
}
.about-snippet .btn {
  background: #fff;
  color: var(--secondary-dark);
  font-weight: 800;
  margin-top: 12px;
}
.about-snippet .btn:hover { background: var(--primary); color: #fff; }

/* ===================
   CTA BANNER
=================== */
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  margin-bottom: 48px;
}
.cta p { color:#fff; font-size:1.17rem; font-weight:600; margin-bottom:10px; }
.cta .btn-secondary {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  border: 0;
}
.cta .btn-secondary:hover { background: #fff; color: var(--secondary-dark); }

@media (max-width: 768px) {
  .cta {margin-bottom:22px;}
}

/* ========================
   SERVICES / LEISTUNGEN
======================== */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0 26px 0;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  padding: 27px 22px 24px 22px;
  width: 262px;
  min-height: 220px;
  position: relative;
  transition: box-shadow .18s, transform .17s;
}
.service-item img {
  height: 42px;
  width: 42px;
  margin-bottom: 5px;
}
.service-item h2 {
  color: var(--secondary-dark);
  font-size: 1.12rem;
  margin-bottom: 2px;
}
.service-item p {
  font-size: 0.96rem;
  color: var(--primary);
}
.service-price {
  margin-top: 8px;
  font-weight: bold;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  padding: 4px 14px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-size: 1.07rem;
}
.service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(0,224,198,0.17);
  transform: translateY(-2px) scale(1.014);
}

@media (max-width: 1000px) {
  .service-item { width: 48vw; min-width: 205px; }
}
@media (max-width: 700px) {
  .services .service-list { flex-direction: column; gap: 14px; }
  .service-item { width: 100%; }
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.01rem;
  font-family: var(--font-body);
  margin: 36px 0 0 0;
}
.usp-list li::before {
  content: '•';
  font-size: 1.3em;
  color: var(--secondary-dark);
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
}

/* ==============
   PROCESS/ABL.
============== */
.process ol {
  list-style: decimal inside;
  margin: 0 0 30px 0;
  padding-left: 0;
}
.process ol li {
  font-size: 1.07rem;
  margin-bottom: 16px;
  padding-left: 0;
  font-family: var(--font-body);
}
.process img {
  margin-top: 24px; display: block;
  max-width: 420px; border-radius: 10px;
}
@media(max-width:600px) {
  .process img { max-width: 100%; }
}

.faq-snippet ul {
  margin-left: 0;
}
.faq-snippet ul li {
  margin-bottom: 13px;
  font-size: 1rem;
}
.faq-snippet a {
  color: var(--secondary-dark);
  font-family: var(--font-display);
}

/* ================
   PRICING/TABLE
================ */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: var(--shadow-energy);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 26px;
  font-family: var(--font-body);
}
.pricing th, .pricing td {
  padding: 18px 15px;
  text-align: left;
  border-bottom: 1px solid #eef1f5;
  font-size: 1.03rem;
}
.pricing th {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}
.pricing td {
  color: var(--primary);
}
.pricing tr:last-child td {
  border-bottom: none;
}
@media(max-width: 600px) {
  .pricing table, .pricing th, .pricing td { font-size:0.98rem;padding:11px 7px;}
}

.disclaimer p { color: #58616d; font-size:0.98rem; font-style: italic; }

/* ================
   FAQ PAGE
================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  box-shadow: var(--shadow-energy);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 10px;
  color: var(--secondary-dark);
}

/* ================
   CONTACT PAGE
================ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  list-style: none;
}
.contactform-info ul { list-style-type: disc; margin-left: 16px; }
.contactform-info ul li { margin-bottom:7px; }
.contactform-info h2 { font-size: 1.05rem; color: var(--secondary-dark); }

.map {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  margin-bottom: 34px;
  padding: 22px 0;
}

.map img {
  margin: 10px 0 12px 0; height: 58px; width: auto;
}

/* ================
   THANK YOU PAGE
================ */
.thank-you {
  text-align: center;
  padding: 54px 0 62px 0;
}
.thank-you h1 { font-size: 2.6rem; color: var(--secondary); }
.thank-you p { font-size: 1.1rem; color: var(--primary); margin-bottom: 22px; }

/* ================
   LEGAL PAGES
================ */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-energy);
  padding: 34px 32px 30px 32px;
}
.legal h1 { color: var(--secondary-dark); }
.legal h2 { font-size: 1.12rem; color: var(--primary); margin-bottom: 7px; }
.legal ul { margin-left: 0; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--secondary-dark); word-break: break-word; }
.legal a:hover { text-decoration: underline; }

@media(max-width:769px) {
  .legal {padding:16px 6px 18px 11px;}
}

/* ================
   FOOTER
================ */
footer {
  background: #222e36;
  color: #fff;
  font-family: var(--font-body);
  padding: 34px 0 0 0;
  margin-top: 60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 24px 0 rgba(39,50,58,0.07);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 6px;
  background: none;
  transition: background 0.18s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding-bottom: 34px;
}
.footer-info img {
  height: 32px;
  margin-bottom: 2px;
}
.footer-info div { font-size: 0.99rem; letter-spacing: 0.01em; }

@media(max-width: 700px) {
  footer { margin-top: 32px; border-radius: 0; padding-top:18px; }
  .footer-info { padding-bottom:20px; }
}

/* ==========================
   COOKIE CONSENT BANNER
========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3000;
  background: #fff;
  color: #27323A;
  box-shadow: 0 -2px 18px 0 rgba(39,50,58,0.14);
  padding: 24px 14px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  min-height: 84px;
  transition: transform .4s cubic-bezier(.5,1.6,.3,1);
}
.cookie-banner.hide {
  transform: translateY(160%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0; font-size: 1.04rem;
  max-width: 550px;
}
.cookie-actions {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 15px; align-items: center;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: 15px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .17s, transform .14s;
  margin-left: 8px;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover { background: var(--secondary-dark); color: #fff; }
.cookie-settings {
  background: var(--primary);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-settings:hover { background: var(--secondary); color: #fff; }
.cookie-reject {
  background: #fff;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-reject:hover { background: var(--danger); color: #fff; }

@media (max-width: 800px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; padding-left: 7px; padding-right:7px; }
  .cookie-actions { gap: 11px; margin-top:12px; }
  .cookie-btn { margin-left:0; }
}

/* =========================
   COOKIE SETTINGS MODAL
========================= */
.cookie-modal-backdrop {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(39,50,58,.56);
  z-index: 4001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
  animation: fadeIn .21s ease;
}
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 40px 0 rgba(0,224,198,0.14), 0 1.5px 24px 0 rgba(39,50,58,0.09);
  padding: 36px 28px 28px 28px;
  max-width: 412px; width: 95vw;
  display: flex; flex-direction: column; gap: 18px;
  font-family: var(--font-body);
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--secondary-dark);
  margin-bottom: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.cookie-toggle {
  appearance: none;
  height: 28px; width: 52px;
  background: #eef1f5;
  border-radius: 14px;
  outline: none;
  transition: background 0.2s;
  position: relative;
  margin-right: 6px;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 4px rgba(39,50,58,0.14);
  transition: left 0.22s cubic-bezier(.5,1.6,.3,1);
}
.cookie-toggle:checked::before {
  left: 26px;
}
.cookie-modal .cookie-close-modal {
  align-self: flex-end;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--secondary-dark);
  cursor: pointer;
  margin-top: -18px;
  margin-right: -12px;
}
.cookie-modal .cookie-close-modal:hover {
  color: var(--danger);
}

/* =====================
RESPONSIVE GENERIC LAYOUT
======================= */
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 16px; }
}

/* ======================
   FLEX CONTAINER HELPERS
====================== */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }

/* ==============
   Z-INDEX
=============== */
header, .mobile-menu, .mobile-nav, .mobile-menu-toggle,
footer, .cookie-banner, .cookie-modal-backdrop { z-index: 2400; }

/* ======================
   UTILITIES
====================== */
.shadow-energy { box-shadow: var(--shadow-energy); }
.radius-16 { border-radius: var(--radius); }
@media (max-width: 500px) {
  .section, .card, .about-snippet, .cta, .legal, .faq-item, .testimonial-card, .service-item {
    border-radius: 8px;
    padding-left: 6px; padding-right: 6px;
  }
}

/* ============
   SCROLLBAR
============== */
::-webkit-scrollbar {
  width: 8px; background: #f7fafc;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary); border-radius: 8px;
}

/* ============
   INPUTS (future forms)
============== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #e5eaf3;
  padding: 10px;
  outline: none;
  margin-bottom: 18px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
}

/* =============
   ANIMATIONS
============== */
.fade-in {
  animation: fadeInEnergy 0.7s cubic-bezier(.5,1.6,.3,1);
}
@keyframes fadeInEnergy {
  0% { opacity: 0; transform: translateY(30px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* =============
   VISUAL HIERARCHY SPACING
============== */
.section > .container,
.section > .content-wrapper { margin-top: 0; }
.section:not(:last-of-type) { margin-bottom: 60px; }
@media (max-width: 768px) { .section:not(:last-of-type) { margin-bottom: 36px; } }
.card:not(:last-child), .testimonial-card:not(:last-child), .faq-item:not(:last-child), .service-item:not(:last-child) { margin-bottom: 20px; }

/* =============
   PRINT SAFETY
============= */
@media print {
  .main-nav, .footer-nav, .footer-info, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}
