/* ===== 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, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #fcfcff; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
table { border-collapse: collapse; border-spacing: 0; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
footer p {
  color: white;
}
/* ====== BRAND COLOR VARIABLES (with fallbacks) ====== */
:root {
  --nc-primary: #0D233D;
  --nc-secondary: #A8FE54;
  --nc-accent: #1BEFF0;
  --nc-bg: #fcfcff;
  --nc-dark: #111929;
  --nc-light: #FFFFFF;
  --nc-grey: #e5eaf4;
}

/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Orbitron:wght@700&display=swap');
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--nc-primary);
  background: var(--nc-bg);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.03em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--nc-primary);
  margin-bottom: 16px;
  letter-spacing: 0.07em;
}
h1 { font-size: 2.5rem; font-weight: 700; color: var(--nc-accent); text-shadow: 0 2px 16px rgba(27,239,240,0.05); }
h2 { font-size: 2rem; font-weight: 700;  color: var(--nc-primary); }
h3 { font-size: 1.4rem; font-weight: 600; color: var(--nc-secondary); }
h4, h5, h6 { font-weight: 600; }
p, li { font-size: 1rem; color: var(--nc-dark); margin-bottom: 12px; }
strong { font-weight: bold; }

/* --- Containers, Wrappers & Spacing --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 0 0 0;
  max-width: 900px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nc-bg);
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(10,40,80,0.05);
}
@media (max-width: 900px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section { margin-bottom: 36px; padding: 22px 8px; }
}


/* ======= HEADER & NAVIGATION ======= */
header {
  background: var(--nc-light);
  box-shadow: 0 2px 16px 0 rgba(27,239,240,0.05);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.main-nav .logo img {
  height: 44px;
  width: auto;
  transition: transform .2s;
}
.main-nav .logo:hover img { transform: scale(1.08) rotate(-2deg); }
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 12px;
  transition: background .2s, color .2s;
  color: var(--nc-primary);
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--nc-accent);
  color: var(--nc-primary);
}
.cta.primary-btn, .cta.secondary-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 28px;
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  transition: box-shadow 0.2s, background 0.2s, color .2s;
  margin-left: 16px;
  box-shadow: 0 2px 12px 0 rgba(168,254,84, 0.14);
  cursor: pointer;
  outline: none;
  border: none;
  letter-spacing: 0.08em;
}
.cta.primary-btn {
  background: var(--nc-accent);
  color: var(--nc-primary);
  border: 2px solid var(--nc-accent);
  box-shadow: 0 3px 18px 0 rgba(27,239,240,0.11);
}
.cta.primary-btn:hover, .cta.primary-btn:focus {
  background: var(--nc-primary);
  color: var(--nc-accent);
  border-color: var(--nc-accent);
}
.cta.secondary-btn {
  background: var(--nc-secondary);
  color: var(--nc-primary);
  border: 2px solid var(--nc-secondary);
}
.cta.secondary-btn:hover, .cta.secondary-btn:focus {
  background: var(--nc-primary);
  color: var(--nc-secondary);
  border-color: var(--nc-secondary);
}

/* Mobile Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--nc-accent);
  color: var(--nc-primary);
  border-radius: 16px;
  font-size: 2rem;
  padding: 7px 16px 6px 14px;
  margin-left: 10px;
  transition: box-shadow 0.14s;
  z-index: 110;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(27,239,240,0.13);
  line-height: 1;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  box-shadow: 0 0 5px 0 var(--nc-accent);
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(13,35,61, .96);
  color: var(--nc-accent);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.3s;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--nc-secondary);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--nc-primary);
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  padding: 6px 14px 5px 14px;
  box-shadow: 0 2px 8px 0 rgba(168,254,84,0.11);
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--nc-accent);
  color: var(--nc-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 30px 36px 0 44px;
}
.mobile-nav a {
  color: var(--nc-accent);
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(168,254,84,.08);
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--nc-secondary);
  background: rgba(27,239,240, 0.05);
}
@media (max-width: 1020px) {
  .main-nav ul { display: none; }
  .cta.primary-btn { display:none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 600px) {
  .mobile-menu-close{margin:16px 10px 0 0;}
  .mobile-nav {padding:15px 10px 0 20px;}
  .mobile-nav a {font-size:1.06rem;}
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav ul { display:inline-flex !important;}
  .cta.primary-btn { display:inline-block !important; }
}


/* ===== HERO & MAJOR SECTIONS ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: var(--nc-primary);
  color: var(--nc-accent);
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 100px;
  box-shadow: 0 10px 45px 0 rgba(27,239,240,0.10);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero h1 {
  color: var(--nc-secondary);
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.hero p {
  color: var(--nc-accent);
  font-size: 1.08rem;
  margin-bottom: 18px;
  max-width: 700px;
}
@media (max-width: 600px) {
  .hero { border-radius: 0 0 38px 38px; min-height: 200px; }
  .hero h1{ font-size: 1.3rem; }
}


.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F5FFF6;
  border-radius: 32px;
}
.features h2 {
  color: var(--nc-primary);
}
.features ul {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  padding-left: 0;
}
.features ul li {
  background: var(--nc-light);
  color: var(--nc-dark);
  padding: 18px 22px 18px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 18px rgba(27,239,240,0.05);
  font-weight: 600;
  font-size: 1rem;
  border-left: 5px solid var(--nc-accent);
  margin-bottom: 0;
}
.features ul li img {
  height: 32px;
  width: 32px;
  margin-right: 3px;
  filter: drop-shadow(0 0 2px var(--nc-accent));
}
@media (max-width: 768px) {
  .features ul { flex-direction: column; gap: 14px; }
  .features ul li { min-width: unset; width: 100%; }
}

/* ===== SERVICES LAYOUT ===== */
.services { margin-bottom: 60px; padding: 40px 20px; }
.services h2, .services h3, .services h1{ color: var(--nc-primary); }
/* custom service grids/snippets on some pages */
.service-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.service-snippets > div {
  background: var(--nc-light);
  border-radius: 20px;
  padding: 24px 18px 22px 24px;
  box-shadow: 0 3px 16px 0 rgba(168,254,84,0.04);
  min-width: 220px;
  flex: 1 0 250px;
  border-left: 6px solid var(--nc-secondary);
  margin-bottom: 0;
  transition: box-shadow .18s, transform .18s;
}
.service-snippets > div:hover {
  box-shadow: 0 7px 34px 0 rgba(27,239,240,0.12);
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
}
.service-snippets h3 { color: var(--nc-secondary); font-family:'Orbitron',Montserrat,sans-serif; }
@media (max-width: 850px) {
  .service-snippets { flex-direction: column; gap: 16px; }
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-grid > div {
  background: var(--nc-light);
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 190px;
  padding: 22px 14px 18px 20px;
  box-shadow: 0 2px 16px rgba(27,239,240,0.04);
  margin-bottom: 0;
  border-left: 4px solid var(--nc-accent);
}
.service-grid h2 {color:var(--nc-secondary);font-size:1.25rem;}

@media (max-width: 800px) {
  .service-grid { flex-direction: column; gap: 16px; }
}


/* ===== CARDS & FLEX CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(27,239,240,.05);
  background: var(--nc-light);
  padding: 20px 18px;
  position: relative;
  transition: box-shadow .16s, transform .15s;
}
.card:hover {
  box-shadow: 0 10px 50px rgba(27,239,240,0.13);
  transform: scale(1.025) rotate(-0.7deg);
  z-index: 2;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {flex-direction:column;gap:18px;}
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(13,35,61,0.07);
}
.testimonials h2 {
  color: var(--nc-secondary);
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f8fefd;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(13,35,61,.05);
  border-left: 6px solid var(--nc-accent);
  transition: box-shadow .14s, transform .14s;
  color: #182c3b;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card:hover {
  box-shadow: 0 7px 38px 0 rgba(168,254,84,0.08);
  transform: scale(1.015) rotate(1deg);
}
.testimonial-card p {
  color: #0D233D;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-name {
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  color: var(--nc-secondary);
  font-size: .97rem;
  font-style: italic;
  margin-left: 8px;
}

/* ======== CTA BLOCK ======== */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nc-secondary);
  border-radius: 28px;
  padding: 40px 18px;
  margin-bottom: 60px;
  box-shadow: 0 0 20px 0 rgba(168,254,84,0.14), 0 3px 5px 0 rgba(13,35,61,0.02);
}
.cta h2 {
  color: var(--nc-primary);
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.cta .primary-btn {margin-left: 0;}

/* ======= LEGAL PAGE (cookie, dsgvo, nutzung, etc) / Thank you ======= */
.legal, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  background: #f7fffc;
  box-shadow: 0 1px 8px 0 rgba(27,239,240,0.045);
}
.text-section {
  padding: 8px 0;
}
.text-section ul {
  padding-left: 20px;
  margin-top: 16px;
}
.text-section ul li {
  position: relative;
  line-height: 1.6;
  margin-bottom: 7px;
  color: var(--nc-dark);
}
.text-section ul li::before {
  content:'\2022';
  color: var(--nc-accent);
  font-weight: bold;
  display: inline-block;
  margin-right: 12px;
  font-size: 1.09em;
}


/* ------- Table Styling (for Preise etc.) ------- */
table {
  width: 100%;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 rgba(13,35,61,.045);
  margin: 30px 0;
  overflow: hidden;
}
table th, table td {
  padding: 12px 10px;
  text-align: left;
  color: var(--nc-dark);
}
table th {
  background: var(--nc-accent);
  color: var(--nc-primary);
  font-family: 'Orbitron', 'Montserrat', Arial;
  font-size: 1rem;
}
table tr:nth-child(odd) {
  background: #f5f7fa;
}
table tr {
  border-bottom: 1px solid var(--nc-grey);
}

/* ------- Footer ------- */
footer {
  background: var(--nc-primary);
  color: var(--nc-accent);
  padding: 44px 0 18px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.footer-logo img { height: 55px; }
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .legal-nav a {
  color: var(--nc-accent);
  font-family: 'Orbitron', 'Montserrat', Arial;
  font-size: 1rem;
  padding: 2px 0;
  transition: color .13s;
}
.footer-nav a:hover, .legal-nav a:hover { color: var(--nc-secondary); text-decoration: underline; }
.legal-nav {
  margin-top: 8px;
  font-size: 0.97rem;
  gap: 0;
}
.contact-info {
  line-height: 1.2;
  font-size: .98rem;
}
.contact-info a { color: var(--nc-accent); text-decoration: underline; }
.contact-info a:hover { color: var(--nc-secondary); }
.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 8px 0;
}
.social-links img {
  width: 32px;
  height: 32px;
  opacity: .77;
  filter: drop-shadow(0 0 3px var(--nc-accent));
  transition: opacity .15s, transform .18s;
}
.social-links img:hover { opacity: 1; transform: scale(1.17); }

@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 26px; align-items: flex-start; }
}


/* -------- Feature Item Style (Custom) --------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 0 10px 0;
}

/* ------- Misc Buttons, Form Inputs ------ */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--nc-primary);
  background: #f7fff5;
  border: 1.5px solid var(--nc-accent);
  border-radius: 13px;
  padding: 11px 13px;
  margin-bottom: 18px;
  outline: none;
  box-shadow: 0 1px 4px 0 rgba(27,239,240,0.07);
  transition: border .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--nc-secondary);
  box-shadow: 0 0 0 2px rgba(168,254,84,.14);
}

/* ----------- Responsive ----------- */
@media (max-width: 700px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.21rem; }
  h3 { font-size: 1.09rem; }
  .footer-content { gap: 16px; }
  .section, .testimonials, .services, .features, .legal, .thankyou, .cta { padding: 16px 6px; }
}

/* --------- Animations & Micro-interactions -------- */
.cta, .card, .service-snippets > div, .service-grid > div, .testimonial-card {
  transition: box-shadow 0.24s, transform 0.19s;
}
a, button, .cta {
  transition: color .16s, background .15s, border .16s;
}

/* Prevent content overlapping and maintain spacing */
.card, .card-container, .service-snippets > div, .service-grid > div, .testimonial-card, .cta, .footer-content, .features ul li, .content-wrapper, .container, .section, .text-section, .footer-nav, .legal-nav, .social-links, .features ul, .content-grid {
  margin-bottom: 0;
}

/* ============ COOKIE CONSENT BANNER AND MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--nc-primary);
  color: var(--nc-accent);
  width:100%;
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  z-index: 2600;
  box-shadow: 0 -2px 12px rgba(13,35,61,0.10);
  padding: 18px 30px;
  font-size: 1rem;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  animation: fadeinbtt .7s cubic-bezier(0.35,1.4,0.5,1);
}
@keyframes fadeinbtt { from { opacity: 0; transform: translateY(80px);} to {opacity:1; transform: none;}}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  background: var(--nc-secondary);
  color: var(--nc-primary);
  border-radius: 15px;
  padding: 9px 20px;
  font-weight: 700;
  font-family:'Orbitron', 'Montserrat', Arial;
  border: none;
  transition: background .14s, color .13s, box-shadow .15s;
  box-shadow: 0 2px 7px 0 rgba(168,254,84,0.11);
}
.cookie-banner__actions button:hover, .cookie-banner__actions button:focus { background: var(--nc-accent); color: var(--nc-primary);}
.cookie-banner__actions .settings-btn { background: var(--nc-accent); color: var(--nc-primary);}
.cookie-banner__actions .settings-btn:hover, .cookie-banner__actions .settings-btn:focus { background: var(--nc-secondary); color: var(--nc-primary);}
@media (max-width:600px) {
  .cookie-banner {flex-direction:column;align-items:flex-start;padding:12px 8px;gap:12px 0px; font-size: 0.98rem;}
  .cookie-banner__actions { align-items: flex-end;}
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  z-index: 2700;
  left: 0; top:0;
  width: 100vw; height: 100vh;
  background: rgba(20,30,60,0.70);
  display: flex;
  align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.33s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__panel {
  background: var(--nc-light);
  color: var(--nc-primary);
  min-width: 300px; max-width: 97vw;
  padding: 34px 24px 24px 24px;
  border-radius: 40px;
  box-shadow: 0 8px 48px 0 rgba(27,239,240,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeinbtt2 .64s cubic-bezier(0.35,1.4,0.5,1);
}
@keyframes fadeinbtt2 { from{opacity:0;transform:translateY(110px);}to{opacity:1;transform:none;} }
.cookie-modal__close {
  position: absolute;
  right: 20px; top: 15px;
  background: var(--nc-accent);
  border-radius: 50%;
  color: var(--nc-primary);
  font-size: 1.7rem;
  line-height: 1;
  padding: 3px 12px;
  border: none;
  box-shadow: 0 2px 8px rgba(27,239,240,.10);
}
.cookie-modal__close:hover { background: var(--nc-secondary); }
.cookie-modal__title {
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--nc-accent);
  margin-bottom: 9px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 1.06rem;
}
.cookie-modal__category label {
  font-weight: 600;
}
.cookie-modal__category input[type='checkbox'] {
  accent-color: var(--nc-accent);
  width: 22px;
  height: 22px;
}
.cookie-modal__category--essential label {
  color: var(--nc-secondary);
  font-weight: bold;
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
}
.cookie-modal__footer {
  margin-top: 18px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal__footer button {
  background: var(--nc-secondary);
  color: var(--nc-primary);
  border-radius: 15px;
  font-weight: 700;
  font-family:'Orbitron', 'Montserrat', Arial;
  padding: 9px 18px;
  border: none;
  transition: background .14s, color .13s;
}
.cookie-modal__footer button:hover, .cookie-modal__footer button:focus { background: var(--nc-accent); color: var(--nc-primary);}

/* Hide banner/modal if not required */
.cookie-banner[hidden],.cookie-modal[hidden]{ display:none !important; }


/* ================== UNIQUE ARTISTIC ELEMENTS ================== */
/* Accent artistic shapes - apply to hero for decoration */
.hero:before, .hero:after {
  content: '';
  position: absolute;
  z-index: 1;
  border-radius: 60% 40% 45% 20% / 45% 65% 29% 60%;
  pointer-events: none;
}
.hero:before { top: -70px; left: -80px; width: 210px; height: 210px; background: var(--nc-accent); opacity: .12; }
.hero:after { bottom: -60px; right: -70px; width: 160px; height: 160px; background: var(--nc-secondary); opacity: .13; }

.features ul li:after {
  content: '';
  display: block;
  position: absolute;
  right: 10px; bottom: 10px;
  width: 35px; height: 18px;
  background: var(--nc-accent);
  opacity: 0.09;
  border-radius: 25% 90% 68% 45%;
  z-index: 1;
}
.features ul li { position: relative; }

/* Artistic underline for big headline */
h1, .headline-artistic {
  position: relative;
  z-index: 2;
}
h1.artistic, .headline-artistic {
  color: var(--nc-secondary);
}
h1.artistic:after, .headline-artistic:after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -8px;
  width: 60px;
  height: 9px;
  border-radius: 9px;
  background: var(--nc-accent);
  opacity: 0.18;
}

/* =================== SCROLLBAR BEAUTIFY =================== */
::-webkit-scrollbar { width: 8px; background: #d0fbe8; }
::-webkit-scrollbar-thumb { background: var(--nc-accent); border-radius: 4px; }

/* ========== VISUAL FOCUS STATES FOR ACCESSIBILITY ========== */
a:focus, button:focus, .cta.primary-btn:focus, .cta.secondary-btn:focus, .mobile-menu-close:focus, .cookie-banner__actions button:focus, .cookie-modal__footer button:focus {
  outline: 2.5px solid var(--nc-secondary);
  outline-offset: 1.5px;
  background: rgba(168,254,84,0.06);
}

/* Hide visually but accessible for screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ------- Utility: hide on mobile/desktop ------- */
.hide-mobile { display: none !important; }
@media (min-width: 1021px) { .hide-desktop { display: none !important; } }
@media (max-width: 1020px) { .hide-mobile { display: none !important; } }

/* ===================== END ==================== */
