/* ===============================
   CSS RESET + BASE SETUP
   =============================== */
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, main, 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;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
* {
  box-sizing: border-box;
}
:root {
  --primary: #192A56;
  --secondary: #2988BC;
  --accent: #E9EDF5;
  --neon: #04F7F7;
  --neon-pink: #FF46A0;
  --neutral-900: #111822;
  --neutral-700: #283449;
  --neutral-300: #bcc7d9;
  --background: #181F32;
  --background-light: #232C43;
  --success: #16FFC3;
  --danger: #FF4662;
  --shadow: 0 4px 18px 0 rgba(40,136,188,0.09);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--background);
  color: #f5fafd;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--background);
  min-height: 100vh;
  color: #f5fafd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============
   TYPOGRAPHY
   ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #e1ecf8;
  line-height: 1.7;
}
.subheadline {
  color: var(--neon);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
strong {
  color: var(--neon);
}

/* =============
   LAYOUT UTILS
   ============= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

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

/* Accent background for striking futuristic sections */
.accent-bg {
  background: linear-gradient(90deg, var(--primary) 70%, var(--secondary) 100%);
  box-shadow: 0 2px 32px rgba(25,42,86,0.20);
  border-radius: 24px;
}

/* =====
 HEADER
 ===== */
header {
  background: var(--primary);
  width: 100%;
  z-index: 1000;
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(41,136,188,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  max-height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin-left: 24px;
}
.main-nav a {
  color: #e1ecf8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
  transition: color 0.25s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--neon);
}
.primary-btn {
  background: linear-gradient(90deg, var(--neon-pink) 30%, var(--neon) 100%);
  color: #181F32;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 30px;
  border-radius: 28px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 16px 0 rgba(4,247,247,0.22);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.2s, color 0.25s;
  margin-left: 24px;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.primary-btn:hover, .primary-btn:focus {
  background: linear-gradient(90deg, var(--neon) 20%, var(--neon-pink) 100%);
  color: #0B1422;
  box-shadow: 0 2px 28px 0 rgba(255,70,160,0.18);
}
.secondary-btn {
  background: none;
  border: 2px solid var(--neon);
  color: var(--neon);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 26px;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.24s, color 0.19s, border-color 0.19s;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: var(--neon);
  color: #071520;
  border-color: var(--neon-pink);
}

/* --- MOBILE MENU BUTTON + BURGER --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s;
  z-index: 1011;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--neutral-700);
  color: var(--neon-pink);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    margin-left: 0;
  }
  .primary-btn {
    margin-left: 12px;
    padding: 10px 20px;
  }
}

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

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #232C43 70%, var(--secondary) 100%);
  z-index: 1012;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform 0.39s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
  box-shadow: 0 8px 32px 0 rgba(25,42,86,0.30);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon-pink);
  font-size: 2.3rem;
  cursor: pointer;
  padding: 18px 36px 9px 0;
  margin-right: 12px;
  margin-top: 13px;
  transition: color 0.19s;
  align-self: flex-end;
  z-index: 1013;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--neon);
}
.mobile-nav {
  width: 100%;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(4,247,247,0.10);
  width: 100%;
  display: block;
  transition: color 0.20s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-pink);
  background: rgba(4,247,247,0.07);
  border-radius: 8px;
}
@media (max-width: 550px) {
  .mobile-nav {
    padding: 0 12px;
  }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 0 36px 0;
  margin-bottom: 0;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 670px;
  gap: 12px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--neon);
  text-shadow:
    0 0 14px var(--neon),
    0 2px 12px rgba(25,42,86,0.7);
}

@media (max-width: 650px) {
  .hero {
    padding: 30px 0 22px 0;
  }
  .hero .content-wrapper {
    padding: 0 2px;
    gap: 8px;
  }
  h1 {
    font-size: 1.35rem;
  }
  .subheadline {
    font-size: 1rem;
  }
}

/* ===================
   FEATURES / SERVICE GRID
   =================== */
.features {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  width: 100%;
  justify-content: flex-start;
}

.feature-box, .service-box {
  background: var(--background-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: #fff;
  padding: 28px 24px 24px 24px;
  min-width: 230px;
  max-width: 310px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid transparent;
  transition: border-color 0.18s, box-shadow 0.16s, transform 0.21s;
}
.feature-box:hover,
.service-box:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 4px 36px 0 rgba(255,70,160,0.11), 0 2px 18px 0 rgba(4,247,247,0.10);
  transform: translateY(-6px) scale(1.027);
}
.feature-box img, .service-box img {
  height: 46px;
  width: 46px;
  filter: drop-shadow(0 0 9px var(--neon));
}
.feature-box h3, .service-box h3 {
  margin: 0;
  color: var(--neon);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.feature-box p, .service-box p {
  color: var(--neutral-300);
  margin: 0 0 5px 0;
  font-size: 1rem;
}
.feature-price, .service-price {
  color: var(--neon-pink);
  font-size: 1.10rem;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.04em;
  background: rgba(255,70,160,0.13);
  padding: 2px 9px;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(255,70,160,0.09);
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 16px;
    justify-content: center;
  }
  .feature-box, .service-box {
    min-width: 180px;
    max-width: 95vw;
    flex-basis: 100%;
  }
}

/* =========
   PROCESS (ablauf.html)
   ========= */
.process {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.process ol {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 20px;
  color: #f5fafd;
  font-size: 1rem;
}
.process li {
  margin-bottom: 22px;
  padding-left: 0;
}

/* =========
   ABOUT, LEGAL, CTA, CONTACT
   ========= */
.about, .legal, .cta, .contact, .faq, .pricing, .testimonials, .services {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(93deg, var(--neon-pink) 10%, var(--secondary) 100%);
  border-radius: 24px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}

/* ============
   FAQ SECTION
   ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.faq-item {
  background: var(--background-light);
  box-shadow: 0 2px 14px 0 rgba(25,42,86,0.08);
  border-radius: 16px;
  padding: 20px 24px;
  color: #f5fafd;
}
.faq-item h3 {
  color: var(--neon);
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.faq-item p {
  color: var(--neutral-300);
}

/* ============
   PRICING TABLE
   ============ */
.price-table {
  width: 100%;
  border-spacing: 0;
  margin: 24px 0 28px 0;
  background: var(--background-light);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(25,42,86,0.10);
  overflow: hidden;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.price-table th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--neon);
}
.price-table tr {
  transition: background 0.18s;
}
.price-table tbody tr {
  background: var(--background-light);
  border-bottom: 1px solid #25385e;
}
.price-table tbody tr:hover {
  background: #25385e;
}
.price-table td:last-child {
  color: var(--neon-pink);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.price-usp {
  margin-top: 18px;
  background: rgba(233,237,245,0.08);
  color: var(--neon);
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

/* ============
   CONTACT SECTION
   ============ */
.contact-details {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--neutral-300);
}
.map-address {
  background: rgba(4,247,247,0.08);
  color: var(--neon);
  border-left: 5px solid var(--neon-pink);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ============
   TESTIMONIALS (Accent BG)
   ============ */
.testimonials {
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #f9fafb;
  color: #181F32;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(25,42,86,0.13);
  border-left: 6px solid var(--neon);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #232C43;
}
.testimonial-rating {
  color: var(--neon-pink);
  font-size: 1.23rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 14px 12px;
  }
}

/* ============
   FOOTER
   ============ */
footer {
  background: var(--primary);
  padding-top: 32px;
  padding-bottom: 0;
  margin-top: 60px;
  width: 100%;
  color: #e0e7ef;
  font-size: 0.95rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 26px;
}
.footer-logo {
  flex: 0 0 85px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 10px;
  align-items: flex-start;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #e0e7ef;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--neon-pink);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #e0e7ef;
}
.legal-bar {
  width: 100%;
  text-align: center;
  background: #212945;
  color: #9ab4de;
  font-size: 0.93rem;
  padding: 13px 0;
  margin-top: 0;
  border-top: 1px solid #232C43;
}
.legal-bar a {
  color: #9ab4de;
  font-weight: 500;
  transition: color 0.15s;
}
.legal-bar a:hover,
.legal-bar a:focus {
  color: var(--neon);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 10px 14px;
  }
  .footer-contact {
    margin-bottom: 14px;
  }
}


/* =========================
   SPACING & FLEXBOX PATTERNS (as required)
   ========================= */
.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 LAYOUTS
   ========================= */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section,
  .hero,
  .about,
  .legal,
  .cta,
  .contact,
  .faq,
  .pricing,
  .testimonials,
  .features,
  .services {
    padding: 26px 7px;
  }
  .content-grid,
  .features .feature-grid,
  .services .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 17px 0 14px 0;
    min-height: 180px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* =======================
   FOCUS / A11Y STATES
   ======================= */
a, button {
  outline: none;
}
a:focus, .primary-btn:focus, .secondary-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid var(--neon) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(4,247,247,0.14);
  border-radius: 8px;
}

/* ===============
   TRANSITIONS & ANIMATIONS
   =============== */
button, .primary-btn, .secondary-btn, input, .feature-box, .service-box, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.20s, background 0.22s, color 0.19s, border 0.18s, transform 0.18s !important;
}

/* Micro Interaction for cards */
.card:hover, .feature-box:hover, .service-box:hover, .faq-item:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow: 0 6px 30px 0 rgba(4,247,247,0.12), var(--shadow);
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #151a2c;
  box-shadow: 0 -2px 24px 0 rgba(25,42,86,0.21);
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  color: #e1ecf8;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.36s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 24px;
}
.cookie-banner button {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  margin-right: 0;
  background: var(--neon);
  color: #181F32;
  font-weight: 600;
  margin-left: 2px;
  transition: background 0.15s, color 0.1s;
}
.cookie-banner button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner button.settings {
  background: transparent;
  border: 2px solid var(--neon);
  color: var(--neon);
  margin-left: 10px;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: var(--neon);
  color: #141a2c;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  opacity: 0.92;
}
@media (max-width: 525px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 16px 8px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
    justify-content: flex-end;
  }
}

/* COOKIE SETTINGS MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,42,86,0.82);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #25385e;
  border-radius: 20px;
  max-width: 410px;
  width: 95vw;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 6px 32px 0 rgba(4,247,247,0.11);
  color: #e7f7fe;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: var(--neon);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.6px solid var(--neon);
  background: #1b2134;
  outline: none;
  margin-right: 4px;
  transition: background 0.19s, border 0.13s;
  position: relative;
}
.cookie-modal input[type="checkbox"]:checked {
  background: var(--neon);
  border-color: var(--neon-pink);
}
.cookie-modal input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px; left: 6px;
  width: 3px; height: 9px;
  border: solid #181F32;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.cookie-modal .essential {
  color: var(--success);
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;  
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 12px;
  border: none;
  background: var(--neon);
  color: #141a2c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 9px 20px;
  font-size: 1rem;
  transition: background 0.16s, color 0.11s;
  cursor: pointer;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.42rem;
  color: var(--neon-pink);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-btn:hover,
.cookie-modal .close-btn:focus {
  color: var(--neon);
}

@media (max-width: 500px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 22px 7px 18px 14px;
  }
  .cookie-modal h2 {
    font-size: 1rem;
  }
}

/* =============================
   UL & OL STYLES (for legal/about)
   ============================= */
ul {
  margin-top: 12px;
  padding-left: 16px;
  color: var(--neutral-300);
}
ul li {
  margin-bottom: 9px;
  list-style: outside disc;
}
ol {
  margin-top: 14px;
  margin-bottom: 22px;
  padding-left: 24px;
}

/* =============================
   GENERAL CARD PATTERNS
   ============================= */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  background: var(--background-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: #fff;
  padding: 18px 22px 16px 22px;
  min-width: 170px;
  max-width: 340px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content { display: flex; flex-direction: column; justify-content: center; }

/* =============================
   TABLET AND MOBILE STYLES
   ============================= */
@media (max-width: 600px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.02rem; }
  .footer-logo img { height: 34px; }
  .section, .about, .process, .features, .services, .cta, .testimonials, .legal, .contact, .faq, .pricing {
    padding-left: 2px; padding-right: 2px; margin-bottom: 32px;
  }
}

/* == Hide elements with .hidden class */
.hidden { display: none !important; }
